/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --accent:        #FF4D00;
    --fg:            #1d1d1f;
    --fg-2:          #6e6e73;
    --ease:          cubic-bezier(.22, 1, .36, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    background: #f8f8f8;
    color: var(--fg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}


/* ── BACKGROUND ORBS ── */
.bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

/* Laranja principal — canto superior direito */
.bg__orb--1 {
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, rgba(255,160,90,0.22), rgba(232,84,30,0.10), transparent 68%);
    top: -260px;
    right: -160px;
    animation: orbFloat 13s var(--ease) infinite;
}

/* Pêssego quente — canto inferior esquerdo */
.bg__orb--2 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(255,210,170,0.14), rgba(240,160,80,0.06), transparent 68%);
    bottom: 10vh;
    left: -120px;
    animation: orbFloat 17s var(--ease) infinite reverse;
}

/* Creme off-white — centro inferior */
.bg__orb--3 {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(255,235,210,0.16), rgba(245,200,150,0.05), transparent 68%);
    bottom: -60px;
    right: 20%;
    animation: orbFloat 21s var(--ease) infinite 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(22px, -22px) scale(1.04); }
    66%       { transform: translate(-16px, 16px) scale(0.97); }
}

/* ── NAVBAR ── */
.nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-16px);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 44px;
    padding: 12px 22px;

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(32px) saturate(200%) brightness(106%);
    -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(106%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-top-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow:
        inset 0 1.5px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03),
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 16px 40px rgba(0, 0, 0, 0.04);

    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.nav--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav__logo-img {
    height: 22px;
    width: auto;
    display: block;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 450;
    color: var(--fg-2);
    text-decoration: none;
    transition: color .2s;
}

.nav__links a:hover { color: var(--fg); }

.nav__cta {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--fg);
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 11px;
    background: rgba(0, 0, 0, 0.055);
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: background .2s, transform .2s;
}

.nav__cta:hover {
    background: rgba(0, 0, 0, 0.09);
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.hero__body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 60px 60px;
    width: 100%;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ── HERO FORM PANEL ── */
.hero__form-panel {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(32px) saturate(180%) brightness(105%);
    -webkit-backdrop-filter: blur(32px) saturate(180%) brightness(105%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-top-color: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 32px;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 24px 64px rgba(0, 0, 0, 0.07);
    opacity: 0;
    animation: fadeUp .7s var(--ease) 0.55s forwards;
}

.hero__form-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--fg);
    margin-bottom: 20px;
}

/* Light-theme overrides for hero form inputs */
.hero__form-panel .contact__field label {
    color: var(--fg-2);
}

.hero__form-panel .contact__field input,
.hero__form-panel .contact__field select,
.hero__form-panel .contact__field textarea {
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(0, 0, 0, 0.09);
    color: var(--fg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero__form-panel .contact__field input::placeholder,
.hero__form-panel .contact__field textarea::placeholder {
    color: rgba(0, 0, 0, 0.28);
}

.hero__form-panel .contact__field select option {
    background: #ffffff;
    color: var(--fg);
}

.hero__form-panel .contact__field input:focus,
.hero__form-panel .contact__field select:focus,
.hero__form-panel .contact__field textarea:focus {
    border-color: rgba(0, 220, 255, 0.55);
    background: rgba(255, 255, 255, 0.92);
}

.hero__form-panel .contact__submit {
    width: 100%;
    justify-content: center;
    border-radius: 50px;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.40) 100%
    );
    backdrop-filter: blur(24px) saturate(200%) brightness(110%);
    -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(110%);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-top-color: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 1px 2px rgba(0, 0, 0, 0.09),
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.78);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.hero__form-panel .contact__submit:hover {
    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.40) 100%
    );
    transform: translateY(-2px) scale(1.015);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 2px 4px rgba(0, 0, 0, 0.09),
        0 8px 20px rgba(0, 0, 0, 0.10),
        0 24px 48px rgba(0, 0, 0, 0.08);
}

