:root {
    --primary: #003C97;
    --primary-dark: #001A40; /* Azul Marinho Profundo - Substitui o Preto */
    --primary-light: #3366B2;
    --bg-light: #F0F5FA; /* Azul Gélido muito claro, super premium */
    --text-dark: #1A2530;
    --text-light: #5A6B7C;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --gold: #D4AF37; /* Dourado para estrelas e detalhes */
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; scroll-behavior: smooth; }

body { color: var(--text-dark); line-height: 1.6; background-color: var(--white); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-light-blue { color: #A0BCE0 !important; }
.mb-3 { margin-bottom: 15px; }
.mb-5 { margin-bottom: 50px; }
.mt-4 { margin-top: 30px; }
.mt-5 { margin-top: 50px; }

h1, h2, h3, h4 { color: var(--primary-dark); font-weight: 800; letter-spacing: -0.5px; }
.highlight-light { color: #66B2FF; }

/* Tipografia Premium */
.subtitle-small { display: block; font-size: 0.85rem; font-weight: 700; color: var(--primary); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: 3rem; margin-bottom: 15px; line-height: 1.1; }
.section-subtitle { font-size: 1.25rem; color: var(--text-light); max-width: 700px; margin: 0 auto; }

/* Botões Modernos */
.btn { display: inline-block; padding: 16px 32px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); cursor: pointer; border: 2px solid transparent; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;}
.btn-primary { background-color: var(--primary); color: var(--white); box-shadow: 0 10px 20px rgba(0, 60, 151, 0.3); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0, 26, 64, 0.4); }
.btn-large { padding: 20px 40px; font-size: 1.1rem; }

/* Header Glassmorphism */
.header-glass { background: rgba(0, 26, 64, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); position: fixed; width: 100%; top: 0; z-index: 1000; transition: all 0.4s ease; }
.header-glass.scrolled { background: rgba(0, 26, 64, 0.98); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.header-content { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.logo-img { max-height: 45px; width: auto; object-fit: contain; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.8); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--white); }
.btn-nav { background-color: var(--white) !important; color: var(--primary-dark) !important; padding: 12px 24px; border-radius: 50px; }
.btn-nav:hover { background-color: var(--bg-light) !important; transform: translateY(-2px); }
.menu-toggle { display: none; font-size: 26px; cursor: pointer; }

/* Hero Section High-End */
.hero { height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; position: relative; padding-top: 90px; text-align: center; }
.badge-premium { display: inline-block; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); padding: 8px 20px; border-radius: 50px; color: var(--white); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 30px; text-transform: uppercase; }
.hero h1 { color: var(--white); font-size: 4.5rem; margin-bottom: 25px; line-height: 1.05; letter-spacing: -2px; }
.hero p { font-size: 1.3rem; margin: 0 auto 40px; max-width: 700px; color: rgba(255,255,255,0.9); font-weight: 300; }

/* Fundos */
.bg-light { background-color: var(--bg-light); }
.bg-primary-dark { background-color: var(--primary-dark); }

