/* ============================================
   VARIÁVEIS E RESET - ESTILO OMENS PREMIUM
   ============================================ */

:root {
    /* Paleta de Cores */
    --blue-deep: #0A1C2E;
    --blue-clinic: #12406A;
    --white-clinic: #F7F9FA;
    --gold-premium: #C9A86A;
    --gold-bright: #E5C68A;
    --gray-900: #1A1A1A;
    --gray-600: #4D4D4D;
    --gray-300: #D9D9D9;
    --bg-primary: #1D3019;
    --bg-secondary: #0f1f0f;
    
    /* Tipografia */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transições Premium */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Container */
    --container-max: 1400px;
    
    /* Efeitos Modernos */
    --glow-gold: 0 0 40px rgba(201, 168, 106, 0.4), 0 0 80px rgba(201, 168, 106, 0.2);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 106, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--gray-900);
    background: var(--bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

/* Cursor personalizado moderno */
.custom-cursor {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(201, 168, 106, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, width 0.2s, height 0.2s, border-color 0.2s;
    transform: translate(-50%, -50%);
    display: none;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-premium);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease-out;
    transform: translate(-50%, -50%);
    display: none;
}

/* Mostrar cursor personalizado apenas em desktop */
@media (min-width: 769px) {
    .custom-cursor {
        display: block;
    }
    
    .custom-cursor-dot {
        display: block;
    }
}

/* Cursor hover será controlado via JavaScript */

/* Background animado com gradiente */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 168, 106, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 28, 46, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(29, 48, 25, 0.4) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   TIPOGRAFIA PREMIUM - ESTILO OMENS
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    letter-spacing: -0.04em;
}

.section-title {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: left;
    margin-bottom: 5rem;
    color: var(--white-clinic);
    letter-spacing: -0.05em;
    line-height: 1.05;
    max-width: 90%;
}

/* ============================================
   NAVBAR MINIMALISTA
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.466);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    backdrop-filter: blur(30px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 168, 106, 0.1);
    transition: var(--transition);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 168, 106, 0.3) 50%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: block;
    height: 40px;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: rgba(247, 249, 250, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:not(.btn-nav) {
    position: relative;
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-premium), var(--gold-bright));
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--white-clinic);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 0.75rem 2rem;
    background: var(--gold-premium);
    color: var(--blue-deep) !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    background: linear-gradient(135deg, #D4B582 0%, var(--gold-premium) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(201, 168, 106, 0.4), 0 0 20px rgba(201, 168, 106, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white-clinic);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION - ESTILO OMENS
   ============================================ */

.hero {
    background: rgba(0, 0, 0, 0.81);
    color: var(--white-clinic);
    padding: 200px 0 180px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 28, 46, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Partículas flutuantes no hero */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.4) 0%, transparent 70%);
    animation: floatParticle 15s ease-in-out infinite;
}

.particle-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle-4 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 30%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle-5 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    right: 10%;
    animation-delay: 8s;
    animation-duration: 19s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -100px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -30px) scale(1.05);
        opacity: 0.6;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    opacity: 0.7;
    filter: grayscale(20%) brightness(0.75) contrast(1.3);
    transition: var(--transition-slow);
    min-width: 100%;
    min-height: 100%;
}

.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 25%;
    opacity: 0.65;
    filter: grayscale(20%) brightness(0.75) contrast(1.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.37) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.15) 60%, transparent 80%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 55%;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--white-clinic);
    letter-spacing: -0.06em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 106, 0.2);
    background: linear-gradient(135deg, var(--white-clinic) 0%, rgba(201, 168, 106, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 400;
    color: rgba(247, 249, 250, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 85%;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}


/* ============================================
   BOTÕES PREMIUM
   ============================================ */

.btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-premium {
    background: linear-gradient(135deg, var(--gold-premium) 0%, var(--gold-bright) 100%);
    color: var(--blue-deep);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    box-shadow: 0 8px 24px rgba(201, 168, 106, 0.4), 0 0 20px rgba(201, 168, 106, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 106, 0.3);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-premium) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 168, 106, 0.5), 0 0 30px rgba(201, 168, 106, 0.3);
}

