/* ================= VARIÁVEIS DE IDENTIDADE & PSICOLOGIA ================= */
:root {
    /* Cores Base Escuras (Autoridade, Segurança, Poder) */
    --bg-dark: #1F2937; 
    --bg-darker: #0d121c;
    
    /* Cores Claras (Paz de espírito, Clareza, Organização) */
    --bg-light: #FCFCFD; 
    --text-light: #F8FAFC;
    --text-dark: #1e2532; 
    --text-muted-dark: #475569; 
    --text-muted-light: #cbd5e1;
    
    /* Cores de Sotaque (Acolhimento & Alto Valor) */
    --accent-blush: #EBCDCF; 
    --accent-blush-glow: rgba(235, 205, 207, 0.15);
    --gold-premium: #D4AF37; 
    --gold-dark: #B8860B; 
    --gold-glow: rgba(212, 175, 55, 0.25);
    
    /* Tipografia */
    --font-title: 'Cormorant Garamond', serif;
    --font-text: 'Inter', sans-serif;
    
    /* Curvas de Transição Luxuosas */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ================= CUSTOMIZAÇÃO PREMIUM GERAL ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customizada Premium */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-premium); }

/* Seleção de Texto Customizada */
::selection { background: var(--gold-premium); color: var(--bg-darker); }

body.no-scroll-init, body.no-scroll { overflow: hidden; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
.section-padding { padding: 130px 0; }

/* ================= PRELOADER ================= */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--bg-darker);
    z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.brand-loader {
    font-family: var(--font-title); font-size: 2.2rem; color: var(--text-light);
    margin-bottom: 20px; letter-spacing: 2px;
}
.loader-line {
    width: 180px; height: 1px; background: rgba(255, 255, 255, 0.05);
    position: relative; overflow: hidden;
}
.loader-line::after {
    content: ''; position: absolute; left: -50%; top: 0; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-premium), transparent);
    animation: loadingLine 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes loadingLine { 0% { left: -50%; } 100% { left: 100%; } }

/* ================= HEADER ================= */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 30px 0; z-index: 1000;
    border-bottom: 1px solid transparent; transition: var(--transition-smooth);
}
.header.scrolled {
    background: rgba(13, 18, 28, 0.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-title); font-size: 1.8rem; font-weight: 700; letter-spacing: 1.5px; z-index: 1001; position: relative; }
.gold-dot { color: var(--gold-premium); text-shadow: 0 0 10px var(--gold-glow); }
.nav-menu ul { list-style: none; display: flex; align-items: center; gap: 35px; }
.nav-menu a { font-size: 0.8rem; font-weight: 400; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted-light); }
.nav-menu a:hover { color: var(--gold-premium); text-shadow: 0 0 15px var(--gold-glow); }

.nav-btn-premium { 
    display: flex; align-items: center; gap: 8px; 
    border: 1px solid rgba(212, 175, 55, 0.4); padding: 10px 24px; 
    color: var(--gold-premium) !important; border-radius: 50px; 
    background: rgba(212, 175, 55, 0.05);
}
.nav-btn-premium:hover { 
    background-color: var(--gold-premium); color: var(--bg-darker) !important; 
    box-shadow: 0 0 20px var(--gold-glow);
}
.menu-toggle { display: none; font-size: 2rem; cursor: pointer; color: var(--text-light); z-index: 1001; position: relative; transition: var(--transition-smooth); }

/* ================= HERO SECTION ================= */
.bg-image-ready {
    background-image: url('img/hero.jpg'); 
    background-size: cover; background-position: center; position: relative;
}
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(13, 18, 28, 0.5) 0%, rgba(13, 18, 28, 0.95) 100%); z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 950px; opacity: 0; }
.hero-title { 
    font-family: var(--font-title); font-size: 4.5rem; font-weight: 400; 
    line-height: 1.1; margin-bottom: 25px; color: var(--text-light); 
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.hero-subtitle { font-size: 1.15rem; font-weight: 300; color: var(--text-muted-light); max-width: 700px; margin: 0 auto 40px; line-height: 1.8; }
.hero-divider {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 12vh; background: linear-gradient(to bottom, var(--gold-premium), transparent); z-index: 2;
    opacity: 0.6;
}

/* BOTÃO PRINCIPAL */
.btn-premium {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 20px 50px; background-color: var(--accent-blush); color: var(--bg-darker);
    font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 3px;
    border-radius: 3px; position: relative; transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(235, 205, 207, 0.2); animation: pulseButtonGlow 3s infinite;
    overflow: hidden; white-space: nowrap;
}
.btn-premium::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition-slow);
}
.btn-premium i { font-size: 1.3rem; transition: transform 0.4s ease; }
.btn-premium:hover { 
    background-color: var(--gold-premium); 
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4); transform: translateY(-3px); 
}
.btn-premium:hover::after { left: 100%; transition: 0.7s ease-in-out; }
.btn-premium:hover i { transform: translateX(6px); }

