/* ===========================================================
   Dra. Laís Bandiera — Nutróloga Veterinária
   Landing Page Premium — versão enxuta
   =========================================================== */

/* ---------- Tokens ---------- */
:root {
    --color-cream: #faf7f2;
    --color-cream-2: #f3ece1;
    --color-beige: #e8dcc8;
    --color-gold: #c9a87c;
    --color-gold-2: #b4925f;
    --color-gold-soft: #e6d3b3;
    --color-green-deep: #2d4a3e;
    --color-green: #3a5a4a;
    --color-green-soft: #5a8f76;
    --color-dark: #1f1812;
    --color-text: #1f1812;
    --color-text-2: #5a5046;
    --color-line: #e1d6c4;
    --color-white: #ffffff;
    --color-wpp: #25d366;
    --color-wpp-dark: #128c7e;

    --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 4px 14px rgba(31, 24, 18, 0.05);
    --shadow-md: 0 12px 30px rgba(31, 24, 18, 0.08);
    --shadow-lg: 0 24px 60px rgba(31, 24, 18, 0.12);
    --shadow-gold: 0 14px 32px rgba(201, 168, 124, 0.32);

    --container: 1180px;
    --container-narrow: 780px;
    --header-max: 720px;
    --stack-max: 980px;

    --section-pad: clamp(56px, 8vw, 90px);
    --section-pad-mobile: 48px;
    --header-gap: 40px;
    --header-gap-mobile: 28px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

p { margin: 0; }
ul, ol { padding: 0; margin: 0; list-style: none; }

a {
    color: inherit;
    text-decoration: none;
    transition: color .25s var(--ease-out);
}

img, svg { display: block; max-width: 100%; }

button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--color-gold); color: var(--color-dark); }

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .25s var(--ease-out), color .25s var(--ease-out);
    white-space: nowrap;
    text-align: center;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform .7s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateX(100%); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn--lg { padding: 16px 30px; font-size: 15.5px; }
.btn--xl { padding: 19px 36px; font-size: 16.5px; }

.btn--primary {
    background: var(--color-wpp);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}
.btn--primary:hover {
    background: var(--color-wpp-dark);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.42);
}

.btn--gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-2) 100%);
    color: var(--color-dark);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 20px 44px rgba(201, 168, 124, 0.5); }

/* ---------- Badge / Eyebrow ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-line);
    color: var(--color-green-deep);
}
.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green-soft);
    box-shadow: 0 0 0 4px rgba(90, 143, 118, 0.18);
    animation: dot-pulse 2.4s ease-in-out infinite;
}

.hero__badge {
    font-size: clamp(13.5px, 1.35vw, 15px);
    padding: 10px 20px;
    gap: 11px;
    letter-spacing: 0.02em;
}

.hero__badge .badge__dot {
    width: 9px;
    height: 9px;
}
@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(90, 143, 118, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(90, 143, 118, 0.06); }
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-green-deep);
    margin-bottom: 16px;
}
.eyebrow--gold { color: var(--color-gold); }

/* ---------- Section title ---------- */
.section__title {
    font-size: clamp(1.65rem, 3.2vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.025em;
    text-wrap: balance;
}
.section__title .hl {
    background: linear-gradient(180deg, transparent 60%, rgba(201, 168, 124, 0.4) 60%);
    padding: 0 2px;
}
.section__title--light { color: var(--color-cream); }

.section__lead {
    font-size: 1rem;
    color: var(--color-text-2);
    line-height: 1.65;
    max-width: 640px;
}
.section__lead--light { color: rgba(250, 247, 242, 0.78); }

.section__header { margin-bottom: var(--header-gap); max-width: var(--header-max); }
.section__header--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section__header--center .section__lead { margin: 0 auto; max-width: 640px; }

/* ---------- Section base ---------- */
.section {
    padding: var(--section-pad) 0;
    position: relative;
    scroll-margin-top: 88px;
}
.section--cream { background: var(--color-cream-2); }
.section--dark {
    background: var(--color-green-deep);
    color: var(--color-cream);
}
.section--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(201, 168, 124, 0.1), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(90, 143, 118, 0.18), transparent 50%);
    pointer-events: none;
}
.section--dark > .container { position: relative; z-index: 1; }


