/* Paleta Automotiva High-Ticket */
:root {
    --bg-dark-base: #110B17;   
    --bg-purple-dark: #191224; 
    --gold-aurora: #CBA461;    
    --gold-hover: #E3BE79;
    --text-white: #F8FAFC;
    --text-muted: #94A3B8;
    
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark-base);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-title); font-weight: 600; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 120px 0; }
.text-center { text-align: center; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.mt-20 { margin-top: 20px; display: inline-block; }
.mt-10 { margin-top: 10px; font-size: 0.85rem; color: var(--text-muted); }

.bg-purple-dark { background-color: var(--bg-purple-dark); }
.linha-dourada { width: 50px; height: 2px; background-color: var(--gold-aurora); margin: 25px 0; }
.linha-dourada.center { margin: 25px auto; }
.overline { color: var(--gold-aurora); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; display: block; margin-bottom: 10px; }

/* --- CONTROLE DA LOGO NOVA (Redimensionamento e Transparência) --- */
.logo-link { display: flex; align-items: center; }
.logo-img { 
    height: 130px; /* Redimensionado para o header */
    width: auto; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: all 0.4s ease;
}

/* Quando o header fica sólido ao rolar */
header.scrolled .logo-img { 
    height: 100px; /* Diminui levemente no scroll para não ocupar espaço */
}

/* Logo no Footer (um pouco maior para destaque) */
.footer-logo-img {
    height: 150px;
    margin-bottom: -20px;
    margin-left: -15px;
}

/* Header Glassmorphism */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background-color: transparent; padding: 15px 0;
    transition: all 0.5s ease;
}
header.scrolled {
    background-color: rgba(25, 18, 36, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-content { display: flex; justify-content: space-between; align-items: center; }

.navbar ul { display: flex; list-style: none; gap: 35px; }
.nav-link { position: relative; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); transition: 0.3s; font-weight: 500; }
.nav-link:hover { color: var(--text-white); }
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 50%;
    width: 0; height: 1px; background-color: var(--gold-aurora);
    transition: all 0.3s ease; transform: translateX(-50%);
}
.nav-link:hover::after { width: 100%; }

/* Botões */
.btn-gold {
    display: inline-block; background-color: var(--gold-aurora); color: var(--bg-dark-base);
    padding: 14px 32px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; border-radius: 2px; transition: all 0.4s ease; border: none; cursor: pointer;
    position: relative; overflow: hidden;
}
.btn-gold:hover { background-color: var(--gold-hover); transform: translateY(-2px); }

.btn-outline-gold {
    display: inline-block; border: 1px solid var(--gold-aurora); color: var(--gold-aurora);
    padding: 12px 28px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; border-radius: 2px; transition: all 0.3s;
}
.btn-outline-gold:hover { background-color: var(--gold-aurora); color: var(--bg-dark-base); }

.btn-hover-shine::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); transition: 0s;
}
.btn-hover-shine:hover::before { left: 150%; transition: 0.8s ease; }

.btn-header { padding: 10px 24px; font-size: 0.8rem; }
.menu-toggle { display: none; font-size: 1.5rem; color: var(--gold-aurora); cursor: pointer; }

/* Hero Section */
.hero { height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top: -5%; left: -5%; width: 110%; height: 110%; background-size: cover; background-position: center; }
.slow-zoom { animation: slowZoom 25s linear infinite alternate; }
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(17, 11, 23, 0.95) 0%, rgba(25, 18, 36, 0.6) 100%); }
.hero-content { position: relative; z-index: 10; max-width: 850px; }
.hero h1 { font-size: 3.8rem; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; font-weight: 800; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; max-width: 650px; }

.cascade-1, .cascade-2, .cascade-3 { opacity: 0; transform: translateY(30px); animation: fadeUpHero 1s forwards ease-out; }
.cascade-1 { animation-delay: 0.2s; }
.cascade-2 { animation-delay: 0.6s; }
.cascade-3 { animation-delay: 1s; }
@keyframes fadeUpHero { to { opacity: 1; transform: translateY(0); } }

/* Sobre e Marca D'água */
.relative-overflow { position: relative; overflow: hidden; }
.marca-dagua {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--font-title); font-size: 40vw; font-weight: 800;
    color: rgba(203, 164, 97, 0.03); z-index: 0; pointer-events: none;
}
.sobre .container { position: relative; z-index: 2; }
.section-title { font-size: 2.8rem; letter-spacing: -0.5px; }
.texto-destaque { font-size: 1.4rem; color: var(--text-white); margin-bottom: 20px; font-weight: 500; }
.texto-apoio { color: var(--text-muted); max-width: 750px; margin: 0 auto; font-size: 1.1rem; }

