/* ============================================
   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(29, 48, 25, 0.85);
    -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: var(--bg-primary);
    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: 65%;
    height: 100%;
    overflow: hidden;
}

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

.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, var(--bg-primary) 0%, rgba(29, 48, 25, 0.75) 35%, rgba(29, 48, 25, 0.5) 50%, rgba(29, 48, 25, 0.3) 65%, transparent 85%);
    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%;
}

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

.bullets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    margin-bottom: 6rem;
    padding: 4rem 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: 2rem 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: 3rem;
    border-top: 1px solid rgba(201, 168, 106, 0.2);
    margin-top: 4rem;
}

/* ============================================
   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%;
}

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

.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(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;
}

.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%;
}

.features-grid-2x3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 5rem;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 4rem 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: 500;
    padding: 2rem 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%;
}

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

.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-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--white-clinic);
    margin-bottom: 4rem;
    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: 5rem;
    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;
}

@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);
}

/* ============================================
   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(29, 48, 25, 0.98);
        -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;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image-bg {
        width: 55%;
        right: -5%;
        opacity: 0.5;
        border-radius: 20px 0 0 20px;
        overflow: hidden;
        border: 3px solid rgba(201, 168, 106, 0.3);
        border-right: none;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(201, 168, 106, 0.1);
        clip-path: inset(0 0 5% 0);
        height: 95%;
    }
    
    .hero-video {
        object-position: 40% 25%;
        opacity: 0.65;
        border-radius: 17px 0 0 17px;
        height: 105%;
        transform: scale(1.1) translateY(-2%);
    }
    
    .hero-overlay {
        background: linear-gradient(to right, var(--bg-primary) 0%, rgba(29, 48, 25, 0.85) 35%, rgba(29, 48, 25, 0.65) 55%, rgba(29, 48, 25, 0.45) 70%, transparent 100%);
        border-radius: 20px 0 0 20px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .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;
    }
    
    .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-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        margin-bottom: 1rem;
    }
    
    .card-text {
        font-size: clamp(0.95rem, 3.5vw, 1rem);
        line-height: 1.6;
    }
    
    .method-number {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .method-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        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;
    }
    
    .benefit-title {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    .floating-particles {
        display: none;
    }
}

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

    .section {
        padding: 80px 0;
    }
    
    .section-title {
        margin-bottom: 3rem;
        font-size: clamp(2rem, 8vw, 2.75rem);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4.5vw, 1rem);
    }
    
    .hero-image-bg {
        width: 50%;
        right: -3%;
        border-radius: 16px 0 0 16px;
        border: 2px solid rgba(201, 168, 106, 0.35);
        border-right: none;
        box-shadow: -8px 0 25px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(201, 168, 106, 0.1);
        clip-path: inset(0 0 8% 0);
        height: 92%;
    }
    
    .hero-video {
        object-position: 45% 25%;
        opacity: 0.6;
        border-radius: 14px 0 0 14px;
        height: 108%;
        transform: scale(1.1) translateY(-3%);
    }
    
    .hero-overlay {
        border-radius: 16px 0 0 16px;
    }
    
    .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.15rem, 5.5vw, 1.4rem);
        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(0.9rem, 4vw, 1.1rem);
        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-text {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .cta-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .nav-wrapper {
        padding: 1rem 0;
    }
    
    .logo {
        height: 35px;
    }
}