/* ===========================================================
   HEADER
   =========================================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all .3s var(--ease-out);
    background: rgba(250, 247, 242, 0);
    border-bottom: 1px solid transparent;
}
.header.is-scrolled {
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--color-line);
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 24px;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    box-sizing: border-box;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 1;
    min-width: 0;
}
.logo__mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--color-green-deep), var(--color-green));
    color: var(--color-gold);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 16px rgba(45, 74, 62, 0.22);
}
.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}
.logo__text strong {
    font-family: var(--font-display);
    font-size: 0.96rem;
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.logo__text em {
    font-style: normal;
    font-size: 9.5px;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--color-text-2);
    margin-top: 3px;
    font-weight: 500;
    line-height: 1.35;
    max-width: 34em;
}
.logo--light .logo__text strong { color: var(--color-cream); }
.logo--light .logo__text em { color: rgba(250, 247, 242, 0.6); }

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 4px 0;
}
.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all .3s var(--ease-out);
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav a:hover { color: var(--color-green-deep); }
.nav a:hover::after { width: 100%; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all .3s var(--ease-out);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.header__cta {
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.header__cta-short { display: none; }

@media (max-width: 520px) {
    .header__cta-full { display: none; }
    .header__cta-short { display: inline; }
    .header__cta { padding: 10px 14px; font-size: 13px; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
    position: relative;
    padding: 110px 0 70px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-2) 100%);
    scroll-margin-top: 0;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 85% 20%, rgba(201, 168, 124, 0.2), transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(90, 143, 118, 0.12), transparent 60%);
    pointer-events: none;
}
.hero__bg::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.18), transparent 70%);
    filter: blur(60px);
    animation: float 18s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    min-width: 0;
}

.hero__title {
    margin: 18px 0 16px;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

.hero__title-question {
    display: block;
    font-size: clamp(1.85rem, 4vw, 3.15rem);
    font-weight: 800;
    line-height: 1.1;
    text-wrap: balance;
}

.hero__q-line {
    display: inline;
}

.hero__q-line + .hero__q-line::before {
    content: " ";
}

.hero__mark {
    font-style: normal;
    font-weight: 800;
    color: var(--color-green-deep);
    background: linear-gradient(180deg, transparent 62%, rgba(201, 168, 124, 0.42) 62%);
    padding: 0 2px;
    border-radius: 2px;
}

.hero__online {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text-2);
}

.hero__online strong {
    color: var(--color-green-deep);
    font-weight: 800;
}

.hero__mark--online {
    font-size: 0.92em;
    padding: 2px 6px;
}

.hero__promise {
    display: block;
    width: fit-content;
    max-width: min(100%, 620px);
    margin: 0 0 20px;
    padding: 16px 20px 16px 22px;
    font-family: var(--font-display);
    font-size: clamp(0.98rem, 1.55vw, 1.12rem);
    font-weight: 500;
    line-height: 1.58;
    color: var(--color-text-2);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--color-line);
    border-left: 4px solid var(--color-gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.hero__promise strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--color-green-deep);
    line-height: 1.35;
}

.hero__accent {
    font-weight: 800;
    color: var(--color-green-deep);
    background: linear-gradient(180deg, transparent 55%, rgba(90, 143, 118, 0.22) 55%);
    padding: 0 3px;
}

.hero__fade {
    color: var(--color-text-2);
    font-weight: 500;
}

.hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-text-2);
    max-width: 540px;
    margin-bottom: 28px;
}

.hero__subtitle strong {
    color: var(--color-green-deep);
    font-weight: 700;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.hero__cta {
    white-space: normal;
    text-align: center;
}

.hero__cta-note {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-green-deep);
    opacity: 0.85;
}

.hero__visual {
    position: relative;
    margin: 0;
}

.hero__figure {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-line);
    background: var(--color-white);
    transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}

.hero__figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(45, 74, 62, 0.14);
}

.hero__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    vertical-align: middle;
}

/* ===========================================================
   STRIP
   =========================================================== */
.strip {
    background: var(--color-white);
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    padding: 18px 0;
}
.strip__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
    flex-wrap: wrap;
    width: 100%;
}

@media (min-width: 900px) {
    .strip__items {
        justify-content: space-evenly;
        max-width: 960px;
        margin: 0 auto;
    }
}
.strip__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}
.strip__item svg { color: var(--color-green-soft); }

/* ===========================================================
   CASOS (seção dores — cards por sistema)
   =========================================================== */
.cases {
    text-align: left;
}

.cases__lead {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.cases__card {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 20px 20px 18px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.cases__card--wide {
    grid-column: 1 / -1;
}

.cases__card--wide .cases__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 16px;
}

.cases__card-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cases__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.08), rgba(90, 143, 118, 0.12));
    border: 1px solid rgba(45, 74, 62, 0.1);
    color: var(--color-green-deep);
}

.cases__card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-green-deep);
    margin: 0;
    line-height: 1.2;
}

.cases__items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cases__items li {
    position: relative;
    padding-left: 14px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--color-text-2);
}

.cases__items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-gold-2);
    transform: translateY(-50%);
}

/* ===========================================================
   SOLUÇÃO (seção verde)
   =========================================================== */
.solution .section__header {
    margin-bottom: 36px;
}

.solution__stack {
    width: 100%;
    max-width: var(--stack-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.solution .steps--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    align-items: stretch;
}

.solution .steps--4::before {
    display: none;
}

.solution .steps--4 .step {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 22px 20px;
}

.solution .steps--4 .step__num {
    margin-bottom: 14px;
}

.solution .steps--4 .step p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    text-align: left;
    color: rgba(250, 247, 242, 0.78);
}