/* Badge */
.hero__badge,
#heroTitle,
.hero__sub,
.hero__btn,
.hero__marquee,
.content__title,
.content__body,
.content__divider,
.content__cta {
    will-change: filter;
    transition: filter 0.4s var(--ease);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.775rem;
    color: var(--fg-2);
    margin-bottom: 36px;
    letter-spacing: -0.01em;

    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-top-color: rgba(255, 255, 255, 0.98);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 2px 10px rgba(0, 0, 0, 0.05);

    opacity: 0;
    animation: fadeUp .7s var(--ease) .35s forwards;
}

.stars { color: var(--accent); letter-spacing: -1px; }

/* Title */
.hero__title {
    font-size: clamp(2rem, 4vw, 4.8rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.046em;
    color: var(--fg);
    margin-bottom: 24px;
}

.hero__title em { font-style: normal; color: var(--accent); }

.hero__title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
    filter: blur(10px);
    transition:
        opacity .65s var(--ease),
        transform .65s var(--ease),
        filter .65s var(--ease);
}

.hero__title .word.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.hero__title em.word { display: inline; }

.content__title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
    filter: blur(10px);
    transition:
        opacity .65s var(--ease),
        transform .65s var(--ease),
        filter .65s var(--ease);
}
.content__title .word.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.content-anim {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(10px);
    transition:
        opacity .65s var(--ease),
        transform .65s var(--ease),
        filter .65s var(--ease);
}
.content-anim--visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Sub */
.hero__sub {
    max-width: 440px;
    font-size: .9rem;
    line-height: 1.78;
    color: var(--fg-2);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp .7s var(--ease) .85s forwards;
}

/* ── LIQUID GLASS BUTTON ── */
.hero__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.78);
    overflow: hidden;
    isolation: isolate;

    background: linear-gradient(
        155deg,
        rgba(0, 220, 255, 0.72) 0%,
        rgba(0, 220, 255, 0.48) 50%,
        rgba(0, 220, 255, 0.60) 100%
    );
    backdrop-filter: blur(24px) saturate(200%) brightness(110%);
    -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(110%);

    border: 1px solid rgba(255, 255, 255, 0.60);
    border-top-color: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(0, 220, 255, 0.40);

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 1px 2px rgba(0, 0, 0, 0.09),
        0 4px 12px rgba(0, 220, 255, 0.20),
        0 16px 32px rgba(0, 220, 255, 0.15),
        0 32px 64px rgba(0, 0, 0, 0.03);

    opacity: 0;
    animation: fadeUp .7s var(--ease) 1.05s forwards;
    transition:
        transform .35s var(--ease),
        box-shadow .35s var(--ease);
}

.hero__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 56%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(255, 255, 255, 0.22) 45%,
        rgba(255, 255, 255, 0.00) 100%
    );
    border-radius: 50px 50px 60% 60% / 50px 50px 44px 44px;
    pointer-events: none;
    z-index: 1;
}

.hero__btn::after {
    content: '';
    position: absolute;
    inset: 2.5px;
    border-radius: 46px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    pointer-events: none;
    z-index: 1;
}

.hero__btn > * { position: relative; z-index: 2; }

.hero__btn:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 2px 4px rgba(0, 0, 0, 0.09),
        0 8px 20px rgba(0, 220, 255, 0.28),
        0 24px 48px rgba(0, 220, 255, 0.20),
        0 48px 80px rgba(0, 0, 0, 0.04);
}

.hero__btn svg { transition: transform .22s; }
.hero__btn:hover svg { transform: translateX(4px); }

