@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Raleway:wght@400;500;600;700;800&display=swap');

:root {
    --black: #050403;
    --black-soft: #0d0a08;
    --brown: #1b120c;
    --gold: #b08a45;
    --gold-light: #d6b56d;
    --copper: #9a5f36;
    --white: #f3eee6;
    --text: #c7b9aa;
    --muted: #8d8073;
    --line: rgba(176, 138, 69, .28);
    --mouse-x: 50%;
    --mouse-y: 50%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    color: var(--white);
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(214, 181, 109, .12), transparent 20%),
        radial-gradient(circle at 80% 10%, rgba(176, 138, 69, .12), transparent 26%),
        radial-gradient(circle at 10% 48%, rgba(154, 95, 54, .12), transparent 28%),
        linear-gradient(135deg, #050403 0%, #0d0a08 48%, #1b120c 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.cursor-light {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(214, 181, 109, .18), rgba(154, 95, 54, .08) 42%, transparent 72%);
    filter: blur(14px);
    transition: opacity .25s ease;
}

body.has-cursor .cursor-light {
    opacity: 1;
}

.noise-layer {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .055;
    mix-blend-mode: overlay;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,.7) 0 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,.45) 0 1px, transparent 1px);
    background-size: 44px 44px, 61px 61px;
}

.topo {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 30;
    background: rgba(5, 4, 3, .72);
    border-bottom: 1px solid rgba(176, 138, 69, .20);
    backdrop-filter: blur(18px);
}

.topo-grid {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.logo-link img {
    width: 130px;
    max-height: 72px;
    object-fit: contain;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.menu a {
    color: var(--text);
    font-size: 14px;
    transition: .3s ease;
}

.menu a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 18px rgba(214, 181, 109, .30);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
    transform: skewX(-25deg);
    transition: .8s ease;
}

.btn:hover::before {
    left: 135%;
}

.btn-primary {
    border: none;
    color: #130b04;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--copper));
    box-shadow: 0 18px 42px rgba(154, 95, 54, .26), inset 0 1px 0 rgba(255,255,255,.34);
    padding: 16px 26px;
}

.btn-glass,
.btn-outline {
    color: var(--white);
    border: 1px solid var(--line);
    background: rgba(255,255,255,.035);
    padding: 15px 24px;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 0 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -4%;
    background-image: url("imagens/hero-orla.jpeg");
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    animation: cinematicZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,4,3,.96) 0%, rgba(5,4,3,.86) 36%, rgba(5,4,3,.38) 70%, rgba(5,4,3,.62) 100%),
        linear-gradient(180deg, rgba(5,4,3,.18), rgba(5,4,3,.86));
}

