/* ════════════════════════════════════════════════════════════
   JVS CONTABILIDADE · Design system
   Estética: dark luxury / editorial — carvão profundo, dourado
   champanhe, serifa italiana, muito respiro.
   ════════════════════════════════════════════════════════════ */

:root {
    --coal: #0c0f14;
    --coal-2: #10141b;
    --coal-3: #161b24;
    --smoke: #8b93a3;
    --mist: #c6ccd8;
    --paper: #f2efe8;
    --gold: #c8a24b;
    --gold-soft: #e3c987;
    --gold-dim: rgba(200, 162, 75, 0.14);
    --wa: #22c55e;
    --hairline: rgba(242, 239, 232, 0.09);
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Sora", "Segoe UI", sans-serif;
    --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--coal);
    color: var(--paper);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--coal); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
svg { display: block; }

.wrap {
    width: min(1240px, 90%);
    margin-inline: auto;
}

em { font-style: italic; }

/* ─────────────────────────── Reveal ─────────────────────────── */
[data-fx] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-fx].on {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    [data-fx] { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ─────────────────────────── Preloader ─────────────────────────── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--coal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.off {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.preloader__monogram {
    font-family: var(--serif);
    font-size: 3.4rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    padding-left: 0.28em;
    color: var(--gold);
    animation: fadeUp 0.9s var(--ease) both;
}
.preloader__line {
    width: 0;
    height: 1px;
    background: var(--gold);
    animation: lineGrow 1.1s 0.25s var(--ease) forwards;
}
.preloader__word {
    font-size: 0.68rem;
    letter-spacing: 0.55em;
    padding-left: 0.55em;
    text-transform: uppercase;
    color: var(--smoke);
    animation: fadeUp 0.9s 0.4s var(--ease) both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}
@keyframes lineGrow {
    to { width: 180px; }
}

/* ─────────────────────────── Progresso ─────────────────────────── */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    z-index: 300;
}

/* ─────────────────────────── Header ─────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}
.header.solid {
    background: rgba(12, 15, 20, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--hairline);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.brand__monogram {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--paper);
    line-height: 1;
}
.brand__monogram i {
    font-style: italic;
    color: var(--gold);
}
.brand__divider {
    width: 1px;
    height: 26px;
    background: var(--hairline);
}
.brand__name {
    font-size: 0.66rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--smoke);
}

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}
.menu__link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--mist);
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    transition: color 0.3s ease;
}
.menu__link span {
    font-size: 0.58rem;
    color: var(--gold);
    opacity: 0.75;
}
.menu__link:hover { color: var(--paper); }
.menu__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--coal);
    background: var(--paper);
    padding: 12px 22px;
    border-radius: 999px;
    transition: background 0.3s ease, transform 0.3s ease;
}
.menu__cta svg { width: 15px; height: 15px; }
.menu__cta:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 260;
}
.burger span {
    display: block;
    width: 30px;
    height: 1.5px;
    background: var(--paper);
    transition: transform 0.35s var(--ease), opacity 0.3s;
}
.burger.x span:first-child { transform: translateY(4.2px) rotate(45deg); }
.burger.x span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

/* ─────────────────────────── Hero ─────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
}
.hero__orb--gold {
    width: 560px;
    height: 560px;
    background: rgba(200, 162, 75, 0.12);
    top: -180px;
    right: -140px;
    animation: drift 14s ease-in-out infinite alternate;
}
.hero__orb--blue {
    width: 480px;
    height: 480px;
    background: rgba(58, 92, 150, 0.14);
    bottom: -200px;
    left: -160px;
    animation: drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(60px, 40px); }
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--hairline) 1px, transparent 1px),
        linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
    opacity: 0.5;
}
.hero__watermark {
    position: absolute;
    right: -3%;
    bottom: -14%;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(16rem, 34vw, 32rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(242, 239, 232, 0.05);
    user-select: none;
}

.hero__inner { position: relative; }

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 40px;
}
.hero__eyebrow-line {
    width: 64px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.9rem, 7.2vw, 6.4rem);
    line-height: 1.04;
    letter-spacing: -0.015em;
    margin-bottom: 56px;
}
.hero__title-row { display: block; }
.hero__title-row--accent em {
    background: linear-gradient(105deg, var(--gold) 20%, var(--gold-soft) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 56px;
    margin-bottom: 72px;
}
.hero__lead {
    max-width: 470px;
    color: var(--smoke);
    font-size: 1rem;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}

/* Botão dourado com orbe */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--gold), var(--gold-soft));
    color: var(--coal);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    box-shadow: 0 14px 40px rgba(200, 162, 75, 0.25);
}
.btn-gold:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 20px 55px rgba(200, 162, 75, 0.4);
}
.btn-gold__label {
    padding: 17px 26px 17px 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.btn-gold__orb {
    width: 44px;
    height: 44px;
    margin-right: 6px;
    border-radius: 50%;
    background: var(--coal);
    color: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s var(--ease);
}
.btn-gold__orb svg { width: 22px; height: 22px; }
.btn-gold:hover .btn-gold__orb { transform: rotate(-12deg) scale(1.08); }
.btn-gold--big .btn-gold__label { padding: 21px 30px 21px 36px; font-size: 0.95rem; }
.btn-gold--big .btn-gold__orb { width: 52px; height: 52px; }

.btn-line {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--mist);
    padding-bottom: 6px;
    border-bottom: 1px solid var(--hairline);
    transition: color 0.3s, border-color 0.3s;
}
.btn-line:hover {
    color: var(--gold-soft);
    border-color: var(--gold);
}