/* Timeline */
.timeline-container { position: relative; margin-top: 80px; padding-top: 20px; }
.timeline-line { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background-color: rgba(255,255,255,0.05); }
.timeline-progress { position: absolute; top: 0; left: 0; width: 0; height: 2px; background-color: var(--gold-aurora); transition: width 2.5s cubic-bezier(0.25, 1, 0.5, 1); }
.timeline-container.active .timeline-progress { width: 100%; }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 30px; }
.timeline-step { position: relative; padding-top: 20px; opacity: 0; transform: translateY(20px); transition: all 0.8s ease; }
.timeline-container.active .timeline-step { opacity: 1; transform: translateY(0); }
.timeline-container.active .step-delay-1 { transition-delay: 0.5s; }
.timeline-container.active .step-delay-2 { transition-delay: 1.0s; }
.timeline-container.active .step-delay-3 { transition-delay: 1.5s; }
.timeline-container.active .step-delay-4 { transition-delay: 2.0s; }
.step-dot { position: absolute; top: -35px; left: 0; width: 12px; height: 12px; background-color: var(--bg-dark-base); border: 2px solid var(--gold-aurora); border-radius: 50%; }

/* Consultores VIP */
.grid-2-cols { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; }
.lista-beneficios { list-style: none; margin-bottom: 30px; }
.lista-beneficios li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; color: var(--text-white); }
.lista-beneficios i { color: var(--gold-aurora); }
.grafico-box { background: var(--bg-purple-dark); border: 1px solid rgba(203, 164, 97, 0.2); padding: 50px; border-radius: 4px; text-align: center; }
.icone-grande { font-size: 4rem; color: var(--gold-aurora); margin-bottom: 25px; }

/* Portfólio */
.grid-3-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.card-atuacao { position: relative; height: 480px; overflow: hidden; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); cursor: pointer; transition: transform 0.4s ease; }
.card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.8s ease; }
.card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 30px; background: linear-gradient(to top, rgba(17, 11, 23, 1) 0%, rgba(17, 11, 23, 0) 100%); }
.card-atuacao:hover { transform: translateY(-10px); }
.card-atuacao:hover .card-bg { transform: scale(1.08); }
.card-atuacao:hover p { opacity: 1; transform: translateY(0); }
.card-atuacao p { opacity: 0; transform: translateY(10px); transition: 0.4s; font-size: 0.9rem;}

/* Formulário e Contato */
.form-wrapper { background-color: var(--bg-purple-dark); padding: 50px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); }
.floating-group { position: relative; margin-bottom: 35px; }
.floating-input, .floating-select { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 12px 0; color: var(--text-white); font-family: var(--font-body); font-size: 1rem; outline: none; }
.floating-label { position: absolute; top: 12px; left: 0; color: var(--text-muted); transition: all 0.3s ease; pointer-events: none; }
.floating-input:focus ~ .floating-label, .floating-input:not(:placeholder-shown) ~ .floating-label, .floating-select:focus ~ .floating-label, .floating-select:valid ~ .floating-label { top: -18px; font-size: 0.75rem; color: var(--gold-aurora); text-transform: uppercase; letter-spacing: 1px; }
.floating-input:focus, .floating-select:focus { border-bottom-color: var(--gold-aurora); }
.floating-select { color: var(--text-white); appearance: none; -webkit-appearance: none; }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 20px; }
.footer-links a { display: block; margin-bottom: 10px; color: var(--text-muted); font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--gold-aurora); }
.footer-copy { display: flex; justify-content: space-between; font-size: 0.8rem; color: #666; }

/* Animações Globais */
.scroll-animate { opacity: 0; transform: translateY(40px); transition: all 1s ease; }
.scroll-animate.visible { opacity: 1; transform: translateY(0); }
.fade-up { transition-delay: 0.1s; }
.scale-up { transform: scale(0.95); transition: all 0.8s; }
.visible.scale-up { transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }

/* Responsividade Mobile */
@media (max-width: 900px) {
    .section-padding { padding: 80px 0; }
    .grid-2-cols, .grid-3-cols, .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .linha-dourada { margin: 25px auto; }
    .hero h1 { font-size: 2.8rem; }
    .menu-toggle { display: block; }
    .btn-header { display: none; }
    .logo-img { height: 80px; }
    .footer-logo-img { height: 100px; }
    .navbar { position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--bg-purple-dark); display: none; padding: 20px 0; }
    .navbar.active { display: block; }
    .navbar ul { flex-direction: column; align-items: center; gap: 20px; }
    .timeline-line, .timeline-progress { display: none; }
    .timeline-grid { grid-template-columns: 1fr; padding-left: 20px; border-left: 1px solid var(--gold-aurora); text-align: left; }
    .step-dot { left: -26px; top: 5px; }
    .footer-copy { flex-direction: column; gap: 10px; }
}
.grid-faq { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.faq-item { background: var(--bg-purple-dark); padding: 30px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); }
.faq-item h4 { color: var(--gold-aurora); margin-bottom: 10px; }
.faq-item p { color: var(--text-muted); font-size: 0.95rem; }
.icon-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 500; color: var(--text-white); }
.icon-item i { color: var(--gold-aurora); }
.card-link {
    text-decoration: none; /* Remove o sublinhado */
    color: inherit;        /* Garante que o texto mantenha a cor original */
    display: block;        /* Faz com que o link preencha a área do cartão */
}