.hero-ring {
    position: absolute;
    border: 1px solid rgba(214, 181, 109, .22);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.ring-one {
    right: -110px;
    top: 100px;
    width: 540px;
    height: 540px;
    animation: rotateRing 28s linear infinite;
}

.ring-two {
    right: 110px;
    bottom: 70px;
    width: 280px;
    height: 280px;
    animation: rotateRingReverse 20s linear infinite;
}

.hero-grid {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 54px;
    align-items: center;
}

.hero-text {
    max-width: 760px;
}

.pill {
    display: inline-flex;
    padding: 10px 16px;
    border: 1px solid rgba(176, 138, 69, .36);
    border-radius: 999px;
    background: rgba(5,4,3,.42);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

.pill::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -120%;
    width: 80%;
    background: linear-gradient(90deg, transparent, rgba(214, 181, 109, .28), transparent);
    transform: skewX(-25deg);
    animation: shineSweep 5.2s ease-in-out infinite;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
}

.hero h1 {
    font-size: clamp(46px, 5.8vw, 82px);
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero h1 strong {
    display: block;
    background: linear-gradient(135deg, #ead09a, var(--gold), var(--copper));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 4s ease-in-out infinite alternate;
}

.hero p {
    max-width: 650px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-experience {
    position: relative;
    min-height: 500px;
    perspective: 900px;
}

.orbit-line {
    position: absolute;
    inset: 70px 20px;
    border: 1px solid rgba(214, 181, 109, .22);
    border-radius: 50%;
    animation: rotateRing 24s linear infinite;
}

.center-seal {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(214, 181, 109, .36);
    background:
        radial-gradient(circle, rgba(214, 181, 109, .14), transparent 68%),
        rgba(5,4,3,.66);
    display: grid;
    place-items: center;
    box-shadow: 0 0 70px rgba(154, 95, 54, .22);
    animation: floatSeal 4.4s ease-in-out infinite;
}

.center-seal img {
    width: 120px;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,.35));
}

.glass-card {
    border: 1px solid rgba(176, 138, 69, .30);
    background: rgba(5,4,3,.64);
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 70px rgba(0,0,0,.34);
}

.floating-stat {
    position: absolute;
    width: 185px;
    padding: 20px;
    border-radius: 24px;
}

.floating-stat span {
    display: block;
    color: var(--text);
    font-size: 13px;
    margin-bottom: 7px;
}

.floating-stat strong {
    color: var(--gold-light);
    font-size: 23px;
}

.stat-one {
    top: 20px;
    left: 0;
    animation: floatStatOne 4.4s ease-in-out infinite;
}

.stat-two {
    right: 0;
    top: 170px;
    animation: floatStatTwo 4.9s ease-in-out infinite;
}

.stat-three {
    left: 60px;
    bottom: 30px;
    animation: floatStatThree 5.3s ease-in-out infinite;
}

.features {
    position: relative;
    z-index: 5;
    margin-top: -48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    min-height: 230px;
    padding: 30px 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(214, 181, 109, .16), transparent 34%),
        rgba(12, 9, 7, .92);
    box-shadow: 0 26px 70px rgba(0,0,0,.30);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -120%;
    width: 70%;
    transform: skewX(-25deg);
    background: linear-gradient(90deg, transparent, rgba(214, 181, 109, .16), transparent);
    transition: .8s ease;
}

.feature-card:hover::before {
    left: 140%;
}

.feature-icon {
    display: inline-flex;
    color: var(--gold-light);
    font-size: 34px;
    margin-bottom: 18px;
    animation: iconPulse 3.5s ease-in-out infinite;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.65;
}

.secao {
    padding: 110px 0;
    position: relative;
    z-index: 5;
}

.split-grid,
.specialist-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 60px;
    align-items: center;
}

.image-frame,
.specialist-image,
.location-card,
.form-box {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.045);
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
    overflow: hidden;
    position: relative;
}

.image-frame,
.specialist-image {
    height: 560px;
    border-radius: 34px;
    transform-style: preserve-3d;
}

.image-frame img,
.location-image img,
.specialist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 1s ease;
}

.image-frame img {
    object-position: 25% center;
}

.image-frame:hover img,
.location-card:hover img,
.specialist-image:hover img {
    transform: scale(1.07);
    filter: brightness(1.08) contrast(1.05);
}

.image-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(214, 181, 109, .18) 50%, transparent 58%, transparent 100%);
    transform: translateX(-130%);
    animation: imageShine 6.5s ease-in-out infinite;
}

.section-text h2,
.location-text h2,
.form-head h2 {
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.08;
    margin-bottom: 22px;
}

.section-text p,
.location-text p,
.form-head p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.premium-list {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 30px 0;
}

.premium-list li {
    display: flex;
    gap: 12px;
    color: var(--text);
}

.premium-list li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    color: var(--gold-light);
    border: 1px solid var(--line);
    background: rgba(176, 138, 69, .10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.location-card {
    border-radius: 34px;
    min-height: 520px;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
}

.location-text {
    padding: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-image {
    min-height: 520px;
}

.specialist-grid {
    grid-template-columns: .92fr 1.08fr;
}

.specialist-image img {
    object-position: center;
}

.credential-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.credential-row span {
    padding: 12px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(176, 138, 69, .09);
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 800;
    position: relative;
    overflow: hidden;
}

.credential-row span::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -120%;
    width: 80%;
    background: linear-gradient(90deg, transparent, rgba(214, 181, 109, .24), transparent);
    transform: skewX(-25deg);
    animation: shineSweep 5s ease-in-out infinite;
}

.form-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 44px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(154, 95, 54, .16), transparent 34%),
        rgba(255,255,255,.045);
}