.btn-premium:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
}

/* ============================================
   SEÇÕES GERAIS - ESPAÇAMENTOS GENEROSOS
   ============================================ */

.section {
    padding: 180px 0;
    position: relative;
}

/* Efeito de brilho sutil nas seções */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 168, 106, 0.2) 20%, 
        rgba(201, 168, 106, 0.4) 50%, 
        rgba(201, 168, 106, 0.2) 80%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.section.revealed::before {
    opacity: 1;
    animation: sectionGlow 3s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

/* ============================================
   SEÇÃO 1: REALIDADE MÉDICA
   ============================================ */

.section-reality {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0f1f0f 100%);
    padding: 200px 0;
    position: relative;
}

.section-reality::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section-reality .section-title {
    max-width: 70%;
    margin-bottom: 2.5rem;
}

.reality-content {
    max-width: 1000px;
}

.bullets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: rgba(247, 249, 250, 0.9);
    line-height: 1.7;
    padding: 1.5rem 0;
    position: relative;
    transition: var(--transition);
    cursor: default;
}

.bullet-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold-premium), var(--gold-bright));
    border-radius: 2px;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.bullet-item:hover::before {
    height: 60%;
    opacity: 1;
}

.bullet-item:hover {
    color: var(--white-clinic);
    padding-left: 1.5rem;
    transform: translateX(10px);
}

.bullet-item:hover .bullet-icon {
    color: var(--gold-bright);
    transform: scale(1.2);
}

.bullet-icon {
    color: var(--gold-premium);
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 300;
    opacity: 0.8;
}

.reality-cta {
    text-align: left;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-premium);
    max-width: 75%;
    line-height: 1.4;
    font-family: var(--font-heading);
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 106, 0.2);
    margin-top: 2rem;
}

/* ============================================
   SEÇÃO 2: PARA QUEM É
   ============================================ */

.section-target {
    background: linear-gradient(180deg, #0f1f0f 0%, #0A1C2E 100%);
    color: var(--white-clinic);
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}

/* Imagem de fundo do médico */
.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
    filter: grayscale(30%) brightness(0.6);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 31, 15, 0.92) 0%, rgba(10, 28, 46, 0.93) 100%);
    z-index: 1;
    pointer-events: none;
}

.section-target .container {
    position: relative;
    z-index: 2;
}

.section-target .section-title {
    color: var(--white-clinic);
    max-width: 75%;
    margin-bottom: 2.5rem;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.target-card {
    background: rgba(247, 249, 250, 0.04);
    border: 1px solid rgba(247, 249, 250, 0.1);
    border-radius: 32px;
    padding: 4.5rem;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.target-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-premium), transparent);
    opacity: 0;
    transition: var(--transition);
}

.target-card:hover {
    background: rgba(247, 249, 250, 0.08);
    border-color: rgba(201, 168, 106, 0.5);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 106, 0.2);
}

.target-card:hover::after {
    width: 300px;
    height: 300px;
}

.target-card:hover::before {
    opacity: 1;
}

.card-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white-clinic);
    letter-spacing: -0.03em;
}

.card-text {
    font-size: 1.125rem;
    color: rgba(247, 249, 250, 0.7);
    line-height: 1.8;
}

.target-cta {
    text-align: center;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-premium);
    font-family: var(--font-heading);
    padding-top: 4rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(201, 168, 106, 0.2);
    letter-spacing: -0.02em;
}

/* ============================================
   SEÇÃO 3: O QUE NOS TORNA ÚNICOS
   ============================================ */

.section-different {
    background: linear-gradient(180deg, #0A1C2E 0%, var(--bg-primary) 100%);
    padding: 200px 0;
    position: relative;
}

.section-different .section-title {
    max-width: 70%;
    margin-bottom: 2.5rem;
}

.features-grid-2x3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: rgba(247, 249, 250, 0.9);
    font-weight: 600;
    padding: 1.5rem 0;
    transition: var(--transition);
    cursor: default;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold-premium), var(--gold-bright));
    border-radius: 2px;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.feature-item:hover::before {
    height: 60%;
    opacity: 1;
}

.feature-item:hover {
    color: var(--white-clinic);
    padding-left: 1.5rem;
    transform: translateX(10px);
}