.hero__metrics {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid var(--hairline);
    padding-top: 40px;
}
.metric__value {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--paper);
    line-height: 1;
}
.metric__value b { font-weight: 500; }
.metric__label {
    display: block;
    margin-top: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--smoke);
}
.metric__sep {
    width: 1px;
    height: 44px;
    background: var(--hairline);
}

.hero__scroll {
    position: absolute;
    right: 5%;
    bottom: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--smoke);
    writing-mode: vertical-rl;
}
.hero__scroll-track {
    width: 1px;
    height: 64px;
    background: var(--hairline);
    position: relative;
    overflow: hidden;
}
.hero__scroll-thumb {
    position: absolute;
    left: 0;
    top: -40%;
    width: 100%;
    height: 40%;
    background: var(--gold);
    animation: scrollThumb 2.2s ease-in-out infinite;
}
@keyframes scrollThumb {
    to { top: 110%; }
}

/* ─────────────────────────── Marquee ─────────────────────────── */
.marquee {
    border-block: 1px solid var(--hairline);
    background: var(--coal-2);
    overflow: hidden;
    padding: 20px 0;
}
.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 36s linear infinite;
}
.marquee__track span {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--smoke);
    white-space: nowrap;
    padding-right: 12px;
}
.marquee__track i {
    font-style: normal;
    color: var(--gold);
    margin: 0 18px;
}
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ─────────────────────────── Blocos ─────────────────────────── */
.block { padding: 130px 0; }

.block__head {
    max-width: 760px;
    margin-bottom: 76px;
}
.block__index {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}
.block__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.1rem, 4.4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
}
.block__title em { color: var(--gold-soft); }
.block__note {
    margin-top: 24px;
    color: var(--smoke);
    font-size: 0.95rem;
    max-width: 520px;
}

/* ─────────────────────────── Cards de serviço ─────────────────────────── */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
}
.card {
    position: relative;
    background: var(--coal);
    padding: 46px 38px 42px;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    overflow: hidden;
    transition: background 0.45s ease;
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 260px at 20% 0%, var(--gold-dim), transparent 65%);
    opacity: 0;
    transition: opacity 0.45s ease;
}
.card:hover { background: var(--coal-2); }
.card:hover::before { opacity: 1; }

.card__num {
    position: absolute;
    top: 30px;
    right: 32px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 2.6rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 162, 75, 0.35);
    line-height: 1;
    transition: -webkit-text-stroke-color 0.4s ease;
}
.card:hover .card__num { -webkit-text-stroke-color: var(--gold); }

.card__icon {
    width: 54px;
    height: 54px;
    color: var(--gold);
    margin-bottom: 30px;
    position: relative;
}
.card__icon svg { width: 100%; height: 100%; }