.form-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 34px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.campo {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.campo-full {
    grid-column: 1 / -1;
}

.campo label {
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.campo input,
.campo select,
.campo textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(176, 138, 69, .24);
    background: rgba(255,255,255,.055);
    color: var(--white);
    outline: none;
    font-size: 15px;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.campo select option {
    background: var(--black-soft);
}

.campo input:focus,
.campo select:focus,
.campo textarea:focus {
    border-color: rgba(214, 181, 109, .75);
    box-shadow: 0 0 0 4px rgba(154, 95, 54, .12), 0 0 28px rgba(154, 95, 54, .12);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    margin-top: 24px;
    padding: 18px 28px;
    font-size: 16px;
}

.form-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.quiz-mode .form-grid {
    display: block;
}

.quiz-mode .campo {
    display: none;
}

.quiz-mode .campo.active {
    display: flex;
    animation: questionFlip .65s ease forwards;
}

.quiz-progress-wrap {
    width: 100%;
    height: 9px;
    margin: 26px 0 18px;
    border: 1px solid rgba(176, 138, 69, .18);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    overflow: hidden;
}

.quiz-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--copper));
    border-radius: inherit;
    transition: .55s cubic-bezier(.18,.89,.32,1.28);
    box-shadow: 0 0 24px rgba(214, 181, 109, .30);
}

.quiz-status {
    color: var(--text);
    font-size: 14px;
    text-align: center;
    margin-bottom: 18px;
}

.quiz-controles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 20px;
}

.quiz-btn {
    padding: 15px 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform .3s ease, box-shadow .3s ease;
}

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

.quiz-btn.voltar {
    color: var(--white);
    background: rgba(255,255,255,.045);
}

.quiz-btn.proximo {
    color: #130b04;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--copper));
}

.quiz-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.quiz-mode .btn-submit {
    display: none;
}

.quiz-mode.quiz-final .btn-submit {
    display: inline-flex;
    animation: revealUp .65s ease forwards;
}

.preparando-whatsapp {
    display: none;
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(176, 138, 69, .10);
    color: var(--gold-light);
    text-align: center;
    font-weight: 800;
}

.preparando-whatsapp.active {
    display: block;
    animation: pulseBox 1s ease infinite;
}

.footer {
    position: relative;
    z-index: 5;
    padding: 38px 0;
    border-top: 1px solid rgba(176, 138, 69, .18);
    background: rgba(5,4,3,.86);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer img {
    width: 150px;
    max-height: 82px;
    object-fit: contain;
}

.footer p {
    color: var(--muted);
    line-height: 1.6;
    text-align: right;
}

.footer strong {
    color: var(--gold-light);
}

/* Fallback: elements are visible by default.
   JS only adds animations when available. */
.js-enabled .reveal {
    opacity: 0;
    will-change: transform, opacity, filter;
}

.js-enabled .reveal.show {
    opacity: 1;
}

.js-enabled .reveal-left {
    transform: translateX(-80px);
    filter: blur(6px);
}

.js-enabled .reveal-right {
    transform: translateX(80px);
    filter: blur(6px);
}

.js-enabled .reveal-zoom {
    transform: scale(.92);
    filter: blur(6px);
}

.js-enabled .reveal-card {
    transform: translateY(65px) rotateX(12deg) scale(.95);
    filter: blur(7px);
}

.js-enabled .reveal-left.show {
    animation: revealLeft 1.05s cubic-bezier(.18,.89,.32,1.18) forwards;
}

.js-enabled .reveal-right.show {
    animation: revealRight 1.05s cubic-bezier(.18,.89,.32,1.18) forwards;
}

.js-enabled .reveal-zoom.show {
    animation: revealZoom 1.05s cubic-bezier(.18,.89,.32,1.18) forwards;
}

.js-enabled .reveal-card.show {
    animation: revealCard 1.15s cubic-bezier(.18,.89,.32,1.2) forwards;
}

.js-enabled .reveal-card:nth-child(1).show {
    animation-delay: .05s;
}

.js-enabled .reveal-card:nth-child(2).show {
    animation-delay: .18s;
}

.js-enabled .reveal-card:nth-child(3).show {
    animation-delay: .31s;
}

.js-enabled .reveal-card:nth-child(4).show {
    animation-delay: .44s;
}

@keyframes cinematicZoom {
    from {
        transform: scale(1.05) translateY(0);
    }

    to {
        transform: scale(1.12) translateY(-14px);
    }
}

@keyframes rotateRing {
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateRingReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes titleGlow {
    from {
        filter: brightness(1);
    }

    to {
        filter: brightness(1.13);
    }
}

@keyframes shineSweep {
    0%, 58% {
        left: -120%;
    }

    82%, 100% {
        left: 140%;
    }
}

@keyframes floatSeal {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-12px);
    }
}

