/* ---------- Variáveis ---------- */
:root {
    --green-100: #A8D5BA;
    /* verde claro */
    --green-700: #2E5E4E;
    /* verde escuro */
    --amber-400: #d8e4ac;
    /* CTA */
    --bg: #f7fbf8;
    /* fundo suave */
    --text: #23302c;
    /* texto principal */
    --muted: #5f706a;
    /* texto secundário */
    --white: #fff;
    --shadow: 0 10px 30px rgba(10, 40, 30, .12);
    --radius: 18px;
}

/* ---------- Reset mínimo ---------- */
* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 14px
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    margin: 0 0 .6rem
}

h1 {
    font-size: clamp(2.8rem, 5vw, 3.5rem)
}

.h1_p {
    font-size: clamp(1.5rem, 3vw, 2.7rem)
}


h2 {
    font-size: clamp(2.5rem, 4vw, 2.5rem);
    margin: 0 auto 50px; /* centralizado */
    text-align: center;

}

h3 {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    text-align: center;
}

p {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    margin: .75rem 0;
}

.lead {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem)
}

.muted {
    color: var(--muted)
}

/* ---------- Layout utilitários ---------- */
.container {
    width: min(1120px, 92%);
    margin-inline: auto
}

.section {
    padding: clamp(3rem, 5vw, 5rem) 0
}

.section--soft {
    background: #f0f7f3
}

.grid-2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.1fr .9fr
}

.grid-2--reverse {
    grid-template-columns: .9fr 1.1fr
}

@media (max-width: 920px) {

    .grid-2,
    .grid-2--reverse {
        grid-template-columns: 1fr
    }
}

@media (max-width: 760px) {
    .container {
        width: 92%;
        margin: 0 auto;
    }

    .hero {
        padding: 4rem 0 2rem;
    
    }

    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__copy {
        margin: 0 auto;
    }

    .hero__pattern {
        inset: auto 0 0 0;
    }
}




/* ---------- Botões ---------- */
.btn {
    --pad-y: .9rem;
    --pad-x: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: var(--pad-y) var(--pad-x);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-1px)
}

.btn--cta {
    background: var(--amber-400);
    color: #1b1204;
    box-shadow: var(--shadow)
}

.btn--cta:hover {
    box-shadow: 0 18px 40px rgba(75, 74, 73, 0.35)
}

.btn--ghost {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-700)
}

.btn--ghost:hover {
    background: #e5efe9
}

.btn--xl {
    font-size: 1.1rem;
    padding: 1.1rem 1.6rem
}

.btn--sm {
    font-size: .9rem;
    padding: .55rem 1rem
}

/* ---------- Topbar ---------- */
.topbar {
    background: var(--green-700);
    color: #e9fff3;
    font-size: .95rem;
    width: 100%;
    position: fixed;
    z-index: 3;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem 0;

}

.topbar__txt {
    opacity: .9
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: linear-gradient(180deg, var(--green-100), #eaf6f0);
    padding: clamp(8rem, 10vw, 10rem) 0 clamp(3rem, 5vw, 5.5rem) 0;
    overflow: hidden;

}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/src/img/patas.png") center repeat;
  background-size: clamp(250px, 30vw, 400px);
  mix-blend-mode: multiply; /* 🔥 mescla com o gradiente */
  opacity: 0.9;             /* controla intensidade */
  z-index: 1;               /* abaixo do conteúdo */
}

.hero__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    justify-content: unset;
     z-index: 2;  
}

@media (max-width: 760px) {
    .hero{
         min-height: 70vh;
         gap: 0rem;
    }
    
    .hero__grid {
        grid-template-columns: 1fr
    }


    .benefit {
        margin: 20px;
    }

    .hero__copy {

         position: relative;
  z-index: 2;
    }

    .hero__figure{
        height: 300px;
        width: auto;
         position: relative;
  z-index: 2;
  margin-top: -20px;
  margin-bottom: -20px;
    }


}