.solution__conclusion {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201, 168, 124, 0.32);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    text-align: center;
    width: 100%;
}

.solution__conclusion p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 0.95rem;
    line-height: 1.68;
    color: rgba(250, 247, 242, 0.82);
}

.solution__conclusion strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-cream);
    line-height: 1.4;
}

.solution__actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

.solution__cta {
    width: 100%;
    max-width: 540px;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
}

/* ===========================================================
   COMPARATIVO
   =========================================================== */
#dores .section__header,
#comparativo .section__header,
#sobre .section__header {
    margin-bottom: var(--header-gap);
}

.compare__lead {
    max-width: 600px;
}

.compare__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    max-width: var(--stack-max);
    margin: 0 auto;
}

.compare__card {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.compare__card--basic {
    background: rgba(255, 255, 255, 0.72);
}

.compare__card--featured {
    border-color: rgba(45, 74, 62, 0.22);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(201, 168, 124, 0.12);
    position: relative;
}

.compare__card--featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-2) 100%);
}

.compare__head {
    padding: 24px 24px 18px;
    border-bottom: 1px solid var(--color-line);
}

.compare__card--featured .compare__head {
    padding-top: 28px;
    background: linear-gradient(180deg, rgba(201, 168, 124, 0.08) 0%, transparent 100%);
    border-bottom-color: rgba(201, 168, 124, 0.28);
}

.compare__label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.compare__label--muted {
    background: rgba(90, 80, 70, 0.08);
    color: var(--color-text-2);
}

.compare__label--gold {
    background: rgba(201, 168, 124, 0.18);
    color: var(--color-green-deep);
}

.compare__title {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.22rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.compare__card--basic .compare__title {
    color: var(--color-text-2);
}

.compare__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    flex: 1;
}

.compare__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 24px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--color-text);
    border-bottom: 1px solid rgba(225, 214, 196, 0.55);
}

.compare__item:last-child {
    border-bottom: none;
}

.compare__card--basic .compare__item {
    color: var(--color-text-2);
}

.compare__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    margin-top: 1px;
    border-radius: 50%;
}

.compare__icon--check {
    background: rgba(90, 143, 118, 0.14);
    color: var(--color-green-soft);
}

.compare__card--featured .compare__icon--check {
    background: rgba(45, 74, 62, 0.1);
    color: var(--color-green-deep);
}

.compare__icon--minus {
    background: rgba(90, 80, 70, 0.08);
    color: rgba(90, 80, 70, 0.55);
}

.compare__footer {
    margin-top: auto;
    padding: 18px 24px 22px;
    border-top: 1px solid var(--color-line);
}

.compare__footer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.58;
}

.compare__footer--basic {
    background: rgba(243, 236, 225, 0.45);
}

.compare__footer--basic p {
    color: var(--color-text-2);
    font-weight: 500;
    text-align: left;
}

.compare__footer--featured {
    background: linear-gradient(180deg, rgba(45, 74, 62, 0.04) 0%, rgba(201, 168, 124, 0.1) 100%);
    border-top-color: rgba(201, 168, 124, 0.32);
    border-left: 4px solid var(--color-gold);
}

.compare__footer--featured p {
    color: var(--color-green-deep);
    font-weight: 500;
    text-align: left;
}

.compare__footer--featured strong {
    font-weight: 700;
    color: var(--color-green-deep);
}

#consulta .section__header {
    margin-bottom: var(--header-gap);
}

#consulta .steps {
    max-width: var(--stack-max);
    margin: 0 auto;
    width: 100%;
    align-items: stretch;
}

#consulta .step {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#consulta .step p {
    flex: 1;
}

#avaliacoes .section__header {
    margin-bottom: 36px;
}

#faq .section__header {
    margin-bottom: var(--header-gap);
}

.steps--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ===========================================================
   SOBRE — Quem sou eu
   =========================================================== */
#sobre .section__header {
    margin-bottom: var(--header-gap);
}

#sobre .about__intro {
    color: var(--color-green-deep);
    font-weight: 600;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

#sobre .about-card {
    display: grid;
    grid-template-columns: clamp(300px, 38%, 400px) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-xl);
    padding: 28px 36px 28px 28px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    max-width: var(--stack-max);
    margin: 0 auto;
    width: 100%;
}

#sobre .about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green-deep), var(--color-green-soft), var(--color-gold));
}

#sobre .about-card__media {
    position: sticky;
    top: 96px;
    width: 100%;
    align-self: stretch;
    display: flex;
    min-height: 0;
    height: 100%;
}

#sobre .about__photo {
    position: relative;
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0;
    background: var(--color-beige);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-line);
}

#sobre .about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    display: block;
}

#sobre .about__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(31, 24, 18, 0.55) 100%);
    pointer-events: none;
}

#sobre .about__tag {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-cream);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    line-height: 1.35;
}

#sobre .about-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    align-self: stretch;
    padding: 6px 0;
}

#sobre .about__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

