:root {
    --black: #0B0B0B;
    --black-soft: #111111;
    --charcoal: #181818;
    --gray: #A7A7A7;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --gold-soft: #B8962E;
    --gold-muted: #8E762B;
    --gold-light: #F4DA7A;
    --border: rgba(212, 175, 55, 0.22);
    --border-strong: rgba(212, 175, 55, 0.42);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    --radius: 8px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section,
.section-dark {
    padding: 112px 0;
    position: relative;
}

.section {
    background: var(--white);
    color: var(--black);
}

.section-dark {
    background:
        radial-gradient(circle at 85% 10%, rgba(212, 175, 55, 0.14), transparent 30%),
        linear-gradient(135deg, #0B0B0B 0%, #151515 58%, #0B0B0B 100%);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(11, 11, 11, 0.86);
    border-color: rgba(212, 175, 55, 0.16);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    min-width: 0;
}

.brand span:last-child {
    line-height: 1.12;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.22);
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-menu a {
    transition: color 0.25s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: var(--radius);
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.btn-gold {
    color: var(--black);
    background: linear-gradient(135deg, var(--gold) 0%, #F4DA7A 52%, var(--gold-soft) 100%);
    box-shadow: 0 18px 38px rgba(212, 175, 55, 0.22);
}

.btn-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
    border-color: var(--gold);
}

.btn-small {
    min-height: 44px;
    padding: 0 18px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 128px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 12% -12% auto auto;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 68%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

h1,
h2,
h3 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 720px;
    font-size: clamp(2.6rem, 6.1vw, 5.45rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
    font-size: 1.18rem;
}

.hero-content p,
.section-heading p,
.about-copy p,
.cta-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
}

.hero-content p {
    max-width: 650px;
    margin-bottom: 32px;
}

.hero-content .eyebrow {
    max-width: 580px;
}

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

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 560px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    gap: 10px;
}

.trust-row div {
    padding: 20px 14px 0 0;
}

.trust-row strong {
    display: block;
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-size: 1.55rem;
}

.trust-row span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.hero-visual {
    min-height: 620px;
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.glass,
.testimonial-card {
    backdrop-filter: blur(22px);
}

.cinematic-frame {
    width: min(100%, 540px);
    aspect-ratio: 0.82;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.48);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(11, 11, 11, 0.18)),
        rgba(255, 255, 255, 0.04);
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.52),
        0 0 80px rgba(212, 175, 55, 0.12);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    animation: frameArrival 0.9s ease both, premiumDrift 8s ease-in-out 1s infinite;
}

.cinematic-frame::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    pointer-events: none;
}

.cinematic-frame::after {
    content: "";
    position: absolute;
    inset: -40%;
    z-index: 4;
    background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.16) 48%, transparent 58%);
    transform: translateX(-48%) rotate(8deg);
    animation: cinematicSheen 7s ease-in-out infinite;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.12) brightness(0.82);
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(11, 11, 11, 0.08) 0%, rgba(11, 11, 11, 0.36) 45%, rgba(11, 11, 11, 0.86) 100%),
        linear-gradient(115deg, rgba(11, 11, 11, 0.82) 0%, transparent 48%, rgba(212, 175, 55, 0.22) 100%);
}

.video-glow {
    position: absolute;
    inset: auto -10% -16% auto;
    z-index: 2;
    width: 72%;
    height: 42%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.34), transparent 68%);
    filter: blur(18px);
    opacity: 0.72;
    animation: glowPulse 4.6s ease-in-out infinite;
    pointer-events: none;
}

.visual-caption {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 5;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.26);
    border-radius: 14px;
    background: rgba(11, 11, 11, 0.46);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.visual-caption span {
    display: block;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.visual-caption strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.2;
}

.floating-stack {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: grid;
    pointer-events: none;
}

.float-card {
    position: absolute;
    width: max-content;
    max-width: 230px;
    padding: 12px 16px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.74), rgba(255, 255, 255, 0.08));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0;
    pointer-events: auto;
    animation: floatCard 5.8s ease-in-out infinite;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.float-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(244, 218, 122, 0.72);
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.82), rgba(212, 175, 55, 0.16));
}

.float-card:nth-child(1) {
    top: 9%;
    left: -2%;
}

.float-card:nth-child(2) {
    top: 21%;
    right: -4%;
    animation-delay: -1.1s;
}

.float-card:nth-child(3) {
    top: 43%;
    left: -9%;
    animation-delay: -2.2s;
}

.float-card:nth-child(4) {
    right: -7%;
    bottom: 31%;
    animation-delay: -0.7s;
}

.float-card:nth-child(5) {
    left: 3%;
    bottom: 12%;
    animation-delay: -3s;
}

.float-card:nth-child(6) {
    right: 8%;
    bottom: 6%;
    animation-delay: -1.8s;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 54px;
}

.section-heading p {
    margin-top: 18px;
}

.section .section-heading .eyebrow {
    color: var(--gold-muted);
}

.section .section-heading p {
    color: rgba(11, 11, 11, 0.66);
}

.section .section-heading .eyebrow::before {
    background: var(--gold-muted);
}