/* ── MARQUEE ── */
.hero__marquee {
    width: 100%;
    height: 260px;
    flex-shrink: 0;
    overflow: hidden;
    -webkit-mask-image:
        linear-gradient(to right,  transparent 0%, black 10%, black 90%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    mask-image:
        linear-gradient(to right,  transparent 0%, black 10%, black 90%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    pointer-events: none;
    z-index: 1;
}

.hero__track {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    width: max-content;
    animation: scroll 38s linear infinite;
    will-change: transform;
}

.img-wrap {
    flex-shrink: 0;
    width: 148px;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transition: transform .6s var(--ease), box-shadow .6s var(--ease);
    position: relative;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (hover: hover) {
    .hero__marquee { pointer-events: auto; }

    .img-wrap:hover {
        transform: scale(1.10) !important;
        box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
        z-index: 10;
    }
}

/* ── CONTENT SECTION ── */
.content {
    position: relative;
    z-index: 1;
    padding: 120px 24px 160px;
}

.content__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.content__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content__title {
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.035em;
    color: var(--fg);
}

.content__body {
    font-size: 1.05rem;
    line-height: 1.80;
    color: var(--fg-2);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.content__body--em {
    color: var(--fg);
    font-weight: 500;
}

.content__divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    margin: 0;
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-hidden {
    opacity: 0;
    transform: translateY(10px);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Anchor CTA button — liquid glass */
.content__cta {
    align-self: flex-start;
    margin-top: 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.78);
    overflow: hidden;
    isolation: isolate;

    background: linear-gradient(
        155deg,
        rgba(0, 220, 255, 0.72) 0%,
        rgba(0, 220, 255, 0.48) 50%,
        rgba(0, 220, 255, 0.60) 100%
    );
    backdrop-filter: blur(24px) saturate(200%) brightness(110%);
    -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(110%);

    border: 1px solid rgba(255, 255, 255, 0.60);
    border-top-color: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(0, 220, 255, 0.40);

    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 220, 255, 0.20),
        0 16px 32px rgba(0, 220, 255, 0.15);

    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow .35s var(--ease);
}

.content__cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 56%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(255, 255, 255, 0.00) 100%
    );
    border-radius: 50px 50px 60% 60% / 50px 50px 44px 44px;
    pointer-events: none;
    z-index: 1;
}

.content__cta::after {
    content: '';
    position: absolute;
    inset: 2.5px;
    border-radius: 46px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    pointer-events: none;
    z-index: 1;
}

.content__cta > * { position: relative; z-index: 2; }

.content__cta:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 220, 255, 0.28),
        0 20px 48px rgba(0, 220, 255, 0.20);
}

.content__cta svg { transition: transform .22s; }
.content__cta:hover svg { transform: translateX(4px); }


/* Mobile content */
@media (max-width: 768px) {
    .content {
        padding: 80px 24px 100px;
    }

    .content__inner {
        gap: 56px;
    }

    .content__title {
        font-size: 1.6rem;
    }

    .content__body {
        font-size: .95rem;
    }

    .content__cta {
        align-self: stretch;
        justify-content: center;
    }
}

/* ── PROCESS SECTION (dark overlay) ── */
.process {
    position: relative;
    z-index: 3;
    background: #0f0f0f;
    color: #f0ede8;
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
    padding: 110px 48px 120px;

    clip-path: inset(60px 0 0 0 round 28px 28px 0 0);
    transform: translateY(48px);
    opacity: 0;
    transition:
        clip-path  1.2s var(--ease),
        transform  1.2s var(--ease),
        opacity    0.9s ease;
}

.process.is-visible {
    clip-path: inset(0 0 0 0 round 0);
    transform: translateY(0);
    opacity: 1;
}

.process__inner {
    max-width: 1160px;
    margin: 0 auto;
}

/* Header: title left, two paragraphs right */
.process__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-bottom: 88px;
    align-items: start;
}

.process__title {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: #f0ede8;
}

.process__subs {
    display: flex;
    flex-direction: column;
    gap: 22px;
    color: rgba(240, 237, 232, 0.55);
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: -0.01em;
    padding-top: 6px;
}

/* 4-column grid */
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.process__col {
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-top-color: rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 28px 26px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: border-color .3s ease, background .3s ease;
}

.process__col:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(145deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.05) 100%);
}

/* Step number */
.process__col::before {
    content: attr(data-step);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.process__col h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-transform: none;
    color: rgba(240, 237, 232, 0.95);
    line-height: 1.35;
    margin-bottom: 14px;
}

.process__col p {
    font-size: .88rem;
    color: rgba(240, 237, 232, 0.50);
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.process__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .88rem;
    color: rgba(240, 237, 232, 0.50);
    line-height: 1.55;
    margin-top: 12px;
}

.process__col ul li {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.process__col ul li::before {
    content: '·';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* Mobile */
@media (max-width: 900px) {
    .process {
        padding: 80px 28px 96px;
    }

    .process__header {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .process__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {
    .process__grid {
        grid-template-columns: 1fr;
    }
}

/* ── QUALIFY SECTION ── */
.qualify {
    position: relative;
    z-index: 1;
    background: #f9f9f9;
    content-visibility: auto;
    contain-intrinsic-size: 0 700px;
    padding: 140px 24px 160px;
}

.qualify__inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 72px;
}

/* Header */
.qualify__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.qualify__title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.10;
    letter-spacing: -0.04em;
    color: var(--fg);
}

.qualify__sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--fg-2);
    max-width: 580px;
    letter-spacing: -0.01em;
}