#sobre .about__bio {
    color: var(--color-text-2);
    font-size: 0.95rem;
    line-height: 1.72;
    margin: 0;
    text-align: left;
    text-wrap: pretty;
}

#sobre .about__bio--lead {
    color: var(--color-text);
    font-weight: 500;
    font-size: 1.02rem;
    line-height: 1.68;
    margin: 0 0 2px;
    padding: 12px 0 12px 18px;
    border-left: 3px solid var(--color-gold);
    text-align: left;
}

#sobre .about__bio:last-child {
    margin-bottom: 0;
}

@media (min-width: 1100px) {
    #sobre .about-card {
        grid-template-columns: clamp(340px, 42%, 440px) minmax(0, 1fr);
        gap: 36px;
        padding: 32px 40px 32px 32px;
    }
}

/* legado — mantido se reutilizar em outro bloco */
.about__note {
    padding: 20px 22px;
    margin: 4px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.06), rgba(90, 143, 118, 0.08));
    border: 1px solid rgba(45, 74, 62, 0.12);
    border-left: 4px solid var(--color-green-deep);
}

.about__note-label {
    display: inline-block;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-green-deep);
}

.about__note p {
    color: var(--color-text);
    font-size: 0.94rem;
    line-height: 1.65;
    margin: 0;
}

.about-card__footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--color-line);
}

.about__points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about__points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 14px;
    border-radius: var(--radius-md);
    background: var(--color-cream);
    border: 1px solid var(--color-line);
    color: var(--color-green-deep);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.45;
    min-height: 100%;
}

.about__points li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--color-green-soft);
    box-shadow: 0 0 0 3px rgba(90, 143, 118, 0.16);
    flex-shrink: 0;
}

.about__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
}

.about__highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    background: var(--color-cream);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    min-width: 0;
}

.about__highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-green-deep), var(--color-green-soft));
    color: var(--color-cream);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.about__highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.about__highlight-text strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.about__highlight-text em {
    font-style: normal;
    font-size: 0.78rem;
    color: var(--color-text-2);
    line-height: 1.2;
}

/* ===========================================================
   STEPS
   =========================================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 124, 0.35), rgba(201, 168, 124, 0.35), transparent);
    z-index: 0;
}
.step {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    position: relative;
    z-index: 1;
    transition: all .3s var(--ease-out);
}
.step:hover {
    background: rgba(201, 168, 124, 0.08);
    border-color: rgba(201, 168, 124, 0.32);
    transform: translateY(-3px);
}
.step__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-2));
    color: var(--color-dark);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(201, 168, 124, 0.32);
}
.step h3 {
    font-size: 1.05rem;
    color: var(--color-cream);
    margin-bottom: 6px;
    font-weight: 700;
    line-height: 1.3;
}
.step p {
    color: rgba(250, 247, 242, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ===========================================================
   AVALIAÇÕES GOOGLE (carrossel)
   =========================================================== */
.review-stars {
    display: inline-flex;
    gap: 3px;
    align-items: center;
}

.review-stars span {
    width: 14px;
    height: 14px;
    background: var(--color-gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-stars--lg span {
    width: 18px;
    height: 18px;
}

.reviews-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 520px;
    margin: 0 auto 32px;
    padding: 22px 28px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.reviews-highlight__score {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-green-deep);
}

.reviews-highlight__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.reviews-highlight__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--color-text-2);
}

.reviews-highlight__text strong {
    color: var(--color-green-deep);
    font-weight: 700;
}

.reviews-carousel {
    max-width: 760px;
    margin: 0 auto;
}

.reviews-carousel__viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.reviews-carousel__track {
    display: flex;
    transition: transform 0.45s var(--ease-out);
    will-change: transform;
}

.review-card {
    flex: 0 0 100%;
    min-width: 0;
    margin: 0;
    padding: 28px 28px 26px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
}

.review-card__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-line);
}

.review-card__author {
    font-family: var(--font-display);
    font-style: normal;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}

.review-card__text {
    margin: 0;
    padding: 0;
    border: none;
}

.review-card__text p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.68;
    color: var(--color-text-2);
}

.review-card__text p + p {
    margin-top: 14px;
}

.reviews-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.reviews-carousel__btn {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-green-deep);
    cursor: pointer;
    transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
    flex-shrink: 0;
}

.reviews-carousel__btn:hover {
    background: var(--color-green-deep);
    border-color: var(--color-green-deep);
    color: var(--color-cream);
}

.reviews-carousel__btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.reviews-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
}

.reviews-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(45, 74, 62, 0.22);
    cursor: pointer;
    transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.reviews-carousel__dot.is-active {
    background: var(--color-green-deep);
    transform: scale(1.2);
}

.reviews-carousel__dot:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq {
    display: grid;
    gap: 10px;
}
.faq__item {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all .25s var(--ease-out);
}
.faq__item[open] {
    border-color: var(--color-green-soft);
    box-shadow: var(--shadow-sm);
}
.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--color-text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary span:first-child { flex: 1; line-height: 1.45; }