.section { padding: 120px 0; }
.grid { display: grid; gap: 40px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Sobreposição (Overlap) - O Truque de Luxo */
.overlap-section { margin-top: -100px; position: relative; z-index: 10; border-top-left-radius: 40px; border-top-right-radius: 40px; padding-top: 100px; box-shadow: 0 -20px 50px rgba(0,0,0,0.05); }

/* Cards Premium */
.cards { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(0, 26, 64, 0.06); transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.02); }
.card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0, 60, 151, 0.12); }
.card-img-wrapper { overflow: hidden; height: 260px; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.card:hover .card-img { transform: scale(1.08); }
.card-body { padding: 40px 30px; }
.card-body h3 { margin-bottom: 15px; font-size: 1.4rem; }
.card-body p { color: var(--text-light); }

/* Sobre Nós - Layout Assimétrico */
.contato-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 80px;}
.dif-item { display: flex; gap: 25px; margin-bottom: 30px; align-items: flex-start;}
.icon-box { background: var(--bg-light); width: 60px; height: 60px; border-radius: 12px; display: flex; justify-content: center; align-items: center; font-size: 24px; color: var(--primary); flex-shrink: 0; }
.dif-item h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--primary-dark); }
.sobre-image-container { position: relative; }
.image-accent { position: absolute; width: 100%; height: 100%; border: 2px solid var(--primary); border-radius: 16px; top: -20px; right: -20px; z-index: 1; }
.img-premium { width: 100%; border-radius: 16px; position: relative; z-index: 2; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

/* Galeria / Portfólio */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.portfolio-item { overflow: hidden; border-radius: 12px; aspect-ratio: 4 / 3; position: relative; }
.portfolio-item::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,26,64,0.4), transparent); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.portfolio-item:hover::after { opacity: 1; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
.portfolio-item:hover img { transform: scale(1.05); }

/* Depoimentos Premium */
.testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;}
.testimonial-card { background: var(--white); padding: 50px 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0, 26, 64, 0.04); display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(0,0,0,0.03);}
.stars { color: var(--gold); margin-bottom: 25px; font-size: 16px; letter-spacing: 4px; }
.depoimento-texto { font-style: italic; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 30px; line-height: 1.8; }
.cliente-nome { font-size: 1rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

/* CTA Section */
.cta-section { padding: 100px 0 120px; }
.cta-p { max-width: 700px; margin: 0 auto 50px; font-size: 1.3rem; color: var(--text-light); }

/* Footer Deep Navy */
.footer-premium { background-color: var(--primary-dark); color: var(--text-light); padding: 80px 0 0; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #A0BCE0; text-decoration: none; transition: color 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: var(--white); }
.footer-social a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background: rgba(255,255,255,0.05); color: var(--white); border-radius: 50%; font-size: 18px; margin-right: 10px; transition: all 0.3s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 60px; font-size: 0.85rem; color: #708AB0; }

/* WhatsApp flutuante */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: var(--whatsapp); color: var(--white); border-radius: 50px; width: 65px; height: 65px; display: flex; justify-content: center; align-items: center; font-size: 35px; box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); z-index: 1000; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.whatsapp-float:hover { transform: scale(1.15); }

/* Animações Reveal */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsivo */
@media (max-width: 992px) {
    .contato-grid { grid-template-columns: 1fr; gap: 60px; }
    .image-accent { display: none; }
    .hero h1 { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .header-content { height: 80px; }
    .menu-toggle { display: block; }
    .nav-links { position: absolute; top: 80px; left: -100%; background-color: var(--primary-dark); width: 100%; flex-direction: column; padding: 40px 0; box-shadow: 0 20px 30px rgba(0,0,0,0.2); transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); gap: 20px;}
    .nav-links.active { left: 0; }
    .nav-links a { font-size: 16px; }
    .btn-nav { background-color: transparent !important; color: var(--white) !important; padding: 0; }
    .hero { min-height: 600px; padding-top: 80px; }
    .hero h1 { font-size: 2.8rem; letter-spacing: -1px; }
    .section-title { font-size: 2.4rem; }
    .overlap-section { margin-top: -50px; padding-top: 70px; border-top-left-radius: 30px; border-top-right-radius: 30px; }
}

/* Botões Fantasma (Outline Dark) */
.btn-outline-dark { display: inline-block; padding: 14px 28px; border-radius: 50px; font-weight: 700; text-decoration: none; border: 2px solid var(--primary-dark); color: var(--primary-dark); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; transition: all 0.3s; }
.btn-outline-dark:hover { background-color: var(--primary-dark); color: var(--white); transform: translateY(-3px); }

/* Links Elegantes com Seta (Link Arrow) - Estilo Arquitetura */
.link-arrow { display: inline-flex; align-items: center; color: var(--primary); font-weight: 700; text-decoration: none; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; margin-top: 15px; transition: all 0.3s; }
.link-arrow i { margin-left: 8px; font-size: 1rem; transition: transform 0.3s; }
.link-arrow:hover { color: var(--primary-dark); }
.link-arrow:hover i { transform: translateX(8px); } /* Efeito da seta empurrando pra frente */

.link-arrow-white { display: inline-flex; align-items: center; color: var(--white); font-weight: 700; text-decoration: none; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 1px; transition: all 0.3s; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 5px; }
.link-arrow-white i { margin-left: 10px; transition: transform 0.3s; }
.link-arrow-white:hover { color: #66B2FF; border-color: #66B2FF; }
.link-arrow-white:hover i { transform: translateX(8px); }

/* Inline Banner para Galeria */
.cta-inline-banner { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.cta-inline-banner h3 { color: var(--white); font-size: 1.5rem; margin: 0;}

.mt-3 { margin-top: 20px; }

/* --- NOVAS SEÇÕES (Corpo do Site) --- */

/* Grid 2 (Para a seção VS - Dor do Cliente) */
.grid-2 { grid-template-columns: 1fr 1fr; gap: 40px; }
.vs-box { padding: 40px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.05); text-align: left; }
.vs-bad { background: #FCFDFD; border-top: 4px solid #dc3545; }
.vs-good { background: var(--bg-light); border-top: 4px solid var(--whatsapp); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.vs-box h3 { font-size: 1.4rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.text-danger { color: #dc3545; }
.text-success { color: var(--whatsapp); }
.vs-list { list-style: none; }
.vs-list li { margin-bottom: 15px; padding-left: 25px; position: relative; color: var(--text-light); }
.vs-list li::before { content: '•'; position: absolute; left: 0; color: #ccc; font-size: 1.2rem; }
.vs-good .vs-list li { color: var(--text-dark); }
.vs-good .vs-list li::before { color: var(--whatsapp); }

/* Processo (Passo a Passo) */
.step-wrapper { text-align: center; }
.step-card { padding: 30px 20px; position: relative; z-index: 1; }
.step-number { width: 60px; height: 60px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px; border: 4px solid rgba(255,255,255,0.1); }
.step-card h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* FAQ Accordion High-End */
.faq-container { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.faq-header { position: sticky; top: 120px; }
.text-left { text-align: left; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.05); margin-bottom: 15px; padding-bottom: 5px; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; cursor: pointer; transition: color 0.3s; }
.faq-question h4 { font-size: 1.15rem; font-weight: 700; margin: 0; color: var(--text-dark); }
.faq-question i { color: var(--primary); transition: transform 0.4s ease; font-size: 14px; }
.faq-question:hover h4 { color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer p { color: var(--text-light); padding-bottom: 20px; }
.faq-item.active .faq-answer { max-height: 250px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Banner Inline Escuro (Galeria) */
.dark-banner { background: var(--primary-dark); }

/* --- CORREÇÕES DE RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 992px) {
    .faq-container { grid-template-columns: 1fr; gap: 30px; }
    .faq-header { position: relative; top: 0; text-align: center; }
}

@media (max-width: 768px) {
    /* Força todas as grids a ficarem em 1 coluna no celular */
    .grid, .grid-2, .grid-3 { grid-template-columns: 1fr !important; gap: 30px; }
    
    /* Ajustes Gerais de Espaçamento no Celular */
    .section { padding: 70px 0; }
    .container { padding: 0 15px; }
    
    /* Hero no Celular (Fontes menores para caber) */
    .hero { min-height: 650px; padding-top: 100px; }
    .hero h1 { font-size: 2.6rem; letter-spacing: -1px; line-height: 1.1; margin-bottom: 20px; }
    .hero p { font-size: 1.1rem; padding: 0 10px; margin-bottom: 30px;}
    
    /* Títulos Padrões no Celular */
    .section-title { font-size: 2.2rem; line-height: 1.2; }
    .section-subtitle { font-size: 1.1rem; }
    
    /* Botões 100% de largura no mobile para facilitar o clique com o polegar */
    .btn { display: block; width: 100%; text-align: center; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; }
    
    /* Menu Hamburger Correções */
    .header-content { height: 70px; }
    .logo-img { max-height: 40px; }
    .nav-links { position: absolute; top: 70px; left: -100%; background-color: var(--primary-dark); width: 100%; flex-direction: column; padding: 30px 0; box-shadow: 0 10px 10px rgba(0,0,0,0.1); transition: left 0.3s ease; }
    .nav-links.active { left: 0; }
    
    /* Cards */
    .card-body { padding: 25px 20px; }
    .vs-box { padding: 30px 20px; }
    .cta-inline-banner { padding: 30px 20px; text-align: center; }
    .cta-inline-banner h3 { font-size: 1.3rem; line-height: 1.3;}
}