/* Groups */
.qualify__group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qualify__label {
    font-size: .85rem;
    color: var(--fg-2);
    letter-spacing: -0.01em;
    text-align: center;
}

.qualify__label--bad {
    color: #c0392b;
}

.qualify__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Cards iniciam invisíveis (reveal via JS) */
.qualify__card {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s var(--ease),
        transform 0.6s var(--ease),
        box-shadow .3s var(--ease),
        border-color .3s ease;
}

.qualify__card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base card */
.qualify__card {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 22px 20px;
    border-radius: 16px;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: var(--fg);
    border: 1px solid transparent;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.qualify__card:hover {
    transform: translateY(-2px);
}

/* Good cards — liquid glass */
.qualify__card--good {
    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.62) 0%,
        rgba(255, 255, 255, 0.32) 50%,
        rgba(255, 255, 255, 0.48) 100%
    );
    backdrop-filter: blur(28px) saturate(200%) brightness(112%);
    -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(112%);
    border-color: rgba(255, 255, 255, 0.70);
    border-top-color: rgba(255, 255, 255, 1);
    border-bottom-color: rgba(255, 255, 255, 0.30);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.20),
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 8px 24px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.qualify__card--good::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 52%;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.55) 0%,
        rgba(255,255,255,0.00) 100%
    );
    border-radius: 16px 16px 60% 60% / 16px 16px 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.qualify__card--good:hover {
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px rgba(0, 0, 0, 0.07),
        0 16px 40px rgba(0, 0, 0, 0.10);
}

/* Bad cards — liquid glass with red tint */
.qualify__card--bad {
    background: linear-gradient(
        155deg,
        rgba(255, 235, 235, 0.70) 0%,
        rgba(255, 220, 220, 0.38) 50%,
        rgba(255, 228, 228, 0.55) 100%
    );
    backdrop-filter: blur(28px) saturate(180%) brightness(108%);
    -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(108%);
    border-color: rgba(220, 53, 69, 0.18);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.90),
        inset 0 -1px 0 rgba(220, 53, 69, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18),
        0 2px 4px rgba(220, 53, 69, 0.06),
        0 8px 24px rgba(220, 53, 69, 0.08);
    color: #1d1d1f;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.qualify__card--bad::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 52%;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.50) 0%,
        rgba(255,255,255,0.00) 100%
    );
    border-radius: 16px 16px 60% 60% / 16px 16px 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.qualify__card--bad:hover {
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.90),
        inset 0 -1px 0 rgba(220, 53, 69, 0.06),
        0 4px 8px rgba(220, 53, 69, 0.08),
        0 16px 40px rgba(220, 53, 69, 0.12);
}

/* Conteúdo acima do glare */
.qualify__card > * { position: relative; z-index: 1; }

/* Icons */
.qualify__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
}

.qualify__icon--good {
    background: rgba(42, 154, 82, 0.12);
    color: #2a9a52;
}

.qualify__icon--bad {
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
}

/* Footer */
.qualify__footer {
    display: flex;
    justify-content: center;
}

/* CTA — liquid glass */
.qualify__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.78);
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(155deg, rgba(0,220,255,0.72) 0%, rgba(0,220,255,0.48) 50%, rgba(0,220,255,0.60) 100%);
    backdrop-filter: blur(24px) saturate(200%) brightness(110%);
    -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(110%);
    border: 1px solid rgba(255,255,255,0.60);
    border-top-color: rgba(255,255,255,0.98);
    border-bottom-color: rgba(0,220,255,0.40);
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(0,0,0,0.06),
        0 1px 2px rgba(0,0,0,0.08),
        0 4px 12px rgba(0,220,255,0.20),
        0 16px 32px rgba(0,220,255,0.15);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.qualify__cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 56%;
    background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.00) 100%);
    border-radius: 50px 50px 60% 60% / 50px 50px 44px 44px;
    pointer-events: none;
    z-index: 1;
}