.faq__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-beige);
    position: relative;
    flex-shrink: 0;
    transition: all .25s var(--ease-out);
}
.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    background: var(--color-green-deep);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .25s var(--ease-out);
}
.faq__icon::before { width: 11px; height: 2px; }
.faq__icon::after { width: 2px; height: 11px; }
.faq__item[open] .faq__icon { background: var(--color-green-deep); }
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: var(--color-gold); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__answer {
    padding: 2px 22px 20px;
    color: var(--color-text-2);
    font-size: 0.92rem;
    line-height: 1.65;
}

.faq__item p {
    padding: 0 22px 20px;
    color: var(--color-text-2);
    font-size: 0.92rem;
    line-height: 1.65;
}

.faq__answer p {
    padding: 0;
    margin: 0;
}

.faq__answer p + p {
    margin-top: 12px;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
    background: var(--color-dark);
    color: rgba(250, 247, 242, 0.65);
    padding: 44px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    width: 100%;
}
.footer .logo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: min(100%, 340px);
    width: 100%;
    text-align: center;
}
.footer .logo__mark {
    width: 46px;
    height: 46px;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
.footer .logo__text {
    align-items: center;
    text-align: center;
    width: 100%;
}
.footer .logo__text strong {
    font-size: 1.08rem;
    color: var(--color-cream);
    line-height: 1.25;
}
.footer .logo__text em {
    display: block !important;
    max-width: 100%;
    margin-top: 8px;
    font-size: 10.5px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: rgba(250, 247, 242, 0.58);
}

.footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 340px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(250, 247, 242, 0.78);
    letter-spacing: 0.01em;
}
.footer__links a:hover { color: var(--color-gold); }
.footer__sep {
    color: rgba(201, 168, 124, 0.45);
    font-weight: 700;
    user-select: none;
    line-height: 1;
}

.footer__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 340px;
    margin: 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(250, 247, 242, 0.42);
}

.footer__copy-line {
    display: block;
    width: 100%;
}

/* ===========================================================
   FLOATING WHATSAPP
   =========================================================== */
.floating-wpp {
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom, 0px) + 12px);
    right: max(20px, env(safe-area-inset-right, 0px) + 8px);
    z-index: 999;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    padding: 0;
    background: var(--color-wpp);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.floating-wpp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}
.floating-wpp svg {
    width: 28px;
    height: 28px;
}
.floating-wpp__pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
    pointer-events: none;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===========================================================
   REVEAL ANIMATIONS
   =========================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

/* ---------- Tablet & médios ---------- */
@media (max-width: 1024px) {
    .hero__inner { gap: 40px; }
    .nav { display: none; }

    #consulta .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .compare__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .compare__head {
        padding: 20px 18px 16px;
        text-align: center;
    }

    .compare__card--featured .compare__head {
        padding-top: 24px;
    }

    .compare__item {
        padding: 12px 18px;
        font-size: 0.88rem;
    }

    .compare__footer {
        padding: 16px 18px 18px;
    }

    .compare__footer--basic p,
    .compare__footer--featured p {
        font-size: 0.86rem;
        line-height: 1.6;
        text-align: center;
    }

    .cases__card--wide .cases__items {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .hero { padding: 92px 0 32px; }
    .hero__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "badge"
            "title"
            "visual"
            "promise"
            "subtitle"
            "actions";
        gap: 16px;
        align-items: stretch;
        width: 100%;
    }
    .hero__content { display: contents; }

    .hero__inner .hero__badge {
        grid-area: badge;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
        justify-self: center;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero__inner .hero__title {
        grid-area: title;
        width: 100%;
        margin: 0;
        text-align: center;
    }
    .hero__inner .hero__visual {
        grid-area: visual;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .hero__inner .hero__promise {
        grid-area: promise;
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: left;
        hyphens: none;
        text-wrap: pretty;
    }
    .hero__inner .hero__subtitle {
        grid-area: subtitle;
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: center;
        hyphens: none;
        text-wrap: pretty;
    }
    .hero__inner .hero__actions {
        grid-area: actions;
        width: 100%;
        max-width: 100%;
        margin: 0;
        align-items: stretch;
    }

    .hero__title-question {
        text-align: center;
    }

    .hero__figure {
        max-height: 380px;
        aspect-ratio: 5 / 4;
        margin: 0 auto;
    }

    .hero__figure img {
        object-position: center 30%;
    }

    .about-card {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        align-items: stretch;
        overflow: hidden;
        max-width: 100%;
        margin: 0;
    }

    #sobre .about-card {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        align-items: stretch;
    }

    #sobre .about-card__media {
        position: static;
        max-width: none;
        width: 100%;
        margin: 0;
        align-self: stretch;
        height: auto;
        display: block;
    }

    #sobre .about__photo {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 5 / 4;
        max-height: 360px;
        margin: 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--color-line);
    }

    #sobre .about__photo img {
        object-position: center 22%;
    }

    #sobre .about-card__body {
        padding: 24px 22px 26px;
        align-self: stretch;
        justify-content: flex-start;
    }

    #sobre .about__text {
        gap: 14px;
    }

    .about__points {
        grid-template-columns: 1fr;
    }

    .solution__stack {
        width: 100%;
        max-width: 100%;
    }
    .solution .steps--4 {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }
    .solution .steps--4 .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 18px;
        gap: 10px;
        min-height: 0;
        height: auto;
    }
    .solution .steps--4 .step__num {
        margin-bottom: 0;
    }
    .solution .steps--4 .step p {
        margin-top: 0;
        text-align: center;
        hyphens: none;
        text-wrap: pretty;
        line-height: 1.58;
        font-size: 0.88rem;
    }
    .solution__conclusion {
        padding: 22px 20px;
    }
    .solution__conclusion p {
        font-size: 0.9rem;
        line-height: 1.65;
        text-align: center;
    }
    .solution__conclusion strong {
        font-size: 0.96rem;
        margin-bottom: 8px;
    }
    .solution__cta {
        max-width: 100%;
        font-size: 14px;
        padding: 14px 18px;
    }

    #consulta .steps {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        max-width: 100%;
    }

    #consulta .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 20px;
        gap: 12px;
    }

    #consulta .step__num {
        margin-bottom: 0;
    }

    #consulta .step h3,
    #consulta .step p {
        text-align: center;
        hyphens: none;
        text-wrap: pretty;
    }

    .steps:not(.steps--4) { grid-template-columns: minmax(0, 1fr); }
    .steps--3 { grid-template-columns: minmax(0, 1fr); }
    .steps::before { display: none; }
}