.card__title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.45rem;
    line-height: 1.22;
    margin-bottom: 16px;
    position: relative;
}
.card__text {
    color: var(--smoke);
    font-size: 0.88rem;
    flex-grow: 1;
    position: relative;
}
.card__go {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-soft);
    position: relative;
    transition: gap 0.3s ease;
}
.card__go svg { width: 14px; height: 14px; }
.card:hover .card__go { gap: 14px; }

/* ─────────────────────────── Split / Escritório ─────────────────────────── */
.block--split {
    background: var(--coal-2);
    border-block: 1px solid var(--hairline);
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}
.split__quote {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--mist);
    border-left: 2px solid var(--gold);
    padding-left: 28px;
    margin: 44px 0 30px;
}
.split__quote em { color: var(--gold-soft); }
.split__text {
    color: var(--smoke);
    font-size: 0.95rem;
    max-width: 480px;
}

.pillars {
    list-style: none;
    display: grid;
    gap: 0;
}
.pillar {
    display: flex;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid var(--hairline);
}
.pillar:first-child { padding-top: 10px; }
.pillar__num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    min-width: 44px;
    line-height: 1.2;
}
.pillar h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.pillar p {
    color: var(--smoke);
    font-size: 0.88rem;
}

/* ─────────────────────────── Jornada ─────────────────────────── */
.journey {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    position: relative;
    counter-reset: step;
}
.journey::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--hairline) 100%);
}
.journey__step { position: relative; padding-top: 38px; }
.journey__dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--coal);
    border: 2px solid var(--gold);
}
.journey__phase {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.journey__step h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.journey__step p {
    color: var(--smoke);
    font-size: 0.87rem;
}

/* ─────────────────────────── Depoimentos ─────────────────────────── */
.voices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.voice {
    position: relative;
    background: var(--coal-2);
    border: 1px solid var(--hairline);
    padding: 52px 36px 38px;
    transition: transform 0.4s var(--ease), border-color 0.4s ease;
}
.voice:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 162, 75, 0.4);
}
.voice__mark {
    position: absolute;
    top: 14px;
    left: 28px;
    font-family: var(--serif);
    font-size: 4.4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.5;
}
.voice blockquote {
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    color: var(--mist);
    margin-bottom: 30px;
}
.voice figcaption strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.voice figcaption span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ─────────────────────────── FAQ ─────────────────────────── */
.block--faq {
    background: var(--coal-2);
    border-block: 1px solid var(--hairline);
}
.faqwrap {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
}
.block__head--left {
    margin-bottom: 0;
    position: sticky;
    top: 130px;
}
.faq { border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: none;
    border: none;
    color: var(--paper);
    text-align: left;
    cursor: pointer;
    padding: 26px 4px;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.faq__q:hover { color: var(--gold-soft); }
.faq__toggle {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    flex-shrink: 0;
    transition: border-color 0.3s, background 0.3s;
}
.faq__toggle::before,
.faq__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--gold);
    transition: transform 0.4s var(--ease), background 0.3s;
}
.faq__toggle::before {
    width: 12px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}
.faq__toggle::after {
    width: 1.5px;
    height: 12px;
    transform: translate(-50%, -50%);
}
.faq__item.open .faq__toggle {
    background: var(--gold);
    border-color: var(--gold);
}
.faq__item.open .faq__toggle::before,
.faq__item.open .faq__toggle::after { background: var(--coal); }
.faq__item.open .faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}
.faq__a p {
    padding: 0 44px 28px 4px;
    color: var(--smoke);
    font-size: 0.92rem;
}

/* ─────────────────────────── Finale ─────────────────────────── */
.finale {
    position: relative;
    padding: 160px 0;
    text-align: center;
    overflow: hidden;
}
.finale::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 380px at 50% 115%, rgba(34, 197, 94, 0.1), transparent 65%),
        radial-gradient(760px 420px at 50% -20%, var(--gold-dim), transparent 65%);
    pointer-events: none;
}
.finale__inner { position: relative; }
.finale__kicker {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}
.finale__title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.1rem, 4.6vw, 3.9rem);
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 52px;
}
.finale__title em { color: var(--gold-soft); }
.finale__phone {
    display: block;
    margin-top: 34px;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--mist);
    transition: color 0.3s ease;
}
.finale__phone:hover { color: var(--gold-soft); }
.finale__hours {
    display: block;
    margin-top: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--smoke);
}