@keyframes pulseButtonGlow {
    0% { box-shadow: 0 0 15px rgba(235, 205, 207, 0.2); }
    50% { box-shadow: 0 0 35px rgba(235, 205, 207, 0.5); }
    100% { box-shadow: 0 0 15px rgba(235, 205, 207, 0.2); }
}

/* ================= COMPONENTES GERAIS ================= */
.section-title { font-family: var(--font-title); font-size: 3.2rem; font-weight: 600; line-height: 1.2; margin-bottom: 20px; }
.gold-line { width: 80px; height: 2px; background: linear-gradient(90deg, var(--gold-premium), var(--gold-dark)); margin-bottom: 35px; border-radius: 2px; }
.highlight-text { font-size: 1.3rem; color: var(--gold-dark); font-family: var(--font-title); font-style: italic; letter-spacing: 0.5px; }
.text-center { text-align: center; }
.text-light { color: var(--text-light); }
.text-light-muted { color: var(--text-muted-light); }
.gold-text { color: var(--gold-premium); text-shadow: 0 2px 10px rgba(212,175,55,0.2); }
.center-line { margin: 0 auto 40px auto; }
.italic-text { font-style: italic; letter-spacing: 1px; }

/* ================= SESSÕES CLARAS (SOBRE, EXPERIÊNCIA, VIVÊNCIA) ================= */
.sobre, .experiencia-bio, .vivencia { 
    background-color: var(--bg-light); 
    color: var(--text-dark); position: relative; overflow: hidden; 
}
.experiencia-bio { background-image: radial-gradient(circle at right top, var(--accent-blush-glow) 0%, transparent 40%); }

.sobre-container, .experiencia-container, .vivencia-container { display: grid; gap: 80px; align-items: center; }
.sobre-container, .vivencia-container { grid-template-columns: 1fr 1fr; }
.experiencia-container { grid-template-columns: 5fr 7fr; }

.profile-img, .bio-img-container, .profile-img-2 {
    width: 100%; border-radius: 2px; position: relative; z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.profile-img { height: 600px; }
.bio-img-container { height: 650px; }
.profile-img-2 { height: 600px; box-shadow: -30px 30px 60px rgba(0,0,0,0.06); }

.image-overlay-light {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(30, 37, 50, 0.1), transparent);
}
.bio-img-frame {
    position: absolute; top: -25px; left: -25px; width: 100%; height: 100%;
    border: 1px solid var(--gold-dark); z-index: 1; transition: var(--transition-slow);
}
.experiencia-image-wrapper:hover .bio-img-frame { transform: translate(15px, 15px); }
.experiencia-image-wrapper { position: relative; padding-left: 20px; padding-bottom: 20px; }

.section-text { font-size: 1.05rem; color: var(--text-muted-dark); line-height: 1.8; margin-bottom: 20px; }
.bold-name { font-size: 1.25rem; color: var(--text-dark); font-weight: 600; letter-spacing: 0.5px; }