.card-grid,
.pain-grid,
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card,
.pain-card {
    min-height: 248px;
    padding: 30px;
    border: 1px solid rgba(11, 11, 11, 0.08);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F7 100%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.pain-card:hover,
.result-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.1);
}

.service-card .icon,
.pain-card span {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--gold-muted);
    font-family: "Montserrat", sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p,
.pain-card p,
.footer p,
.footer a,
.footer span,
.about-copy p {
    color: rgba(11, 11, 11, 0.66);
}

/* Novas secoes persuasivas: dores, servicos em modo premium e resultados sem numeros inventados. */
.pain-section {
    background:
        linear-gradient(180deg, #FFFFFF 0%, #F4F4F4 100%);
}

.pain-card {
    position: relative;
    overflow: hidden;
}

.pain-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.64;
}

.pain-closing {
    max-width: 900px;
    margin: 38px auto 0;
    padding: 26px 30px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: var(--radius);
    color: var(--black);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.94));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.services.section-dark .service-card {
    border-color: var(--border);
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(11, 11, 11, 0.34);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.services.section-dark .service-card:hover {
    border-color: var(--border-strong);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.services.section-dark .service-card .icon {
    color: var(--gold-light);
}

.services.section-dark .service-card p {
    color: rgba(255, 255, 255, 0.68);
}

.results {
    background:
        linear-gradient(180deg, #FFFFFF 0%, #F7F7F7 100%);
}

.result-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border: 1px solid rgba(11, 11, 11, 0.08);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(11, 11, 11, 0.96), rgba(24, 24, 24, 0.94)),
        var(--black);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.result-card strong {
    display: block;
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
}

.result-card span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.result-card.is-visible strong {
    animation: resultPulse 0.9s ease both;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.trust-badges span {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 999px;
    color: var(--black);
    background: rgba(212, 175, 55, 0.1);
    font-size: 0.88rem;
    font-weight: 800;
}

.feature-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 70px;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(212, 175, 55, 0.08);
}

.feature-item h3 {
    margin-bottom: 8px;
}

.feature-item p,
.testimonial-card p {
    color: rgba(255, 255, 255, 0.68);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    align-items: center;
    gap: 74px;
}

.about-copy p {
    margin-top: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.stats div {
    padding: 22px;
    border: 1px solid rgba(11, 11, 11, 0.08);
    border-radius: var(--radius);
    background: #F7F7F7;
}

.stats strong {
    display: block;
    color: var(--gold-muted);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.1;
}

.stats span {
    color: rgba(11, 11, 11, 0.62);
    font-size: 0.92rem;
}

.about-visual {
    min-height: 520px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(11, 11, 11, 0.88), rgba(11, 11, 11, 0.42)),
        repeating-linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0 1px, transparent 1px 18px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.portrait-card {
    width: min(82%, 390px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(11, 11, 11, 0.72);
    box-shadow: var(--shadow);
}

.institutional-card {
    position: relative;
    overflow: hidden;
}

.institutional-card::before {
    content: "";
    position: absolute;
    inset: 72px 34px auto auto;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.26), rgba(255, 255, 255, 0.08));
}

.portrait-top {
    height: 58px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.portrait-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
}

.portrait-content {
    padding: 34px;
}

.gold-line {
    display: block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 24px;
}

.portrait-content h3,
.portrait-content p {
    color: var(--white);
}

.portrait-content p {
    margin: 12px 0 28px;
    color: rgba(255, 255, 255, 0.68);
}

.mini-report {
    display: grid;
    gap: 12px;
}

.mini-report span {
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.08));
}

.mini-report span:nth-child(2) {
    width: 78%;
}

.mini-report span:nth-child(3) {
    width: 58%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.testimonial-card {
    position: relative;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(24, 24, 24, 0.48) 48%, rgba(7, 7, 7, 0.94)),
        var(--black-soft);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 218, 122, 0.62);
    box-shadow: 0 30px 78px rgba(0, 0, 0, 0.38), 0 0 46px rgba(212, 175, 55, 0.14);
}

.quote-mark {
    position: absolute;
    right: 22px;
    top: 92px;
    z-index: -1;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: clamp(6rem, 10vw, 9rem);
    line-height: 0.8;
    opacity: 0.13;
    pointer-events: none;
}

.testimonial-logo {
    min-height: 118px;
    display: grid;
    place-items: center;
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 235, 235, 0.92));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.testimonial-logo img {
    max-width: 100%;
    max-height: 82px;
    display: block;
    object-fit: contain;
}