.qualify__cta::after {
    content: '';
    position: absolute;
    inset: 2.5px;
    border-radius: 46px;
    border: 1px solid rgba(255,255,255,0.45);
    pointer-events: none;
    z-index: 1;
}

.qualify__cta > * { position: relative; z-index: 2; }

.qualify__cta:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(0,0,0,0.06),
        0 4px 16px rgba(0,220,255,0.28),
        0 20px 48px rgba(0,220,255,0.20);
}

.qualify__cta svg { transition: transform .22s; }
.qualify__cta:hover svg { transform: translateX(4px); }

/* Reveal animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
    .qualify {
        padding: 100px 20px 120px;
    }

    .qualify__inner {
        gap: 52px;
    }

    .qualify__cards {
        grid-template-columns: 1fr;
    }
}

/* ── ABOUT / RESULTS SECTION ── */
.about {
    position: relative;
    z-index: 1;
    background: #f9f9f9;
    padding: 140px 24px 160px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    content-visibility: auto;
    contain-intrinsic-size: 0 700px;
}

.about__inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

/* Header */
.about__header {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.about__title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.10;
    letter-spacing: -0.04em;
    color: var(--fg);
    text-align: center;
}

.about__body {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.about__body p {
    font-size: 1rem;
    line-height: 1.80;
    color: var(--fg-2);
    letter-spacing: -0.01em;
}

.about__mark {
    background: none;
    color: #c87533;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: rgba(200, 117, 51, 0.35);
    text-underline-offset: 3px;
}

/* Cases */
.about__cases {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about__case {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-radius: 18px;
    overflow: hidden;

    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(255, 255, 255, 0.30) 50%,
        rgba(255, 255, 255, 0.48) 100%
    );
    backdrop-filter: blur(28px) saturate(200%) brightness(112%);
    -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(112%);
    border: 1px solid rgba(255, 255, 255, 0.70);
    border-top-color: rgba(255, 255, 255, 1);
    border-bottom-color: rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04),
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 28px rgba(0, 0, 0, 0.07);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.about__case:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04),
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 16px 48px rgba(0, 0, 0, 0.10);
}

.about__case-label {
    padding: 28px 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.about__case-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.about__case-label p {
    font-size: .88rem;
    line-height: 1.45;
    color: var(--fg-2);
    letter-spacing: -0.01em;
}

.about__case-results {
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.about__result {
    font-size: .92rem;
    color: var(--fg);
    letter-spacing: -0.015em;
    line-height: 1.4;
}

.about__result--em {
    font-weight: 700;
}

/* Footer */
.about__footer {
    display: flex;
    justify-content: center;
}

/* CTA — reusa o mesmo padrão liquid glass */
.about__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.78);
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(155deg, rgba(0,220,255,0.72) 0%, rgba(0,220,255,0.48) 50%, rgba(0,220,255,0.60) 100%);
    backdrop-filter: blur(24px) saturate(200%) brightness(110%);
    -webkit-backdrop-filter: blur(24px) saturate(200%) brightness(110%);
    border: 1px solid rgba(255,255,255,0.60);
    border-top-color: rgba(255,255,255,0.98);
    border-bottom-color: rgba(0,220,255,0.40);
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(0,0,0,0.06),
        0 1px 2px rgba(0,0,0,0.08),
        0 4px 12px rgba(0,220,255,0.20),
        0 16px 32px rgba(0,220,255,0.15);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.about__cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 56%;
    background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.00) 100%);
    border-radius: 50px 50px 60% 60% / 50px 50px 44px 44px;
    pointer-events: none;
    z-index: 1;
}

.about__cta::after {
    content: '';
    position: absolute;
    inset: 2.5px;
    border-radius: 46px;
    border: 1px solid rgba(255,255,255,0.45);
    pointer-events: none;
    z-index: 1;
}

.about__cta > * { position: relative; z-index: 2; }

.about__cta:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(0,0,0,0.06),
        0 4px 16px rgba(0,220,255,0.28),
        0 20px 48px rgba(0,220,255,0.20);
}

.about__cta svg { transition: transform .22s; }
.about__cta:hover svg { transform: translateX(4px); }