.feature-item:hover .check-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(201, 168, 106, 0.4));
}

.check-icon {
    flex-shrink: 0;
    transition: var(--transition);
}

/* ============================================
   SEÇÃO 4: MÉTODO PSYDOC
   ============================================ */

.section-method {
    background: linear-gradient(180deg, #0f1f0f 0%, #0A1C2E 100%);
    color: var(--white-clinic);
    padding: 200px 0;
    position: relative;
}

.section-method .section-title {
    color: var(--white-clinic);
    max-width: 60%;
    text-align: left;
}

.method-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
}

.method-card {
    background: rgba(247, 249, 250, 0.04);
    border: 1px solid rgba(247, 249, 250, 0.1);
    border-radius: 32px;
    padding: 4.5rem;
    transition: var(--transition);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.method-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-premium), transparent);
    opacity: 0;
    transition: var(--transition);
}

.method-card:hover {
    background: rgba(247, 249, 250, 0.08);
    border-color: rgba(201, 168, 106, 0.5);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 106, 0.2);
}

.method-card:hover::after {
    width: 300px;
    height: 300px;
}

.method-card:hover::before {
    opacity: 1;
}

.method-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold-premium);
    margin-bottom: 1.5rem;
    opacity: 0.4;
    letter-spacing: -0.05em;
    line-height: 1;
    transition: var(--transition);
    text-shadow: 0 0 20px rgba(201, 168, 106, 0.3);
}

.method-card:hover .method-number {
    opacity: 0.7;
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(201, 168, 106, 0.5);
}

.method-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white-clinic);
    letter-spacing: -0.03em;
}

.method-text {
    font-size: 1.125rem;
    color: rgba(247, 249, 250, 0.7);
    line-height: 1.8;
}

/* ============================================
   SEÇÃO 5: BENEFÍCIOS VIP
   ============================================ */

.section-benefits {
    background: linear-gradient(180deg, #0A1C2E 0%, var(--bg-primary) 100%);
    padding: 200px 0;
    position: relative;
}

.section-benefits .section-title {
    text-align: left;
    max-width: 60%;
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 4rem;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-premium), transparent);
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: rgba(201, 168, 106, 0.5);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 106, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-card:hover::after {
    width: 300px;
    height: 300px;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 2rem;
    color: var(--gold-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(201, 168, 106, 0.3));
}

.benefit-card:hover .benefit-icon {
    color: var(--gold-bright);
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(201, 168, 106, 0.5));
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.15) rotate(5deg);
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
}

.benefit-title {
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--white-clinic);
}

/* ============================================
   SEÇÃO 6: DEPOIMENTO
   ============================================ */

.section-testimonial {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0A1C2E 100%);
    color: var(--white-clinic);
    padding: 220px 0;
    position: relative;
    overflow: hidden;
}

.section-testimonial::before {
    content: '"';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    font-family: var(--font-heading);
    color: rgba(201, 168, 106, 0.05);
    pointer-events: none;
    line-height: 1;
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-carousel {
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-container-vertical {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(201, 168, 106, 0.1);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201, 168, 106, 0.2);
    touch-action: pan-y;
}

.carousel-track-vertical {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide-vertical {
    min-height: 100%;
    width: 100%;
    flex-shrink: 0;
    opacity: 0.4;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.95);
    position: relative;
}

.carousel-slide-vertical.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 32px;
    aspect-ratio: 9/16;
}

/* Skeleton do Vídeo */
.video-skeleton {
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, rgba(29, 48, 25, 0.8) 0%, rgba(10, 28, 46, 0.6) 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-skeleton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.2), transparent);
    animation: skeletonShimmer 2s infinite;
}

@keyframes skeletonShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.skeleton-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 1;
    color: rgba(201, 168, 106, 0.6);
}

.skeleton-placeholder svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(201, 168, 106, 0.3));
}

.skeleton-placeholder span {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(201, 168, 106, 0.8);
    font-family: var(--font-body);
}