.testimonial-logo .logo-iuri {
    width: 100%;
    height: 92px;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

.testimonial-logo .logo-3md {
    width: 100%;
    height: 96px;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

.testimonial-logo-placeholder {
    color: rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.035);
}

.testimonial-logo-placeholder span {
    color: rgba(244, 218, 122, 0.78);
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-meta {
    display: grid;
    gap: 14px;
}

.testimonial-meta h3 {
    margin-bottom: 6px;
    color: var(--white);
    font-size: 1.32rem;
}

.testimonial-meta span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

.verified-badge {
    width: max-content;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 999px;
    color: var(--gold-light) !important;
    background: rgba(212, 175, 55, 0.1);
    font-size: 0.76rem !important;
    font-weight: 800;
}

.stars {
    color: var(--gold);
    letter-spacing: 0.1em;
    font-size: 1rem;
    line-height: 1;
}

.testimonial-line {
    width: 100%;
    height: 1px;
    display: block;
    background: linear-gradient(90deg, rgba(244, 218, 122, 0.78), rgba(212, 175, 55, 0.22), transparent);
}

.testimonial-card p {
    flex: 1;
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 4px;
}

.testimonial-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
}

.testimonial-card footer span {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.92rem;
}

.cta {
    background:
        radial-gradient(circle at 82% 30%, rgba(212, 175, 55, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 246, 246, 1));
}

.cta-box {
    padding: clamp(36px, 7vw, 76px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        var(--black);
    color: var(--white);
    text-align: center;
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.18);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid rgba(244, 218, 122, 0.62);
    border-radius: 999px;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 54%, var(--gold-soft) 100%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), 0 0 0 6px rgba(212, 175, 55, 0.11);
    font-size: 0.9rem;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 0 8px rgba(212, 175, 55, 0.13);
}

.cta-box h2 {
    max-width: 820px;
    margin: 0 auto 18px;
}

.cta-box p {
    max-width: 650px;
    margin: 0 auto 30px;
}

.footer {
    padding: 70px 0 28px;
    background: #070707;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 38px;
}

.footer h3 {
    font-size: 0.98rem;
    margin-bottom: 16px;
}

.footer p {
    max-width: 360px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.58);
}

.footer a,
.footer span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.58);
    transition: color 0.25s ease;
}

.footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom span {
    color: rgba(255, 255, 255, 0.48);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes frameArrival {
    from {
        opacity: 0;
        transform: perspective(1200px) rotateY(-9deg) rotateX(4deg) translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(0) scale(1);
    }
}

@keyframes premiumDrift {
    0%, 100% {
        transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(0);
    }
    50% {
        transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-10px);
    }
}

@keyframes frameArrivalFlat {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileDrift {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes cinematicSheen {
    0%, 42% {
        transform: translateX(-48%) rotate(8deg);
        opacity: 0;
    }
    52% {
        opacity: 1;
    }
    70%, 100% {
        transform: translateX(48%) rotate(8deg);
        opacity: 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.48;
        transform: scale(0.92);
    }
    50% {
        opacity: 0.86;
        transform: scale(1.08);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@keyframes softReveal {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes resultPulse {
    from {
        opacity: 0.4;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 8px;
        padding: 20px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: rgba(11, 11, 11, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu a {
        padding: 12px;
    }

    .hero-grid,
    .feature-layout,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-visual {
        min-height: 560px;
        margin-top: 18px;
    }

    .cinematic-frame {
        width: min(100%, 620px);
        aspect-ratio: 1.18;
        transform: none;
        animation: frameArrivalFlat 0.9s ease both, mobileDrift 8s ease-in-out 1s infinite;
    }

    .float-card:nth-child(1) {
        top: 5%;
        left: 3%;
    }

    .float-card:nth-child(2) {
        top: 8%;
        right: 3%;
    }

    .float-card:nth-child(3) {
        top: auto;
        left: 3%;
        bottom: 24%;
    }

    .float-card:nth-child(4) {
        right: 3%;
        bottom: 24%;
    }

    .float-card:nth-child(5) {
        left: 8%;
        bottom: 7%;
    }

    .float-card:nth-child(6) {
        right: 8%;
        bottom: 7%;
    }

    .card-grid,
    .pain-grid,
    .results-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section,
    .section-dark {
        padding: 78px 0;
    }

    .navbar {
        min-height: 74px;
    }

    .nav-menu {
        top: 74px;
        left: 14px;
        right: 14px;
    }

    .brand {
        gap: 10px;
    }

    .brand span:last-child {
        max-width: 172px;
        font-size: 0.82rem;
    }

    .hero {
        min-height: auto;
        padding-top: 108px;
    }

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

    .trust-row,
    .stats,
    .card-grid,
    .pain-grid,
    .results-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
        padding-bottom: 18px;
    }

    .cinematic-frame {
        width: 100%;
        aspect-ratio: 0.92;
        border-radius: 18px;
    }

    .cinematic-frame::before {
        inset: 9px;
        border-radius: 12px;
    }

    .visual-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 16px;
    }

    .floating-stack {
        position: relative;
        inset: auto;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 14px;
    }

    .float-card,
    .float-card:nth-child(n) {
        position: static;
        width: 100%;
        max-width: none;
        display: inline-flex;
        justify-content: center;
        text-align: center;
        padding: 11px 12px;
        font-size: 0.78rem;
        animation: softReveal 0.7s ease both;
    }

    .feature-item {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 420px;
    }

    .pain-closing {
        padding: 22px;
        text-align: left;
    }

    .trust-badges {
        display: grid;
        grid-template-columns: 1fr;
    }

    .trust-badges span {
        justify-content: center;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 50px;
        padding: 0 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