/* Mobile */
@media (max-width: 768px) {
    .about {
        padding: 100px 20px 120px;
    }

    .about__inner {
        gap: 52px;
    }

    .about__case {
        grid-template-columns: 1fr;
    }

    .about__case-label {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        padding: 22px 22px 18px;
    }

    .about__case-results {
        padding: 18px 22px 22px;
    }
}

/* ── REVIEWS SECTION ── */
.reviews {
    position: relative;
    z-index: 1;
    background: #f9f9f9;
    padding: 120px 0 100px;
}

.reviews__header {
    text-align: center;
    margin-bottom: 64px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.reviews__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.10;
    color: var(--fg);
}

.reviews__stars {
    font-size: .9rem;
    color: var(--fg-2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviews__stars::before {
    content: '';
}

.reviews__stars {
    font-size: .88rem;
    letter-spacing: -0.01em;
}

/* Marquee */
.reviews__marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews__track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding-block: 40px;
    animation: scroll 55s linear infinite;
    will-change: transform;
}

.reviews__track:hover { animation-play-state: paused; }

/* Review card */
.review-card {
    width: 320px;
    flex-shrink: 0;
    padding: 26px 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: default;

    background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.68) 0%,
        rgba(255, 255, 255, 0.32) 50%,
        rgba(255, 255, 255, 0.50) 100%
    );
    backdrop-filter: blur(28px) saturate(200%) brightness(112%);
    -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(112%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-top-color: rgba(255, 255, 255, 1);
    border-bottom-color: rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04),
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 28px rgba(0, 0, 0, 0.07);

    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.review-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.09),
        0 24px 56px rgba(0, 0, 0, 0.11);
}

/* Glare */
.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.50) 0%, rgba(255,255,255,0.00) 100%);
    border-radius: 20px 20px 60% 60% / 20px 20px 18px 18px;
    pointer-events: none;
    z-index: 0;
}

.review-card > * { position: relative; z-index: 1; }

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review-card__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-card__name {
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--fg);
}

.review-card__meta {
    font-size: .74rem;
    color: var(--fg-2);
    letter-spacing: -0.01em;
}

.review-card__rating {
    font-size: .85rem;
    color: #f5a623;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.review-card__text {
    font-size: .875rem;
    line-height: 1.70;
    color: var(--fg-2);
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Google logo */
.review-card__google {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(0,0,0,0.30);
    letter-spacing: 0.02em;
    margin-top: 2px;
}

.review-card__google svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .reviews {
        padding: 80px 0 100px;
    }
    .reviews__header {
        margin-bottom: 48px;
    }
}

/* ── CONTACT SECTION ── */
.contact {
    position: relative;
    z-index: 1;
    background: #0f0f0f;
    padding: 140px 24px 180px;
    overflow: hidden;
}

.contact__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(10, 10, 10, 0.82);
}

.contact__inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.contact__header {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.contact__title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: #ffffff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.contact__sub {
    font-size: 1.05rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: -0.01em;
    max-width: 540px;
    margin: 0 auto;
}

/* Contact form */
.contact__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact__field label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.contact__field select option {
    background: #1a1a1a;
    color: #fff;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
    border-color: rgba(255, 77, 0, 0.6);
    background: rgba(255, 255, 255, 0.09);
}

.contact__field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* ── Consent checkbox ── */
.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.consent input[type="checkbox"]:checked {
    background: #00DCFF;
    border-color: #00DCFF;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.consent label {
    font-size: 0.775rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.consent label a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Hero form — light theme overrides */
.hero__form-panel .consent input[type="checkbox"] {
    border-color: rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.6);
}

.hero__form-panel .consent input[type="checkbox"]:checked {
    background-color: #00DCFF;
    border-color: #00DCFF;
}

.hero__form-panel .consent label {
    color: var(--fg-2);
}

.hero__form-panel .consent label a {
    color: var(--fg);
}

.contact__submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    background: #00DCFF;
    color: rgba(0, 0, 0, 0.82);
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
}

.contact__submit:hover {
    background: #00c8e8;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contact {
        padding: 100px 20px 140px;
    }

    .contact__row {
        grid-template-columns: 1fr;
    }

    .contact__field input,
    .contact__field select,
    .contact__field textarea {
        font-size: 16px;
    }

    .contact__submit {
        width: 100%;
        justify-content: center;
    }
}