@keyframes floatStatOne {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes floatStatTwo {
    0%, 100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes floatStatThree {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        text-shadow: 0 0 0 rgba(214,181,109,0);
    }

    50% {
        transform: translateY(-5px) scale(1.08);
        text-shadow: 0 0 26px rgba(214,181,109,.45);
    }
}

@keyframes imageShine {
    0%, 62% {
        transform: translateX(-130%);
    }

    84%, 100% {
        transform: translateX(130%);
    }
}

@keyframes revealLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px) scale(.97);
        filter: blur(6px);
    }

    65% {
        opacity: 1;
        transform: translateX(14px) scale(1.02);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes revealRight {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(.97);
        filter: blur(6px);
    }

    65% {
        opacity: 1;
        transform: translateX(-14px) scale(1.02);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes revealZoom {
    0% {
        opacity: 0;
        transform: scale(.92);
        filter: blur(6px);
    }

    70% {
        opacity: 1;
        transform: scale(1.025);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes revealCard {
    0% {
        opacity: 0;
        transform: translateY(65px) rotateX(12deg) scale(.95);
        filter: blur(7px);
    }

    58% {
        opacity: 1;
        transform: translateY(-12px) rotateX(-3deg) scale(1.03);
        filter: blur(0);
    }

    78% {
        transform: translateY(5px) rotateX(1deg) scale(.99);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes questionFlip {
    from {
        opacity: 0;
        transform: rotateX(14deg) translateY(18px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: rotateX(0) translateY(0);
        filter: blur(0);
    }
}

@keyframes pulseBox {
    0%, 100% {
        box-shadow: 0 0 0 rgba(214,181,109,0);
    }

    50% {
        box-shadow: 0 0 24px rgba(214,181,109,.22);
    }
}

@media (max-width: 980px) {
    .topo-grid {
        grid-template-columns: 1fr auto;
    }

    .menu {
        display: none;
    }

    .hero-grid,
    .split-grid,
    .location-card,
    .specialist-grid {
        grid-template-columns: 1fr;
    }

    .hero-experience {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-text {
        padding: 38px;
    }

    .location-image,
    .image-frame,
    .specialist-image {
        height: 430px;
    }
}

@media (max-width: 680px) {
    #particleCanvas,
    .cursor-light,
    .hero-ring {
        display: none;
    }

    .logo-link img {
        width: 112px;
    }

    .btn-outline {
        padding: 11px 14px;
        font-size: 12px;
    }

    .hero {
        padding-top: 122px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .features-grid,
    .form-grid,
    .quiz-controles {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .form-box {
        padding: 28px;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer p {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    #particleCanvas,
    .cursor-light,
    .hero-ring {
        display: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================
   TESTE EM CAMADAS - ENTRADA E FLUTUACAO SEPARADAS
   Corrige o "teleporte" causado por duas animacoes brigando no transform.
   ========================================================== */

/* A camada externa controla POSICAO e ENTRADA */
.stat-enter {
    position: absolute;
    width: 185px;
    opacity: 0;
    will-change: transform, opacity;
}

/* Posicoes que antes ficavam nos proprios cards */
.stat-enter-one {
    top: 20px;
    left: 45px;
}

.stat-enter-two {
    right: -70px;
    top: 170px;
}

.stat-enter-three {
    left: 60px;
    bottom: 30px;
}

/* O card interno agora nao posiciona, apenas ocupa o wrapper */
.stat-enter .floating-stat {
    position: relative;
    inset: auto;
    width: 100%;
}

/* Remove transform/entrada antiga dos cards diretos */
.stat-one,
.stat-two,
.stat-three {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
}

/* Entrada fica no PAI */
.stat-enter-one {
    animation: statEnterLeft 1.55s cubic-bezier(.18,.89,.32,1.12) .35s forwards;
}

.stat-enter-two {
    animation: statEnterRight 1.55s cubic-bezier(.18,.89,.32,1.12) .55s forwards;
}

.stat-enter-three {
    animation: statEnterBottom 1.55s cubic-bezier(.18,.89,.32,1.12) .75s forwards;
}

/* Flutuacao fica no FILHO, com delay para comecar depois da entrada */
.stat-enter-one .floating-stat {
    animation: floatStatOne 8s ease-in-out 2.1s infinite;
}

.stat-enter-two .floating-stat {
    animation: floatStatTwo 9s ease-in-out 2.3s infinite;
}

.stat-enter-three .floating-stat {
    animation: floatStatThree 10s ease-in-out 2.5s infinite;
}

@keyframes statEnterLeft {
    0% {
        opacity: 0;
        transform: translateX(-95px) scale(.92);
    }

    65% {
        opacity: 1;
        transform: translateX(12px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes statEnterRight {
    0% {
        opacity: 0;
        transform: translateX(95px) scale(.92);
    }

    65% {
        opacity: 1;
        transform: translateX(-12px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes statEnterBottom {
    0% {
        opacity: 0;
        transform: translateY(95px) scale(.92);
    }

    65% {
        opacity: 1;
        transform: translateY(-12px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Otimizacoes leves para o teste */
.hero-bg {
    animation: none !important;
}

@media (max-width: 980px) {
    .hero-experience {
        display: none;
    }
}


/* ==========================================================
   AJUSTES DA VERSÃO COM TEXTOS REVISADOS
   ========================================================== */

.final-cta-section {
    padding-top: 40px;
}

.hero-experience .floating-stat strong {
    line-height: 1.15;
    font-size: 20px;
}

@media (max-width: 980px) {
    .final-cta-section {
        padding-top: 20px;
    }
}


/* ==========================================================
   OPCAO DE FONTE DESKTOP: Raleway + Marcellus
   Bloco de teste adicionado sem alterar estrutura da landing.
   ========================================================== */

body {
    font-family: 'Raleway', Arial, sans-serif;
}

h1,
h2,
h3,
.hero h1,
.hero h1 strong,
.section-text h2,
.location-text h2,
.form-head h2,
.feature-card h3,
.footer h2 {
    font-family: 'Marcellus', serif;
}

.pill,
.btn,
.menu a,
.campo label,
.campo input,
.campo select,
.campo textarea,
.quiz-btn,
.form-note,
.footer p {
    font-family: 'Raleway', Arial, sans-serif;
}

.hero-title span,
.script-accent,
.font-accent {
    font-family: 'Marcellus', serif;
    font-style: normal;
}

.hero-title strong {
    font-family: 'Marcellus', serif;
}

/* ==========================================================
   AJUSTE FINO - SOMENTE FUNDO GERAL MAIS CLARO
   Não altera cards, blocos, header, rodapé, textos ou imagens.
   ========================================================== */

body {
    background:
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(214, 181, 109, .13), transparent 22%),
        radial-gradient(circle at 80% 10%, rgba(176, 138, 69, .15), transparent 28%),
        radial-gradient(circle at 10% 48%, rgba(154, 95, 54, .15), transparent 30%),
        linear-gradient(135deg, #090706 0%, #15100c 48%, #21150f 100%) !important;
}


/* ==========================================================
   AJUSTES SOLICITADOS PELO CLIENTE - TESTE SEM BACKEND
   ========================================================== */

.stat-enter-four {
    left: -42px;
    bottom: 205px;
    right: auto;
    animation: statEnterLeft 1.55s cubic-bezier(.18,.89,.32,1.12) .92s forwards;
}

.stat-enter-four .floating-stat {
    animation: floatStatTwo 9.5s ease-in-out 2.7s infinite;
}

.stat-four {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
}

.creci-number {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 900;
    letter-spacing: .7px;
    font-size: 1.12em;
    line-height: 1;
}

.credential-row .creci-number,
.footer .creci-number {
    font-size: 1.18em;
}

.whatsapp-card {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-card h3 {
    text-transform: none;
    letter-spacing: .4px;
    font-size: 22px;
}

.whatsapp-card .feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 900;
    background: rgba(176, 138, 69, .12);
}

.whatsapp-card p {
    font-size: 15px;
}

.campo label {
    font-size: 16px !important;
    line-height: 1.35;
}

.quiz-mode .campo.active label {
    font-size: 20px !important;
    margin-bottom: 8px;
}

.other-input {
    display: none;
    margin-top: 12px;
}

.other-active .other-input {
    display: block;
}

@media (max-width: 1180px) {
    .stat-enter-four {
        left: 42px;
        bottom: 185px;
        right: auto;
    }
}
/* Botão flutuante WhatsApp */
.whatsapp-floating {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 18px;
    border-radius: 999px;

    color: #130b05;
    background: linear-gradient(135deg, #e4c87f, #c9a25b, #9a5f36);
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .35),
        0 0 28px rgba(201, 162, 91, .22);

    animation: whatsappFloat 3.4s ease-in-out infinite;
    transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-floating:hover {
    transform: translateY(-4px) scale(1.035);
    box-shadow:
        0 24px 58px rgba(0, 0, 0, .42),
        0 0 38px rgba(228, 200, 127, .34);
}

.whatsapp-floating-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(5, 4, 3, .16);
    color: #130b05;
    font-size: 20px;
    font-weight: 900;
}

.whatsapp-floating::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: inherit;
    border: 1px solid rgba(228, 200, 127, .28);
    opacity: .75;
    animation: whatsappPulse 2.7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes whatsappFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes whatsappPulse {
    0% {
        transform: scale(.96);
        opacity: .7;
    }

    70% {
        transform: scale(1.12);
        opacity: 0;
    }

    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

@media (max-width: 680px) {
    .whatsapp-floating {
        right: 18px;
        bottom: 18px;
        padding: 13px 15px;
        font-size: 14px;
    }

    .whatsapp-floating-text {
        display: none;
    }

    .whatsapp-floating-icon {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
}

/* ==========================================================
   FORMULÁRIO CONDICIONAL - PRONTO / NA PLANTA
   ========================================================== */
.conditional-lead-form {
    margin-top: 34px;
}

.conditional-quiz {
    min-height: 154px;
}

.conditional-question {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
}

.conditional-question label {
    display: block;
    margin-bottom: 14px;
    font-size: clamp(18px, 1.5vw, 24px) !important;
    line-height: 1.25;
    color: var(--text, #f4eee6);
    font-weight: 900;
}

.conditional-question select,
.conditional-question input {
    width: 100%;
}

.conditional-other-input {
    display: none;
    margin-top: 14px;
}

.conditional-other-input.active {
    display: block;
}

.conditional-controls {
    margin-top: 22px;
}

.conditional-submit {
    display: none;
}

.conditional-final-message {
    margin-top: 18px;
    text-align: center;
}

.conditional-progress-wrap {
    margin-top: 18px;
}

@media (max-width: 680px) {
    .conditional-quiz {
        min-height: 180px;
    }

    .conditional-question label {
        font-size: 18px !important;
    }

    .conditional-controls {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .conditional-controls .quiz-btn {
        width: 100%;
    }
}