/* ---------- Mobile (≤ 600px) ---------- */
@media (max-width: 600px) {
    .container { padding: 0 18px; }
    .header__inner {
        padding: 12px 18px;
        gap: 10px;
        max-width: 100%;
    }
    .header .logo {
        gap: 10px;
        flex: 1;
        min-width: 0;
    }
    .header .logo__mark {
        width: 38px;
        height: 38px;
        font-size: 0.88rem;
        flex-shrink: 0;
    }
    .header .logo__text {
        align-items: flex-start;
        text-align: left;
        min-width: 0;
    }
    .header .logo__text em {
        display: none !important;
    }
    .header .logo__text strong {
        font-size: 0.98rem;
        line-height: 1.2;
    }

    /* ---------- Hero mobile ---------- */
    .hero {
        padding: 84px 0 28px;
        overflow: hidden;
    }

    .hero__inner {
        gap: 18px;
    }

    .hero__inner .hero__badge {
        grid-area: badge;
        font-size: 13px;
        padding: 9px 18px;
        line-height: 1.4;
        width: fit-content;
        max-width: calc(100% - 4px);
        margin: 0 auto;
        justify-self: center;
        align-self: center;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__inner .hero__title {
        margin: 0;
    }

    .hero__title {
        margin: 0;
    }

    .hero__title-question {
        font-size: clamp(1.5rem, 7.2vw, 1.72rem);
        line-height: 1.2;
        letter-spacing: -0.03em;
    }

    .hero__mark {
        background: linear-gradient(180deg, transparent 68%, rgba(201, 168, 124, 0.38) 68%);
    }

    .hero__inner .hero__visual {
        margin: 0;
    }

    .hero__figure {
        width: 100%;
        max-width: 100%;
        max-height: 320px;
        aspect-ratio: 5 / 4;
        border-radius: 20px;
        box-shadow: 0 16px 40px rgba(31, 24, 18, 0.12);
    }

    .hero__figure img {
        object-position: center 28%;
    }

    .hero__inner .hero__actions {
        align-items: stretch;
        gap: 10px;
        padding: 6px 0 4px;
    }

    .hero__cta {
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        font-size: 15px;
    }

    .hero__cta-note {
        align-self: center;
        width: 100%;
        text-align: center;
        font-size: 0.78rem;
    }

    .hero__inner .hero__promise {
        margin: 0;
        padding: 16px 18px;
        font-size: 0.92rem;
        line-height: 1.6;
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid var(--color-line);
        border-left: 4px solid var(--color-gold);
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
        box-shadow: var(--shadow-sm);
        text-align: left;
        hyphens: none;
        text-wrap: pretty;
    }

    .hero__inner .hero__promise strong {
        margin-bottom: 8px;
        font-size: 0.98rem;
    }

    .hero__inner .hero__subtitle {
        margin: 0;
        font-size: 0.88rem;
        line-height: 1.62;
        text-align: center;
        hyphens: none;
        text-wrap: pretty;
        padding: 0;
    }

    .hero__q-line {
        display: block;
    }

    .hero__q-line + .hero__q-line::before {
        content: none;
    }

    /* ---------- Strip (mobile — clean) ---------- */
    .strip {
        padding: 18px 0;
    }

    .strip__items {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 16px;
        row-gap: 14px;
        width: 100%;
    }

    .strip__item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 0;
        margin: 0;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.3;
        color: var(--color-text-2);
        background: none;
        border: none;
        border-radius: 0;
        min-height: 0;
    }

    .strip__item svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
        padding: 0;
        background: none;
        border-radius: 0;
        color: var(--color-green-soft);
    }

    /* ---------- Sections: ritmo entre dobras ---------- */
    .section { padding: var(--section-pad-mobile) 0; }
    .section--dark { padding: var(--section-pad-mobile) 0; }
    .strip + .section { padding-top: 40px; }
    .section--dark + .section { padding-top: 44px; }
    .section + .section--dark { padding-bottom: 44px; }
    .section--cream + .section:not(.section--dark) { padding-top: 44px; }

    .section__header {
        margin-bottom: var(--header-gap-mobile);
        max-width: 100%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .section__header--center {
        text-align: center;
    }
    .section__header--center .section__lead {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        hyphens: none;
        text-wrap: pretty;
    }
    .section__title {
        font-size: 1.5rem;
        line-height: 1.22;
        text-align: center;
        margin-bottom: 12px;
    }
    .section__lead {
        font-size: 0.93rem;
        line-height: 1.62;
        text-align: center;
        hyphens: none;
        text-wrap: pretty;
    }
    .eyebrow {
        font-size: 11px;
        margin-bottom: 12px;
        letter-spacing: 0.14em;
    }

    /* ---------- Casos (cards por sistema) ---------- */
    .cases__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    .cases__card {
        padding: 18px 16px 16px;
        gap: 12px;
        border-radius: 16px;
    }
    .cases__card--wide {
        grid-column: auto;
    }
    .cases__icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }
    .cases__icon svg {
        width: 20px;
        height: 20px;
    }
    .cases__card-title {
        font-size: 1rem;
    }
    .cases__items {
        gap: 6px;
    }
    .cases__items li {
        font-size: 0.88rem;
        line-height: 1.48;
    }

    /* ---------- Solução (verde) ---------- */
    .solution .section__header { margin-bottom: 32px; }
    .solution__stack {
        gap: 12px;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .solution .steps--4 {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        width: 100%;
    }
    .solution .steps--4 .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 20px;
        gap: 12px;
        min-height: 0;
        height: auto;
    }
    .solution .steps--4 .step__num {
        margin-bottom: 0;
    }
    .solution .steps--4 .step p {
        margin-top: 0;
        text-align: center;
        hyphens: none;
        text-wrap: pretty;
        line-height: 1.58;
        font-size: 0.88rem;
    }
    .solution__conclusion {
        padding: 22px 20px;
        border-radius: 16px;
    }
    .solution__conclusion p {
        font-size: 0.88rem;
        line-height: 1.65;
        text-align: center;
    }
    .solution__conclusion strong {
        font-size: 0.94rem;
        margin-bottom: 8px;
    }
    .solution__cta {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.35;
        padding: 15px 18px;
    }

    /* ---------- Comparativo (mobile refinements) ---------- */
    #comparativo .section__header { margin-bottom: var(--header-gap-mobile); }

    .compare__title {
        font-size: 1.05rem;
    }

    /* ---------- Sobre — Quem sou eu (mobile) ---------- */
    #sobre .section__header {
        margin-bottom: var(--header-gap-mobile);
    }

    #sobre .about__intro {
        font-size: 0.93rem;
        line-height: 1.62;
        max-width: 100%;
    }

    #sobre .about-card {
        border-radius: 18px;
    }

    #sobre .about__photo {
        aspect-ratio: 5 / 4;
        max-height: 340px;
        border-radius: 0;
    }

    #sobre .about__photo img {
        object-position: center 20%;
    }

    #sobre .about__tag {
        font-size: 10px;
        letter-spacing: 0.07em;
        bottom: 12px;
        left: 14px;
        right: 14px;
    }

    #sobre .about-card__body {
        padding: 22px 18px 24px;
    }

    #sobre .about__text {
        gap: 13px;
        text-align: left;
        hyphens: none;
        text-wrap: pretty;
    }

    #sobre .about__bio {
        font-size: 0.92rem;
        line-height: 1.68;
    }

    #sobre .about__bio--lead {
        font-size: 0.94rem;
        line-height: 1.66;
        padding: 10px 0 10px 16px;
        margin-bottom: 2px;
    }

    /* ---------- Steps (consulta) ---------- */
    #consulta .section__header { margin-bottom: var(--header-gap-mobile); }
    .steps {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        width: 100%;
    }
    .steps--3 { grid-template-columns: minmax(0, 1fr); }
    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 22px 20px;
        gap: 12px;
        border-radius: 14px;
        min-height: 0;
        height: auto;
    }
    .step__num {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
        margin-bottom: 0;
        align-self: center;
    }
    .step h3 {
        font-size: 1rem;
        margin-bottom: 0;
        text-align: center;
        width: 100%;
    }
    .step p {
        font-size: 0.86rem;
        line-height: 1.55;
        text-align: center;
        hyphens: none;
        text-wrap: pretty;
        max-width: 100%;
    }
    /* ---------- Reviews carousel ---------- */
    #avaliacoes .section__header { margin-bottom: var(--header-gap-mobile); }

    .reviews-highlight {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 18px;
        margin-bottom: 24px;
    }
    .reviews-highlight__body {
        align-items: center;
        text-align: center;
    }
    .reviews-highlight__text {
        font-size: 0.9rem;
    }
    .review-card {
        padding: 22px 18px 20px;
    }
    .review-card__author {
        font-size: 0.96rem;
    }
    .review-card__text p {
        font-size: 0.88rem;
        line-height: 1.65;
    }
    .reviews-carousel__controls {
        gap: 12px;
        margin-top: 16px;
    }
    .reviews-carousel__btn {
        width: 40px;
        height: 40px;
    }

    /* ---------- FAQ ---------- */
    #faq .section__header { margin-bottom: var(--header-gap-mobile); }

    .faq { gap: 10px; }
    .faq__item { border-radius: 14px; }
    .faq__item summary {
        padding: 16px 18px;
        font-size: 0.92rem;
        gap: 12px;
        align-items: center;
        text-align: left;
    }
    .faq__item summary span:first-child {
        line-height: 1.45;
        text-align: left;
    }
    .faq__icon { width: 24px; height: 24px; margin-top: 0; flex-shrink: 0; }
    .faq__icon::before { width: 10px; }
    .faq__icon::after { height: 10px; }
    .faq__item p,
    .faq__answer {
        padding: 0 18px 18px;
        font-size: 0.87rem;
        line-height: 1.65;
        text-align: left;
        hyphens: none;
        text-wrap: pretty;
    }
    .faq__answer p {
        text-align: left;
        hyphens: none;
        text-wrap: pretty;
    }
    .faq__answer p + p {
        margin-top: 12px;
    }

    .footer {
        padding: 38px 0 calc(28px + env(safe-area-inset-bottom, 0px));
    }
    .footer__inner {
        gap: 22px;
        padding: 0 8px;
    }
    .footer .logo {
        max-width: min(100%, 300px);
        gap: 12px;
    }
    .footer .logo__mark {
        width: 42px;
        height: 42px;
        font-size: 0.92rem;
    }
    .footer .logo__text strong { font-size: 1rem; }
    .footer .logo__text em {
        font-size: 9.5px;
        line-height: 1.48;
        max-width: 280px;
        margin-top: 7px;
    }
    .footer__links {
        max-width: 300px;
        padding-top: 18px;
        gap: 12px;
    }
    .footer__links a { font-size: 0.9rem; }
    .footer__copy {
        max-width: 300px;
        padding-top: 16px;
        font-size: 0.74rem;
    }

    .floating-wpp {
        bottom: max(16px, env(safe-area-inset-bottom, 0px) + 10px);
        right: max(16px, env(safe-area-inset-right, 0px) + 6px);
        width: 52px;
        height: 52px;
    }
    .floating-wpp svg { width: 26px; height: 26px; }

    /* ---------- Botões ---------- */
    .btn { font-size: 14px; }
    .btn--lg { padding: 14px 22px; font-size: 14.5px; }
    .btn--xl { padding: 16px 24px; font-size: 15px; }
    .btn--sm { padding: 9px 14px; font-size: 12.5px; }

    /* Evita overflow horizontal */
    .hero__inner,
    .solution__stack,
    .compare__grid,
    .about-card,
    .container--narrow,
    .faq,
    .reviews-carousel {
        min-width: 0;
        max-width: 100%;
    }
}

