/* ========================================
   ATERNA PREMIUM FILMS — LANDING PAGE CSS
   ======================================== */

/* === FONT FACE === */
@font-face {
    font-family: 'Allumi Std Extended';
    src: url('allumi-std-extended.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* === CSS VARIABLES === */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0D0D0D;
    --bg-card: #111111;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #8B6914;
    --white: #F5F5F0;
    --gray: #BBBBBB;
    --gray-secondary: #888880;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-brand: 'Allumi Std Extended', 'Inter', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s var(--ease-out-expo);
    --transition-med: 0.6s var(--ease-out-expo);
    --transition-slow: 0.9s var(--ease-out-expo);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.7;
}

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

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

/* === CURSOR CUSTOMIZADO === */
.cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.6;
}

.cursor-dot.hover,
.cursor-ring.hover {
    width: 16px;
    height: 16px;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold-light);
    opacity: 0.4;
}

/* === BARRA DE PROGRESSO === */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 10002;
    width: 0%;
    box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(201, 168, 76, 0.3);
    transition: width 0.05s linear;
}

/* === GRÃO CINEMATOGRÁFICO === */
/* DESATIVADO: causava cintilação (flickering) em todos os navegadores */
.film-grain {
    display: none !important;
}

@keyframes grain {

    0%,
    100% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-5%, -10%);
    }

    20% {
        transform: translate(-15%, 5%);
    }

    30% {
        transform: translate(7%, -25%);
    }

    40% {
        transform: translate(-5%, 25%);
    }

    50% {
        transform: translate(-15%, 10%);
    }

    60% {
        transform: translate(15%, 0%);
    }

    70% {
        transform: translate(0%, 15%);
    }

    80% {
        transform: translate(3%, 35%);
    }

    90% {
        transform: translate(-10%, 10%);
    }
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === EYEBROW === */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* === SEÇÕES === */
.section {
    padding: 120px 0;
    position: relative;
}

.section-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 60px;
    line-height: 1.7;
}

/* === BOTÕES === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 16px 36px;
    border-radius: 2px;
    cursor: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    transform: translateX(-101%);
    transition: transform 0.5s var(--ease-out-expo);
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
    color: var(--bg-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(245, 245, 240, 0.2);
}

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

.btn-lg {
    padding: 20px 48px;
    font-size: 11px;
}

.btn-nav {
    padding: 12px 28px;
    font-size: 10px;
}

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    backface-visibility: hidden;
    transform: translateZ(0);
    /* Aceleração de hardware anti-flicker */
}

/* Grão já desativado globalmente */

.nav.scrolled {
    background: rgba(5, 5, 5, 0.98);
    /* Fundo mais sólido para compensar a falta do blur */
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    will-change: transform, background-color;
    /* Aviso para a GPU */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 28px;
    width: auto;
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}

.nav-logo:hover .nav-logo-img {
    opacity: 1;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 120px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-lens-flare {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 201, 106, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: lensFlare 4s ease-in-out infinite;
}

@keyframes lensFlare {

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

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    will-change: transform, opacity;
    /* Estabiliza o parallax */
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-credibility {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    opacity: 0.7;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    text-align: center;
    animation: fadeInScroll 1.5s ease-out 2.5s both;
}

@keyframes fadeInScroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }
}

/* === REVEAL ANIMATION === */
.reveal-element {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.reveal-left {
    transform: translateX(-40px) translateY(0);
    opacity: 0;
}

.reveal-left.revealed {
    transform: translateX(0) translateY(0);
    opacity: 1;
}

.reveal-right {
    transform: translateX(40px) translateY(0);
    opacity: 0;
}

.reveal-right.revealed {
    transform: translateX(0) translateY(0);
    opacity: 1;
}

/* === SEÇÃO DOR === */
.section-dor {
    background: var(--bg-secondary);
}

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

.card-dor {
    background: var(--bg-card);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.card-dor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}

.card-dor:hover::before {
    transform: scaleX(1);
}

.card-dor:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    transform: translate(-50%, -50%);
}

.card-dor:hover .card-glow {
    opacity: 1;
}

.card-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.08);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.35;
}

.card-text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* === SEÇÃO TRANSIÇÃO SCROLL === */
.section-scroll-transition {
    height: 300vh;
    position: relative;
}

.scroll-transition-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scroll-transition-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    transition: transform 0.1s linear;
}