.carousel-btn-vertical {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 168, 106, 0.9);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--blue-deep);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 106, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.carousel-btn-vertical:hover {
    background: var(--gold-bright);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 28px rgba(201, 168, 106, 0.6), 0 0 30px rgba(201, 168, 106, 0.4);
}

.carousel-prev-vertical {
    left: 20px;
}

.carousel-next-vertical {
    right: 20px;
}

.carousel-indicators-vertical {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 10;
}

.carousel-dot-vertical {
    width: 40px;
    height: 10px;
    border-radius: 20px;
    border: 2px solid rgba(201, 168, 106, 0.4);
    background: rgba(201, 168, 106, 0.2);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot-vertical.active {
    background: linear-gradient(90deg, var(--gold-premium), var(--gold-bright));
    border-color: var(--gold-premium);
    width: 60px;
    box-shadow: 0 0 20px rgba(201, 168, 106, 0.5);
}

.carousel-dot-vertical:hover {
    background: rgba(201, 168, 106, 0.5);
    border-color: var(--gold-premium);
}

.testimonial-content {
    text-align: left;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--white-clinic);
    margin-bottom: 2.5rem;
    font-style: normal;
    letter-spacing: -0.05em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 168, 106, 0.1);
    animation: testimonialGlow 4s ease-in-out infinite;
}

@keyframes testimonialGlow {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 168, 106, 0.1);
    }
    50% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 168, 106, 0.2);
    }
}

.testimonial-author {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--gold-premium);
    font-style: normal;
    text-shadow: 0 2px 10px rgba(201, 168, 106, 0.3);
    transition: var(--transition);
}

.testimonial-content:hover .testimonial-author {
    color: var(--gold-bright);
    transform: translateY(-5px);
}

/* ============================================
   SEÇÃO 7: CTA FINAL
   ============================================ */

.section-cta {
    background: linear-gradient(180deg, #0A1C2E 0%, var(--bg-primary) 100%);
    padding: 220px 0;
    position: relative;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white-clinic);
    margin-bottom: 3rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 168, 106, 0.15);
    background: linear-gradient(135deg, var(--white-clinic) 0%, rgba(201, 168, 106, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ctaGlow 3s ease-in-out infinite;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-email-input {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-family: var(--font-body);
    background: rgba(247, 249, 250, 0.1);
    border: 2px solid rgba(201, 168, 106, 0.3);
    border-radius: 50px;
    color: var(--white-clinic);
    outline: none;
    transition: var(--transition);
}

.cta-email-input::placeholder {
    color: rgba(247, 249, 250, 0.6);
}

.cta-email-input:focus {
    background: rgba(247, 249, 250, 0.15);
    border-color: var(--gold-premium);
    box-shadow: 0 0 20px rgba(201, 168, 106, 0.3);
}

@media (min-width: 768px) {
    .cta-form {
        flex-direction: row;
        align-items: center;
    }
    
    .cta-email-input {
        flex: 1;
    }
    
    .cta-form .btn {
        flex-shrink: 0;
    }
}

@keyframes ctaGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.15);
    }
}

/* ============================================
   RODAPÉ MINIMALISTA
   ============================================ */

.footer {
    background: var(--gray-900);
    color: var(--white-clinic);
    padding: 4rem 0;
    text-align: center;
}

.footer-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white-clinic);
    margin-bottom: 0.75rem;
}

.footer-text-small {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(201, 168, 106, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-premium);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.footer-link:hover::after {
    width: 100%;
}

.footer-separator {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--gold-premium);
    color: var(--blue-deep);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 8px 24px rgba(201, 168, 106, 0.3);
    font-family: var(--font-body);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-premium) 100%);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 32px rgba(201, 168, 106, 0.5), 0 0 20px rgba(201, 168, 106, 0.3);
    animation: scrollTopPulse 1.5s ease-in-out infinite;
}

@keyframes scrollTopPulse {
    0%, 100% {
        box-shadow: 0 12px 32px rgba(201, 168, 106, 0.5), 0 0 20px rgba(201, 168, 106, 0.3);
    }
    50% {
        box-shadow: 0 12px 32px rgba(201, 168, 106, 0.7), 0 0 30px rgba(201, 168, 106, 0.5);
    }
}