/* ---------- Mobile pequeno (≤ 400px) ---------- */
@media (max-width: 400px) {
    .container { padding: 0 16px; }
    .header__inner { padding: 11px 14px; gap: 8px; }
    .header .logo__mark { width: 36px; height: 36px; font-size: 0.84rem; }
    .header .logo__text strong { font-size: 0.92rem; }

    .hero { padding: 80px 0 24px; }
    .hero__inner { gap: 16px; }
    .hero__title-question { font-size: 1.38rem; }
    .hero__figure { max-height: 280px; aspect-ratio: 5 / 4; border-radius: 18px; }
    .hero__promise { font-size: 0.88rem; padding: 14px 16px; }
    .hero__subtitle { font-size: 0.84rem; }
    .badge { font-size: 12px; padding: 8px 15px; }

    .strip__items { column-gap: 16px; row-gap: 10px; }
    .strip__item { font-size: 11.5px; gap: 6px; }

    .section__title { font-size: 1.35rem; }
    .section__lead { font-size: 0.9rem; }

    .step {
        padding: 20px 16px;
        gap: 10px;
    }
    .step__num { width: 40px; height: 40px; }

    .about__highlights { grid-template-columns: 1fr; }

    .floating-wpp { width: 50px; height: 50px; bottom: max(14px, env(safe-area-inset-bottom, 0px) + 8px); right: max(14px, env(safe-area-inset-right, 0px) + 6px); }
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