/* Listas Claras */
.experiencia-lista-box { margin: 35px 0; padding-left: 20px; border-left: 2px solid var(--gold-glow); }
.experiencia-lista { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.experiencia-lista li { display: flex; align-items: center; gap: 15px; font-size: 1.1rem; color: var(--text-muted-dark); }
.linha-ponto { width: 8px; height: 8px; background: var(--gold-dark); border-radius: 50%; box-shadow: 0 0 10px rgba(212, 175, 55, 0.6); }

.experiencia-conclusao {
    background: linear-gradient(135deg, var(--bg-light), #fdf8f9); 
    padding: 30px; border-radius: 4px; border-left: 3px solid var(--accent-blush);
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
}

.vivencia-list { list-style: none; margin: 35px 0; }
.vivencia-list li {
    display: flex; align-items: center; gap: 20px; font-size: 1.1rem; color: var(--text-muted-dark);
    margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,0.04); transition: var(--transition-smooth);
}
.vivencia-list li:hover { color: var(--gold-dark); transform: translateX(10px); border-bottom-color: var(--gold-glow); }
.vivencia-list li i { font-size: 2rem; color: var(--gold-dark); }
.vivencia-content { padding-right: 30px; }

/* ================= SESSÕES ESCURAS (VISÃO & ATUAÇÃO) ================= */
.visao, .atuacao {
    position: relative; background-color: var(--bg-darker); 
    border-top: 1px solid rgba(255,255,255,0.02);
}
.visao {
    background-image: url('https://images.unsplash.com/photo-1505664177941-be01dc7bf504?q=80&w=2000&auto=format&fit=crop'); 
    background-size: cover; background-position: center; background-attachment: fixed;
}
.visao-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(13, 18, 28, 0.98) 0%, rgba(31, 41, 55, 0.92) 100%); z-index: 1;
}
.visao-container, .atuacao-container { position: relative; z-index: 2; }
.visao-header, .atuacao-header { max-width: 800px; margin: 0 auto 60px auto; }

/* Cards Premium */
.visao-grid, .atuacao-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px;
}
.visao-card, .atuacao-card {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px; padding: 45px 30px; text-align: center; transition: var(--transition-smooth);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    position: relative; overflow: hidden;
}
.visao-card::before, .atuacao-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-premium), transparent);
    transform: scaleX(0); transition: var(--transition-smooth); opacity: 0.8;
}
.visao-card:hover, .atuacao-card:hover {
    border-color: rgba(212, 175, 55, 0.3); background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 -5px 20px var(--gold-glow);
}
.visao-card:hover::before, .atuacao-card:hover::before { transform: scaleX(1); }

.card-icon i, .card-icon-large i {
    font-size: 3.2rem; color: var(--gold-premium); margin-bottom: 25px;
    transition: var(--transition-smooth); filter: drop-shadow(0px 4px 10px rgba(212,175,55,0.2));
}
.visao-card:hover .card-icon i, .atuacao-card:hover .card-icon-large i { transform: scale(1.1) translateY(-5px); }

.card-title, .card-title-gold { font-family: var(--font-title); font-size: 1.5rem; color: var(--text-light); margin-bottom: 15px; }
.card-title-gold { color: var(--gold-premium); }
.card-description { font-size: 0.95rem; color: var(--text-muted-light); line-height: 1.7; }

.badge-premium {
    display: inline-block; padding: 6px 20px; border: 1px solid var(--gold-premium);
    color: var(--gold-premium); font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 3px; border-radius: 50px; margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.05); box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ================= SESSÃO: COMO FUNCIONA (JORNADA) ================= */
.como-funciona { background-color: var(--bg-light); color: var(--text-dark); border-top: 1px solid rgba(0,0,0,0.02); }
.como-funciona-header { max-width: 800px; margin: 0 auto 70px auto; }
.badge-dark { border-color: var(--text-dark); color: var(--text-dark); background: transparent; }
.passos-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.passo-card {
    position: relative; padding: 50px 30px; border-top: 1px solid rgba(0,0,0,0.06); border-right: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition-smooth); z-index: 1; overflow: hidden;
}
.passo-card:last-child { border-right: none; }
.passo-card::after {
    content: ''; position: absolute; top: -1px; left: 0; width: 100%; height: 3px;
    background: var(--gold-dark); transform: scaleX(0); transform-origin: left; transition: transform 0.6s ease; z-index: 3;
}
.passo-card:hover { background: linear-gradient(180deg, var(--accent-blush-glow) 0%, transparent 100%); }
.passo-card:hover::after { transform: scaleX(1); }