.eyebrow {
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--green-700)
}

.hero h1 .accent {
    display: block;
    color: var(--green-700)
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: space-around;
    margin: 1.2rem 0 1.2rem;
    flex-wrap: wrap
}

.hero__badges {
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
    flex-wrap: wrap
}

.hero__badges li {
    background: var(--white);
    border: 1px solid #e5efe9;
    padding: .55rem .9rem;
    border-radius: 999px;
    box-shadow: var(--shadow)
}

.hero__figure {
    display: flex;
    position: relative;
    justify-content: center;

}


.hero__pattern {
    content: "";
    position: absolute;
    inset: auto -10% -40% -10%;
    height: 220px;
    background:
        radial-gradient(circle at 12px 12px, rgba(255, 255, 255, .8) 6px, transparent 7px) 0 0/56px 56px,
        radial-gradient(circle at 12px 12px, rgba(255, 255, 255, .55) 6px, transparent 7px) 28px 28px/56px 56px;
    opacity: .35;
    filter: blur(1px);
}

/* ---------- Cards de benefícios ---------- */

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;

}

@media (max-width: 920px) {
    .cards {
        grid-template-columns: 1fr;
        align-items: center;

    }
}

.card {
    background: var(--white);
    border: 1px solid #e6eee9;
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    width: 95%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.card__icon {
    font-size: 1.8rem
}

/* ---------- Sobre ---------- */
.sobre__figure img {
    height: 100%;
    object-fit: cover;
    margin: auto;
    
}

/* ---------- Lista com check ---------- */
.list-check {
    display: grid;
    gap: .6rem;
    margin: 1rem 0 1.4rem
}

.check {
    position: relative;
    padding-left: 1.9rem;
    font-weight: 600
}

.check::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-700);
    background: #e6f3ed;
    border-radius: 50%;
    width: 1.4rem;
    height: 1.4rem;
    display: grid;
    place-items: center;
    font-size: .9rem
}

.hint {
    color: var(--muted);
    margin-left: .6rem
}

/* ---------- Depoimentos ---------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.testimonial p {
    max-width: 90%;
    margin-top: 20px;
}


@media (max-width: 1020px) {
    .testimonials {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 720px) {
    .testimonials {
        grid-template-columns: 1fr
    }
}

.testimonial {
    background: var(--white);
    border: 1px solid #e6eee9;
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    isolation: isolate;
    max-width: 500px;
}

.testimonial::before {
    content: "“";
    position: absolute;
    font-family: serif;
    font-size: 10rem;
    color: #d9eae2;
    left: .6rem;
    top: -.6rem;
    z-index: -1
}

.testimonial footer {
    margin-top: .8rem;
    color: var(--muted);
    font-weight: 600
}

/* ---------- Seção contrastante  ---------- */
.section--contrast {
    background: var(--green-700);
    color: #eafff5;
}

.contrast__copy .highlight {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: .75rem 1rem;
    border-radius: 12px;
    margin-top: .6rem
}

/* ---------- Pílulas de regiões ---------- */
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    padding: 0;
    list-style: none;
    margin: 1rem 0 0
}

.pill-list li {
    background: var(--white);
    border: 1px solid #e6eee9;
    padding: .5rem .9rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
    color: #23302c;
}

.pill-list p {
    font-weight: 500;
}

/* ---------- CTA final ---------- */
.cta-final .btn--xl {
    margin-top: .6rem
}

/* ---------- Rodapé ---------- */
.footer {
    background: #0f221d;
    color: #cfe9de;
    padding: 1.2rem 0;
    margin-top: 2rem
}

.footer__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap
}

.footer__nav a {
    color: #cfe9de;
    text-decoration: none;
    margin-left: 1rem;
    border-bottom: 1px solid transparent
}

.footer__nav a:hover {
    border-color: #cfe9de
}

/* ---------- Acessibilidade / foco ---------- */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #1d8c6e;
    outline-offset: 2px
}