/* ── FAQ SECTION ── */
.faq {
    position: relative;
    z-index: 1;
    background: #f9f9f9;
    padding: 140px 24px 160px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

.faq__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.faq__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.faq__title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.10;
    color: var(--fg);
}

/* Accordion list */
.faq__list {
    display: flex;
    flex-direction: column;
}

.faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__q {
    width: 100%;
    background: none;
    border: none;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--fg);
    text-align: left;
    transition: color .2s ease;
}

.faq__q:hover { color: var(--accent); }

/* +/× icon */
.faq__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
    position: relative;
    transition: border-color .25s ease, transform .35s var(--ease), background .25s ease;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    background: var(--fg);
    border-radius: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .25s ease, background .25s ease;
}

.faq__icon::before { width: 10px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 10px; }

/* Open state */
.faq__q[aria-expanded="true"] .faq__icon {
    border-color: var(--accent);
    background: var(--accent);
    transform: rotate(45deg);
}

.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after {
    background: #fff;
}

.faq__q[aria-expanded="true"] { color: var(--fg); }

/* Answer panel */
.faq__a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s var(--ease);
}

.faq__a[hidden] { display: block; } /* override hidden — JS controls max-height */

.faq__a p {
    padding-bottom: 26px;
    font-size: .95rem;
    line-height: 1.80;
    color: var(--fg-2);
    letter-spacing: -0.01em;
}

.faq__a p + p { padding-top: 0; margin-top: -10px; }

@media (max-width: 768px) {
    .faq {
        padding: 100px 20px 120px;
    }

    .faq__q {
        font-size: .95rem;
        padding: 22px 0;
    }
}

/* ── FOOTER ── */
.footer {
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 80px 24px 48px;
    text-align: center;
}

.footer__logo {
    height: 36px;
    width: auto;
    opacity: 0.9;
}

.footer__tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 400px;
    line-height: 1.6;
}

.footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 12px;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes imgIn {
    from { opacity: 0; filter: blur(16px); transform: translateY(20px); }
    to   { opacity: 1; filter: blur(0);    transform: translateY(0); }
}

/* ── Respeita preferência de movimento reduzido ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── MOBILE BACKGROUND ── */
@media (max-width: 768px) {
    body {
        background: #faf8f5;
        transition: background-color 0.6s ease;
    }

    /* Desativa animação dos orbs no mobile — libera GPU */
    .bg__orb { animation: none; }

    .bg__orb--1 {
        width: 340px;
        height: 340px;
        background: radial-gradient(circle, rgba(255,160,90,0.10), rgba(232,84,30,0.04), transparent 68%);
        top: -100px;
        right: -80px;
    }
    .bg__orb--2 {
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(255,210,170,0.07), rgba(240,160,80,0.03), transparent 68%);
    }
    .bg__orb--3 {
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(255,235,210,0.08), rgba(245,200,150,0.02), transparent 68%);
    }
}

/* ── MOBILE RESPONSIVO ── */
@media (max-width: 768px) {

    /* Navbar: só logo + get started */
    .nav {
        top: 16px;
        gap: 0;
        justify-content: space-between;
        padding: 11px 18px;
        width: calc(100% - 32px);
        left: 16px;
        transform: none;
        border-radius: 16px;
    }

    @keyframes fadeDown {
        from { opacity: 0; transform: translateY(-14px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .nav__links { display: none; }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero__body {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px 20px 40px;
    }

    .hero__content {
        align-items: center;
        text-align: center;
    }

    .hero__badge {
        margin-bottom: 28px;
    }

    .hero__title {
        font-size: clamp(2.4rem, 10vw, 3.6rem);
        letter-spacing: -0.035em;
        margin-bottom: 20px;
    }

    .hero__sub {
        font-size: .875rem;
        margin-bottom: 32px;
        max-width: 340px;
    }

    .hero__btn {
        padding: 14px 26px;
        font-size: .875rem;
    }

    .hero__form-panel {
        padding: 24px;
    }

    /* Marquee menor no mobile */
    .hero__marquee {
        height: 200px;
    }

    .img-wrap {
        width: 120px;
        height: 160px;
    }
}

@media (max-width: 400px) {
    .hero__title {
        font-size: 2.1rem;
    }
}