.passo-numero {
    position: absolute; top: 15px; right: 20px; font-family: var(--font-title); font-size: 7rem; font-weight: 700;
    color: rgba(31, 41, 55, 0.04); line-height: 1; z-index: -1; transition: var(--transition-slow);
}
.passo-card:hover .passo-numero { color: rgba(212, 175, 55, 0.15); transform: scale(1.1); }
.passo-conteudo { position: relative; z-index: 2; margin-top: 50px; }
.passo-titulo { font-family: var(--font-title); font-size: 1.6rem; color: var(--text-dark); margin-bottom: 15px; }
.passo-desc { font-size: 1.05rem; color: var(--text-muted-dark); }

/* ================= FOOTER & BOTÕES FLUTUANTES ================= */
.footer { background-color: #080b12; color: var(--text-light); padding-top: 80px; border-top: 1px solid rgba(212,175,55,0.1); }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-desc { color: var(--text-muted-light); font-size: 0.95rem; }
.social-links { display: flex; gap: 15px; }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; color: var(--text-light); font-size: 1.2rem;
}
.social-links a:hover { background: var(--gold-premium); border-color: var(--gold-premium); color: var(--bg-darker); transform: translateY(-5px); }
.footer-title { font-family: var(--font-title); font-size: 1.3rem; margin-bottom: 15px; color: var(--text-light); }
.gold-line-small { width: 40px; height: 2px; background: var(--gold-dark); margin-bottom: 25px; }
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.footer-links a, .footer-contact a, .footer-contact span { color: var(--text-muted-light); transition: var(--transition-smooth); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-premium); padding-left: 8px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; }
.footer-contact i { color: var(--gold-premium); font-size: 1.4rem; }
.footer-bottom { padding: 25px 0; background: rgba(0,0,0,0.4); font-size: 0.85rem; color: rgba(255,255,255,0.4); }