/* ─────────────────────────── Footer ─────────────────────────── */
.footer {
    border-top: 1px solid var(--hairline);
    background: var(--coal-2);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 70px;
    padding: 80px 0 60px;
}
.footer__monogram {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}
.footer__monogram i {
    font-style: italic;
    color: var(--gold);
}
.footer__brand p {
    margin-top: 20px;
    color: var(--smoke);
    font-size: 0.86rem;
}
.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer__col h4 {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}
.footer__col a,
.footer__col span {
    display: block;
    font-size: 0.86rem;
    color: var(--smoke);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--paper); }
.footer__base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid var(--hairline);
    padding-block: 26px;
    font-size: 0.76rem;
    color: var(--smoke);
}
.footer__base b { font-weight: 400; }
.footer__top { transition: color 0.3s ease; }
.footer__top:hover { color: var(--gold-soft); }

/* ─────────────────────────── WhatsApp flutuante ─────────────────────────── */
.wa-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 150;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 36px rgba(34, 197, 94, 0.4);
    transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid var(--wa);
    animation: ring 2.4s ease-out infinite;
}
@keyframes ring {
    from { transform: scale(1); opacity: 0.8; }
    to { transform: scale(1.7); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
    .journey { grid-template-columns: repeat(2, 1fr); row-gap: 64px; }
    .journey::before { display: none; }
    .voices { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
    .split,
    .faqwrap { grid-template-columns: 1fr; gap: 60px; }
    .block__head--left { position: static; }
    .footer__inner { grid-template-columns: 1fr; gap: 50px; }
    .hero__foot { flex-direction: column; align-items: flex-start; gap: 40px; }
    .hero__scroll { display: none; }
}

@media (max-width: 760px) {
    .brand__name, .brand__divider { display: none; }

    .menu {
        position: fixed;
        inset: 0;
        background: rgba(12, 15, 20, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        padding: 0 10%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.45s ease, visibility 0.45s ease;
        z-index: 250;
    }
    .menu.open { opacity: 1; visibility: visible; }
    .menu__link {
        font-family: var(--serif);
        font-size: 2rem;
        font-weight: 500;
        padding: 10px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
    }
    .menu.open .menu__link {
        opacity: 1;
        transform: none;
    }
    .menu.open .menu__link:nth-child(1) { transition-delay: 0.08s; }
    .menu.open .menu__link:nth-child(2) { transition-delay: 0.14s; }
    .menu.open .menu__link:nth-child(3) { transition-delay: 0.2s; }
    .menu.open .menu__link:nth-child(4) { transition-delay: 0.26s; }
    .menu.open .menu__link:nth-child(5) { transition-delay: 0.32s; }
    .menu__cta {
        margin-top: 30px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s 0.4s var(--ease), transform 0.5s 0.4s var(--ease);
    }
    .menu.open .menu__cta { opacity: 1; transform: none; }
    .burger { display: flex; }

    .hero { padding: 130px 0 70px; }
    .hero__foot { margin-bottom: 52px; }
    .hero__actions { flex-direction: column; align-items: stretch; width: 100%; gap: 20px; }
    .btn-gold { justify-content: space-between; }
    .btn-line { text-align: center; align-self: center; }
    .hero__metrics { gap: 26px; padding-top: 30px; }
    .metric__sep { display: none; }
    .metric__value { font-size: 1.9rem; }
    .hero__watermark { display: none; }

    .block { padding: 84px 0; }
    .block__head { margin-bottom: 50px; }
    .cards { grid-template-columns: 1fr; }
    .card { min-height: 0; padding: 38px 28px; }
    .journey { grid-template-columns: 1fr; gap: 44px; }
    .pillar { gap: 18px; padding: 24px 0; }
    .split__quote { padding-left: 20px; }

    .faq__q { font-size: 1.1rem; padding: 20px 4px; }
    .finale { padding: 100px 0; }

    .footer__nav { grid-template-columns: 1fr; gap: 32px; }
    .footer__base { justify-content: center; text-align: center; }

    .wa-float { width: 54px; height: 54px; right: 20px; bottom: 20px; }
    .wa-float svg { width: 26px; height: 26px; }
}