.scroll-top:not(.visible) {
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Ripple Effect */
.btn-premium {
    position: relative;
    overflow: hidden;
}

.btn-premium .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    .section-title {
        max-width: 85%;
    }
}

@media (max-width: 968px) {
    .hero-content {
        max-width: 90%;
        text-align: left;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-image {
        order: -1;
    }
    
    .hero-placeholder {
        transform: none;
    }

    .cards-grid-3 {
        grid-template-columns: 1fr;
    }

    .method-cards {
        grid-template-columns: 1fr;
    }

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

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

    .features-grid-2x3 {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        text-align: left;
        max-width: 100%;
    }
    
    .section-reality .section-title,
    .section-different .section-title,
    .section-benefits .section-title {
        max-width: 100%;
    }
    
    .reality-cta {
        text-align: left;
        max-width: 100%;
    }
    
    .target-cta {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.79);
        -webkit-backdrop-filter: blur(30px);
        backdrop-filter: blur(30px);
        padding: 3rem 2rem;
        gap: 2rem;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .section {
        padding: 100px 0;
    }
    
    .section-reality {
        padding: 80px 0;
    }
    
    .section-reality .section-title {
        margin-bottom: 1.5rem;
    }
    
    .bullets-grid {
        gap: 1rem 0;
        margin-bottom: 1.5rem;
        padding: 1rem 0;
    }
    
    .bullet-item {
        padding: 1rem 0;
        font-size: clamp(1.1rem, 4vw, 1.3rem);
    }
    
    .reality-cta {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image-bg {
        width: 100%;
        right: 0;
        opacity: 0.5;
        border-radius: 0;
        overflow: hidden;
        border: none;
        box-shadow: none;
        clip-path: none;
        height: 100%;
    }
    
    .hero-video {
        object-position: center center;
        opacity: 0.7;
        border-radius: 0;
        height: 100%;
        transform: scale(1);
        width: 100%;
    }
    
    .hero-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.37) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.15) 60%, transparent 80%);
        border-radius: 0;
    }
    
    /* Indicativo de swipe */
    .hero-buttons::after {
        content: 'Role para baixo ↓';
        position: absolute;
        top: calc(100% + 2rem);
        left: 50%;
        transform: translateX(-50%);
        color: rgba(201, 168, 106, 0.9);
        font-size: 0.875rem;
        font-weight: 500;
        z-index: 10;
        animation: scrollHint 2s ease-in-out infinite;
        pointer-events: none;
        white-space: nowrap;
    }
    
    @keyframes scrollHint {
        0%, 100% {
            opacity: 0.6;
            transform: translateX(-50%) translateY(0);
        }
        50% {
            opacity: 1;
            transform: translateX(-50%) translateY(10px);
        }
    }
    
    /* Padronização de títulos no mobile */
    .section-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 8.5vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .card-title,
    .method-title {
        font-size: clamp(1.5rem, 5.5vw, 1.75rem);
        margin-bottom: 1rem;
    }
    
    .benefit-title {
        font-size: clamp(1.25rem, 4.5vw, 1.5rem);
    }
    
    .cta-title {
        font-size: clamp(2.25rem, 9vw, 3rem);
    }
    
    .btn-premium {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .btn-large {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .testimonial-content {
        text-align: center;
        order: -1;
    }
    
    .testimonial-carousel {
        order: 1;
        height: 400px;
    }
    
    .carousel-container-vertical {
        border-radius: 24px;
    }
    
    .carousel-btn-vertical {
        width: 44px;
        height: 44px;
    }
    
    .carousel-prev-vertical {
        left: 15px;
    }
    
    .carousel-next-vertical {
        right: 15px;
    }
    
    .carousel-indicators-vertical {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
    }
    
    .carousel-dot-vertical {
        width: 30px;
        height: 8px;
    }
    
    .carousel-dot-vertical.active {
        width: 45px;
    }
    
    .video-skeleton {
        border-radius: 24px;
    }
    
    .skeleton-placeholder svg {
        width: 60px;
        height: 60px;
    }
    
    .skeleton-placeholder span {
        font-size: 1rem;
    }
    
    .target-card,
    .method-card,
    .benefit-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .cards-grid-3 {
        gap: 1.5rem;
    }
    
    .method-cards {
        gap: 1.5rem;
    }
    
    .benefits-grid {
        gap: 1.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-text {
        font-size: clamp(0.95rem, 3.5vw, 1rem);
        line-height: 1.6;
    }
    
    .method-number {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .method-text {
        font-size: clamp(0.95rem, 3.5vw, 1rem);
        line-height: 1.6;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .floating-particles {
        display: none;
    }
}

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

    .section {
        padding: 80px 0;
    }
    
    .section-reality {
        padding: 60px 0;
    }
    
    /* Padronização de títulos no mobile pequeno */
    .section-title {
        font-size: clamp(1.75rem, 7.5vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .section-reality .section-title {
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8.5vw, 2.75rem);
        line-height: 1.1;
    }
    
    .card-title,
    .method-title {
        font-size: clamp(1.4rem, 5vw, 1.65rem);
    }
    
    .benefit-title {
        font-size: clamp(1.15rem, 4vw, 1.4rem);
    }
    
    .cta-title {
        font-size: clamp(2rem, 8.5vw, 2.75rem);
    }
    
    .bullets-grid {
        gap: 0.75rem 0;
        margin-bottom: 1.25rem;
        padding: 0.75rem 0;
    }
    
    .bullet-item {
        padding: 0.75rem 0;
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        line-height: 1.5;
    }
    
    .bullet-icon {
        font-size: 2rem;
    }
    
    .reality-cta {
        padding-top: 1.25rem;
        margin-top: 1.25rem;
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        line-height: 1.3;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4.5vw, 1rem);
    }
    
    .hero-image-bg {
        width: 100%;
        right: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        clip-path: none;
        height: 100%;
    }
    
    .hero-video {
        object-position: center center;
        opacity: 0.7;
        border-radius: 0;
        height: 100%;
        transform: scale(1);
        width: 100%;
    }
    
    .hero-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.37) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.15) 60%, transparent 80%);
        border-radius: 0;
    }
    
    .hero-buttons {
        position: relative;
    }
    
    .hero-buttons::after {
        content: 'Role para baixo ↓';
        position: absolute;
        top: calc(100% + 1.5rem);
        left: 50%;
        transform: translateX(-50%);
        color: rgba(201, 168, 106, 0.9);
        font-size: 0.8rem;
        font-weight: 500;
        z-index: 10;
        animation: scrollHint 2s ease-in-out infinite;
        pointer-events: none;
        white-space: nowrap;
        width: 100%;
        text-align: center;
    }
    
    @keyframes scrollHint {
        0%, 100% {
            opacity: 0.6;
            transform: translateX(-50%) translateY(0);
        }
        50% {
            opacity: 1;
            transform: translateX(-50%) translateY(8px);
        }
    }
    
    .target-card,
    .method-card {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .cards-grid-3 {
        gap: 1.25rem;
    }
    
    .method-cards {
        gap: 1.25rem;
    }
    
    .benefits-grid {
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-title,
    .method-title {
        font-size: clamp(1.4rem, 5vw, 1.65rem);
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .card-text,
    .method-text {
        font-size: clamp(0.875rem, 3.5vw, 0.95rem);
        line-height: 1.5;
    }
    
    .method-number {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .benefit-title {
        font-size: clamp(1.15rem, 4vw, 1.4rem);
        line-height: 1.3;
    }
    
    /* Desabilitar efeitos de hover em mobile para melhor performance */
    .target-card:hover,
    .method-card:hover,
    .benefit-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .bullets-grid,
    .features-grid-2x3 {
        gap: 2rem 0;
    }
    
    .bullet-item,
    .feature-item {
        font-size: clamp(1.1rem, 4vw, 1.25rem);
        padding: 1.5rem 0;
    }
    
    .testimonial-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonial-content {
        text-align: center;
        order: -1;
    }
    
    .testimonial-carousel {
        order: 1;
    }
    
    .testimonial-text {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .cta-title {
        font-size: clamp(2rem, 8.5vw, 2.75rem);
    }
    
    .nav-wrapper {
        padding: 1rem 0;
    }
    
    .logo {
        height: 35px;
    }
}