.floating-btn {
    position: fixed; right: 30px; width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 2rem; z-index: 999;
    cursor: pointer; transition: var(--transition-smooth); box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.float-whatsapp {
    bottom: 30px; background: linear-gradient(135deg, var(--gold-premium), var(--gold-dark)); color: var(--bg-darker);
    animation: pulseWhatsapp 2.5s infinite;
}
.float-whatsapp:hover { transform: scale(1.1) rotate(-5deg); color: #fff; box-shadow: 0 15px 35px var(--gold-glow); }
@keyframes pulseWhatsapp { 0% { box-shadow: 0 0 0 0 var(--gold-glow); } 70% { box-shadow: 0 0 0 15px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.float-to-top {
    bottom: 110px; background: var(--bg-darker); color: var(--gold-premium); border: 1px solid rgba(212,175,55,0.3);
    opacity: 0; visibility: hidden; transform: translateY(20px);
}
.float-to-top.show-btn { opacity: 1; visibility: visible; transform: translateY(0); }
.float-to-top:hover { background: var(--gold-premium); color: var(--bg-darker); transform: translateY(-5px); }

/* ========================================================= */
/* ================= RESPONSIVO ESTRUTURAL ================= */
/* ========================================================= */

/* TABLETS E TELAS MÉDIAS */
@media (max-width: 992px) {
    .experiencia-container, .sobre-container, .vivencia-container { 
        grid-template-columns: 1fr; 
        gap: 50px; 
        text-align: center; 
    }
    
    /* Reordena texto e imagem */
    .experiencia-image-wrapper { order: 1; max-width: 500px;  padding-left: 0; }
    .profile-img-2 { order: 1; }
    
    .experiencia-content, .sobre-content, .vivencia-content { order: 2; padding-right: 0; }
    
    .gold-line { margin-left: auto; margin-right: auto; }
    
    .experiencia-lista-box { border-left: none; padding-left: 0; }
    .experiencia-lista { align-items: center; }
    .vivencia-list li { justify-content: center; text-align: left; }
    .experiencia-conclusao { text-align: left; }
    
    .passos-grid { grid-template-columns: repeat(2, 1fr); }
    .passo-card:nth-child(2) { border-right: none; }
    .passo-card:nth-child(3), .passo-card:nth-child(4) { border-top: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
    
    .footer-container { grid-template-columns: 1fr 1fr; }
}

/* SMARTPHONES E TELAS PEQUENAS */
@media (max-width: 768px) {
    .section-padding { padding: 80px 0; }
    
    /* Correção da Hero Section (Para não sobrepor o texto) */
    .hero { height: auto; min-height: 100vh; padding: 180px 0 100px 0; } 
    .hero-title { font-size: 2.6rem; }
    .hero-subtitle { font-size: 1rem; padding: 0 15px; }
    
    .section-title { font-size: 2.3rem; }
    
    /* Menu Full Screen */
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
        background: rgba(13, 18, 28, 0.98); backdrop-filter: blur(20px);
        display: flex; justify-content: center; align-items: center;
        opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
    }
    .nav-menu.active { opacity: 1; pointer-events: auto; }
    .nav-menu ul { flex-direction: column; gap: 40px; text-align: center; }
    .nav-menu a { font-size: 1.2rem; }
    
    /* Redimensionamento das Imagens (Crucial para não quebrar a tela) */
    .profile-img { height: 350px; }
    .bio-img-container { height: 400px; }
    .profile-img-2 { height: 350px; }
    .bio-img-frame { top: -15px; left: -15px; } /* Ajuste da moldura */
    
    /* Botão Principal */
    .btn-premium { width: 100%; max-width: 280px; padding: 16px 20px; font-size: 0.8rem; }
    
    /* Remove fundo fixo que trava o iOS */
    .visao { background-attachment: scroll; }
    
    /* Timeline em 1 coluna */
    .passos-grid { grid-template-columns: 1fr; }
    .passo-card { border-right: none !important; border-bottom: none !important; border-left: 2px solid rgba(0,0,0,0.06); padding: 30px 20px 30px 40px; }
    .passo-card::after { top: 0; left: -2px; width: 2px; height: 100%; transform: scaleY(0); transform-origin: top; }
    .passo-card:hover::after { transform: scaleY(1); }
    .passo-numero { top: 50%; transform: translateY(-50%); font-size: 4.5rem; right: 10px; }
    .passo-conteudo { margin-top: 0; }
    
    /* Footer */
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .gold-line-small { margin: 0 auto 25px auto; }
    .social-links, .footer-contact li { justify-content: center; }
    .footer-links a:hover { padding-left: 0; }
    
    /* Botões Flutuantes */
    .floating-btn { right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
    .float-whatsapp { bottom: 20px; }
    .float-to-top { bottom: 85px; }
}

/* ========================================================= */
/* ================= RESPONSIVO ESTRUTURAL ================= */
/* ========================================================= */

/* (Mantenha o @media (max-width: 992px) que já tem e cole este novo por baixo) */

/* SMARTPHONES E TELAS PEQUENAS (CORREÇÃO DA LISTRA) */
@media (max-width: 768px) {
    .section-padding { padding: 80px 0; }
    
    /* 1. Remove a listra decorativa vertical da Hero que atravessava o texto */
    .hero-divider { display: none; }
    
    /* Ajuste de espaço da Hero para o texto respirar */
    .hero { height: auto; min-height: 100vh; padding: 150px 0 80px 0; } 
    .hero-title { font-size: 2.5rem; margin-top: 20px; }
    .hero-subtitle { font-size: 1rem; padding: 0 10px; }
    
    .section-title { font-size: 2.2rem; }
    
    /* Menu Full Screen */
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
        background: rgba(13, 18, 28, 0.98); backdrop-filter: blur(20px);
        display: flex; justify-content: center; align-items: center;
        opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
    }
    .nav-menu.active { opacity: 1; pointer-events: auto; }
    .nav-menu ul { flex-direction: column; gap: 40px; text-align: center; }
    .nav-menu a { font-size: 1.2rem; }
    
    /* 2. Ajuste fino das imagens para a moldura dourada não vazar/atravessar a tela */
    .profile-img { height: 350px; }
    .bio-img-container { height: 400px; width: 92%; margin: 0 auto; }
    .profile-img-2 { height: 350px; }
    
    /* Prende a moldura dentro do ecrã */
    .experiencia-image-wrapper { padding-left: 10px; padding-top: 15px; } 
    .bio-img-frame { top: -10px; left: -10px; } 
    
    /* Botão Principal Centralizado */
    .btn-premium { width: 100%; max-width: 280px; padding: 16px 20px; font-size: 0.8rem; }
    
    /* Remove fundo fixo que trava o sistema iOS (iPhone) */
    .visao { background-attachment: scroll; }
    
    /* 3. Correção da Jornada - Remove a linha dourada que trava com o toque no telemóvel */
    .passos-grid { grid-template-columns: 1fr; }
    .passo-card { 
        border-right: none !important; 
        border-bottom: none !important; 
        border-left: 2px solid rgba(0,0,0,0.06); 
        padding: 30px 20px 30px 40px; 
    }
    .passo-card::after { display: none !important; } /* AQUI MATAMOS A LISTRA BUGADA */
    .passo-numero { top: 50%; transform: translateY(-50%); font-size: 4.5rem; right: 10px; }
    .passo-conteudo { margin-top: 0; }
    
    /* Footer e Rodapé */
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .gold-line-small { margin: 0 auto 25px auto; }
    .social-links, .footer-contact li { justify-content: center; }
    .footer-links a:hover { padding-left: 0; }
    
    /* Botões Flutuantes (WhatsApp) */
    .floating-btn { right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
    .float-whatsapp { bottom: 20px; }
    .float-to-top { bottom: 85px; }
}

/* ================================================= */
    /* === CORREÇÃO DEFINITIVA DOS BOTÕES NO MOBILE ==== */
    /* ================================================= */
    
    /* Garante que a área à volta do botão tem margem e não encosta no ecrã */
    .hero-action {
        width: 100%;
        padding: 0 15px; 
    }

    /* O Botão Principal */
    .btn-premium { 
        width: 100%; 
        max-width: 100%; /* Remove a limitação rígida */
        padding: 16px 15px; /* Reduz o preenchimento interno */
        font-size: 0.8rem; /* Fonte ajustada para mobile */
        letter-spacing: 1px; /* Reduz o espaço entre as letras para caber melhor */
        white-space: normal; /* FUNDAMENTAL: Permite que o texto quebre de linha se o ecrã for muito pequeno, em vez de vazar */
        text-align: center;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .btn-premium i {
        font-size: 1.2rem;
    }

    /* O Botão do Menu Mobile (Agendar Consulta) */
    .nav-btn-premium {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* ================= EFEITOS DO MENU PREMIUM ================= */
.nav-menu ul { 
    list-style: none; 
    display: flex; 
    align-items: center; 
    gap: 25px; /* Reduzimos o gap para caberem mais itens no Desktop de forma elegante */
}

.nav-link { 
    font-size: 0.75rem; 
    font-weight: 400; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    color: var(--text-muted-light); 
    position: relative; /* Necessário para a linha animada */
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Efeito de Linha Dourada que cresce ao passar o rato (Desktop) */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--gold-premium);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover { 
    color: var(--text-light); 
    text-shadow: 0 0 15px var(--gold-glow); 
}

.nav-link:hover::after {
    width: 100%;
}

/* Esconde o contacto extra no Desktop */
.mobile-only-contact { 
    display: none; 
}

/* ================= BOTÃO PRINCIPAL (DESKTOP) ================= */
.btn-premium {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px;
    
    /* Ajuste elegante do tamanho no Desktop */
    padding: 18px 40px; 
    width: fit-content; /* GARANTE QUE O BOTÃO NÃO FICA ESTICADO */
    margin: 0 auto; /* Ajuda a centralizar na secção */
    
    background-color: var(--accent-blush); 
    color: var(--bg-darker);
    font-weight: 600; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    letter-spacing: 2.5px;
    border-radius: 3px; 
    position: relative; 
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(235, 205, 207, 0.2); 
    animation: pulseButtonGlow 3s infinite;
    overflow: hidden; 
    white-space: nowrap;
}

.btn-premium::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition-slow);
}
.btn-premium i { font-size: 1.3rem; transition: transform 0.4s ease; }
.btn-premium:hover { 
    background-color: var(--gold-premium); 
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4); transform: translateY(-3px); 
}
.btn-premium:hover::after { left: 100%; transition: 0.7s ease-in-out; }
.btn-premium:hover i { transform: translateX(6px); }