.scroll-phrases {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-phrase {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
    width: max(280px, 80vw);
    max-width: 800px;
    padding: 0 24px;
    box-sizing: border-box;
}

.scroll-phrase.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Partículas */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp var(--duration) linear infinite;
    animation-delay: var(--delay);
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    15% {
        opacity: 0.6;
    }

    85% {
        opacity: 0.6;
    }

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

/* === SEÇÃO SOLUÇÃO === */
.section-solucao {
    background: var(--bg-primary);
}

.solucao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.solucao-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.solucao-text p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.solucao-destaque {
    color: var(--gold) !important;
    font-style: italic;
    font-size: 1.1rem;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin: 32px 0 !important;
}

.solucao-text .btn {
    margin-top: 12px;
}

/* Pilares */
.solucao-pilares {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pilar {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border-left: 2px solid rgba(201, 168, 76, 0.2);
    transition: all var(--transition-fast);
}

.pilar:hover {
    background: rgba(17, 17, 17, 0.8);
    border-left-color: var(--gold);
    background-image: linear-gradient(90deg, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
}

.pilar-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pilar-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--white);
}

.pilar-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* === SEÇÃO TIAGO === */
.section-tiago {
    background: var(--bg-secondary);
}

.tiago-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.photo-frame {
    position: relative;
    aspect-ratio: 1;
    max-width: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
    mix-blend-mode: overlay;
}

/* Cantos decorativos cinematográficos */
.corner-mark {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--gold);
    border-style: solid;
    border-width: 0;
    opacity: 0.5;
}

.corner-tl {
    top: 12px;
    left: 12px;
    border-top-width: 2px;
    border-left-width: 2px;
}

.corner-tr {
    top: 12px;
    right: 12px;
    border-top-width: 2px;
    border-right-width: 2px;
}

.corner-bl {
    bottom: 12px;
    left: 12px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.corner-br {
    bottom: 12px;
    right: 12px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

.tiago-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 28px;
}

.tiago-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.tiago-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-secondary);
}

/* === SEÇÃO DIAGNÓSTICO === */
.section-diagnostico {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.diagnostico-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.diagnostico-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.check-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--gray);
    line-height: 1.7;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gold);
    margin-top: 2px;
}

/* Formulário */
.form-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 40px;
    position: relative;
}

.form-card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.05) 0%, transparent 80%);
    pointer-events: none;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
    position: relative;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--gray-secondary);
    margin-bottom: 28px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-secondary);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
    background: rgba(201, 168, 76, 0.02);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 3px;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-secondary);
    text-align: center;
    margin-top: 16px;
}

/* === SEÇÃO FAQ === */
.section-faq {
    background: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.05rem;
    text-align: left;
    padding: 24px 0;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.4s var(--ease-out-expo);
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    padding-bottom: 24px;
    font-size: 0.95rem;
}

/* === CTA FINAL === */
.section-cta-final {
    padding: 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    animation: ctaPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.cta-sub {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.section-cta-final .btn {
    position: relative;
    z-index: 2;
}

.cta-footer {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    opacity: 0.5;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* === FOOTER === */
.footer {
    padding: 28px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

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

.footer-logo {
    font-family: var(--font-brand);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    opacity: 0.7;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--gray-secondary);
}

.footer-tag {
    font-size: 0.75rem;
    color: var(--gold);
    opacity: 0.5;
    font-style: italic;
}

/* === LINK DOURADO === */
.link-gold {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.link-gold:hover {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* === DOURADO SEPARADOR === */
.section+.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.3;
}

/* === RESPONSIVO === */
@media (max-width: 1024px) {
    .solucao-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .tiago-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tiago-photo {
        display: flex;
        justify-content: center;
    }

    .photo-frame {
        max-width: 320px;
    }

    .diagnostico-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

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

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 18px 32px;
        font-size: 10px;
        width: 100%;
        max-width: 360px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 28px 20px;
    }

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

    .scroll-phrase {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }

    .nav-container {
        padding: 16px 20px;
    }

    .nav-logo-img {
        height: 22px;
    }

    .btn-nav {
        padding: 10px 20px;
        font-size: 9px;
        letter-spacing: 2px;
    }

    .tiago-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* Esconder cursor customizado em mobile */
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    body {
        cursor: auto;
    }

    .btn,
    .faq-question {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-headline {
        font-size: 1.6rem;
    }

    .hero-credibility {
        font-size: 9px;
        letter-spacing: 2px;
    }
}