:root {
    --azul-escuro: #050C1A;
    --azul-card: #0A192F;
    --laranja-neon: #FF6B00;
    --white: #FFFFFF;
    --transition: 0.4s ease;
}

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--azul-escuro); color: var(--white); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.text-center { text-align: center; }

/* Reset de imagens globais que estava afetando o layout */
img { max-width: 100%; height: auto; }
.logo { width: 150px; }

/* Navbar */
.navbar { height: 95px; background: rgba(5, 12, 26, 0.98); position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 2px solid var(--laranja-neon); display: flex; align-items: center; }
.nav-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu ul { display: flex; list-style: none; margin-right: 0; flex-wrap: nowrap; }
.nav-menu ul li a { color: #fff; text-decoration: none; padding: 10px 15px; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; white-space: nowrap; }
.nav-actions { display: flex; align-items: center; gap: 15px; flex-wrap: nowrap; }

/* Botões */
.btn-vazado { border: 2px solid var(--laranja-neon); color: var(--laranja-neon); font-weight: 800; text-transform: uppercase; padding: 12px 28px; text-decoration: none; transition: var(--transition); background: transparent; display: inline-block; cursor: pointer; }
.btn-solid { background: var(--laranja-neon); color: #fff; border: 2px solid var(--laranja-neon); font-weight: 800; text-transform: uppercase; padding: 12px 28px; text-decoration: none; transition: var(--transition); display: inline-block; cursor: pointer; }
.btn-solid:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 107, 0, 0.8), 0 0 40px rgba(255, 107, 0, 0.5), inset 0 0 10px rgba(255, 107, 0, 0.3); }
.btn-vazado:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 107, 0, 0.8), 0 0 40px rgba(255, 107, 0, 0.5); }

/* Hero */
.hero { height: 100vh; display: flex; align-items: center; position: relative; padding-top: 95px; background: url('IMG/max-style-background.jpg') center/cover no-repeat fixed; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 12, 26, 0.6); z-index: 1; }
.hero::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(255, 107, 0, 0.4) 0%, transparent 60%); animation: glow-wave 6s infinite ease-in-out; z-index: 2; pointer-events: none; }
.hero .container { position: relative; z-index: 3; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 900; line-height: 1.1; margin: 20px 0; }

@keyframes glow-wave {
    0% { transform: translate(-30%, -30%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(20%, 20%) scale(1.2); opacity: 0.7; }
    100% { transform: translate(-30%, -30%) scale(0.8); opacity: 0.5; }
}

/* --- SEÇÃO ESPECIALIDADES (Com Blur isolado) --- */
.section-padding { padding: 100px 0; }
.category-card { background: transparent; padding: 50px 30px; border-radius: 20px; border: 2px solid var(--laranja-neon); text-align: center; height: 100%; overflow: hidden; }
.category-card h3 { color: var(--laranja-neon); margin: 20px 0 15px 0; }
.card-image { position: relative; margin-bottom: 20px; height: 250px; border-radius: 15px; overflow: hidden; background: rgba(255, 107, 0, 0.1); display: flex; align-items: center; justify-content: center; }
.card-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: opacity 0.3s ease; }
.category-card:hover .card-img { opacity: 1; }

/* Aplicar blur APENAS nos slides desta seção */
.categoria-swiper { margin-top: 50px; }
.categoria-swiper .swiper-slide { 
    transition: 0.6s ease; 
    filter: blur(6px); 
    opacity: 0.3; 
    transform: scale(0.85); 
}
.categoria-swiper .swiper-slide-active { 
    filter: blur(0) !important; 
    opacity: 1 !important; 
    transform: scale(1.05) !important; 
}

/* --- SEÇÃO MARCAS (Carrossel Contínuo) --- */
.marcas-section { 
    background: var(--laranja-neon) !important; 
    padding: 30px 0; 
    width: 100%; 
    overflow: hidden;
}
.marcas-swiper { width: 100%; }
.marcas-swiper .swiper-wrapper { align-items: center; }
/* Força as marcas a serem nítidas e remove transparência herdada */
.marcas-swiper .swiper-slide { 
    filter: none !important; 
    opacity: 1 !important; 
    transform: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    min-width: 150px;
}
.marcas-swiper img { 
    height: 70px !important; 
    width: auto !important;
    object-fit: contain;
    /* Filtro para transformar qualquer cor no Azul Escuro da marca (#050C1A) */
    filter: brightness(0) saturate(100%) invert(3%) sepia(21%) saturate(5435%) hue-rotate(182deg) brightness(97%) contrast(97%) !important;
}

/* Footer */
.main-footer { background: linear-gradient(180deg, #02060e 0%, #050c1a 100%); padding: 80px 0 0; border-top: 2px solid var(--laranja-neon); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; padding: 60px 0; }
.footer-logo { display: block; margin-bottom: 20px; width: 100px !important; transition: transform 0.3s ease; }
.footer-logo:hover { transform: scale(1.05); }
.footer-about p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; color: rgba(255, 255, 255, 0.8); }
.footer-social { display: flex; gap: 20px; margin-top: 20px; }
.footer-social a { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 107, 0, 0.15); color: var(--laranja-neon); border: 2px solid var(--laranja-neon); font-size: 1.2rem; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--laranja-neon); color: #fff; transform: translateY(-5px); }
.footer-links h4, .footer-contact h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--laranja-neon); text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; }
.footer-links a:hover { color: var(--laranja-neon); margin-left: 10px; }
.footer-contact p { font-size: 0.95rem; margin-bottom: 12px; color: rgba(255, 255, 255, 0.8); }
.footer-map { margin-top: 20px; border-radius: 12px; overflow: hidden; border: 2px solid var(--laranja-neon); }
.footer-bottom { text-align: center; padding: 30px 0; border-top: 1px solid rgba(255, 107, 0, 0.2); margin-top: 40px; color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

/* Seção Instalação */
.install-section { background: linear-gradient(135deg, rgba(5, 12, 26, 0.95), rgba(10, 25, 47, 0.95)); border-top: 2px solid var(--laranja-neon); border-bottom: 2px solid var(--laranja-neon); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.install-text { }
.install-text h2 { font-size: 2.5rem; margin: 15px 0 30px 0; }
.install-list li { margin: 15px 0; font-size: 1rem; }
.install-list i { margin-right: 12px; font-size: 1.2rem; }
.install-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.install-image { width: 100%; max-width: 450px; border-radius: 20px; object-fit: cover; border: 3px solid var(--laranja-neon); box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3); transition: all 0.4s ease; }
.install-image:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(255, 107, 0, 0.5); }

/* Seção Sobre */
.sobre-section { background: transparent; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-image { display: flex; justify-content: center; }
.sobre-img { width: 100%; max-width: 450px; border-radius: 20px; object-fit: cover; transition: all 0.4s ease; }
.sobre-img:hover { transform: translateY(-10px); }
.sobre-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.sobre-content p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.line-left { width: 60px; height: 4px; background: var(--laranja-neon); margin-bottom: 30px; }
.sobre-img { width: 100%; max-width: 450px; border-radius: 15px; object-fit: cover; }
.sobre-content { }

/* Responsivo */
.menu-toggle { display: none; font-size: 2.2rem; color: var(--laranja-neon); cursor: pointer; }

@media (max-width: 992px) {
    .menu-toggle { display: block; }
    .nav-menu { 
        position: fixed; top: 95px; right: -350px; width: 320px; height: auto; max-height: 90vh;
        background: var(--azul-escuro); border-left: 2px solid var(--laranja-neon); border-bottom: 2px solid var(--laranja-neon);
        flex-direction: column; padding: 30px; transition: 0.5s; z-index: 1000; border-radius: 0 0 0 20px;
    }
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; width: 100%; text-align: right; margin-bottom: 20px; }
    .nav-actions { flex-direction: column; width: 100%; gap: 15px; }
    .nav-actions a { width: 100%; text-align: center; }
    
    /* Mobile Cascata Especialidades */
    .categoria-swiper { overflow: visible !important; }
    .categoria-swiper .swiper-wrapper { display: flex; flex-direction: column; gap: 20px; transform: none !important; }
    .categoria-swiper .swiper-slide { 
        width: 100% !important; filter: none !important; opacity: 1 !important; 
        position: relative;
        transition: all 0.3s ease;
    }
    
    /* Mobile Grid 2 Colunas */
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .sobre-grid { grid-template-columns: 1fr; gap: 30px; }
    
    /* Mobile Footer */
    .main-footer { padding: 40px 0 0; }
    .footer-grid { gap: 30px; padding: 40px 25px; }
    .footer-social { justify-content: flex-start; }
}