        :root {
            --cor-primaria: #003366;
            --cor-secundaria: #0060C7;
            --cor-cta: #25D366;
            --cor-fundo: #FFFFFF;
            --cor-texto: #333333;
            --cor-acento-animacao: #FFD700;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.6;
            color: var(--cor-texto);
            background-color: #F8F9FA;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* HEADER & NAV */
        header {
            background-color: var(--cor-fundo);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            color: var(--cor-primaria);
            text-decoration: none;
            font-size: 1.8em;
            font-weight: 800;
        }
        .logo span {
            color: var(--cor-secundaria);
        }
        nav ul { list-style: none; display: flex; }
        nav ul li { margin-left: 25px; }
        .nav-link-futuristic {
            position: relative; font-weight: 600; transition: color 0.3s ease; cursor: pointer; padding-bottom: 8px; 
            color: var(--cor-texto); text-decoration: none;
        }
        .nav-link-futuristic::after {
            content: ''; position: absolute; width: 0; height: 3px; bottom: 0; left: 0; background-color: var(--cor-secundaria); 
            transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); border-radius: 2px;
        }
        .nav-link-futuristic:hover::after, .nav-link-futuristic.active-nav-link::after { width: 100%; }
        .nav-link-futuristic:hover { color: var(--cor-primaria); }
        .active-nav-link { color: var(--cor-primaria) !important; font-weight: 800; }

        /* HERO SECTION & CTA BUTTON */
        #hero {
            background: linear-gradient(135deg, var(--cor-primaria) 0%, #004587 100%);
            color: var(--cor-fundo); text-align: center; padding: 120px 20px 80px; position: relative; z-index: 1;
        }
        #hero h1 { font-size: 3em; margin-bottom: 15px; font-weight: 700; }
        #hero p { font-size: 1.3em; margin-bottom: 30px; font-weight: 400; }

        .btn-cta {
            display: inline-block; background-color: var(--cor-cta); color: var(--cor-fundo); padding: 15px 30px;
            text-decoration: none; font-size: 1.2em; font-weight: 700; border-radius: 50px; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5); position: relative; overflow: hidden;
        }
        .btn-cta::before { 
            content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .btn-cta:hover::before { left: 100%; }
        .btn-cta:hover { background-color: #1EAB58; transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7); }

        /* SECTIONS & TITLES */
        section { padding: 60px 0; }
        .section-title-modern {
            font-size: 2.2rem; font-weight: 800; color: var(--cor-primaria); margin-bottom: 3rem; text-align: center; position: relative;
        }
        .section-title-modern::after {
            content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 150px; height: 5px; 
            background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-acento-animacao)); border-radius: 3px;
        }

        /* PRODUTOS */
        #produtos { background-color: #F0F5FA; }
        .produtos-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;
        }
        .product-card-modern {
            background-color: var(--cor-fundo); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center; padding-bottom: 20px; border: 1px solid #E3F2FD; transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
        }
        .product-card-modern:hover {
            transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 50px rgba(0, 51, 102, 0.2); border-color: var(--cor-secundaria);
        }
        .product-card-modern img {
            width: 100%; height: 160px; object-fit: contain; background-color: var(--cor-fundo); transition: transform 0.5s ease-in-out; padding: 10px;
        }

        /* DIFERENCIAIS */
        .diferenciais-grid {
            display: flex; gap: 30px; justify-content: center; padding-top: 30px;
        }
        .diferencial-item {
            flex: 1; text-align: center; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            background-color: #F8F8F8; transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .diferencial-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
        .diferencial-item i { font-size: 3em; color: var(--cor-secundaria); margin-bottom: 15px; }
        .diferencial-item h3 { font-size: 1.2em; color: var(--cor-primaria); margin-bottom: 10px; }

        /* DEPOIMENTOS */
        #sobre-nos { background-color: var(--cor-fundo); }
        .testimonial-typing-box {
            margin: 30px auto;
            max-width: 800px;
            padding: 30px;
            border-radius: 8px;
            background-color: #F0F5FA; 
            box-shadow: 0 5px 15px rgba(0, 51, 102, 0.1);
            min-height: 200px; 
            text-align: left;
            border-left: 5px solid var(--cor-secundaria);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        #testimonial-quote {
            font-size: 1.4em;
            font-style: italic;
            color: var(--cor-primaria);
            min-height: 70px; 
            margin-bottom: 15px;
            white-space: pre-wrap;
        }
        #testimonial-meta {
            font-size: 1.1em;
            font-weight: 500;
            color: var(--cor-texto);
            min-height: 60px;
            line-height: 1.4;
        }
        .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 1.2em;
            background-color: var(--cor-secundaria);
            margin-left: 5px;
            animation: blink 0.7s infinite;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* MODAL */
        .modal {
            position: fixed; inset: 0; background-color: rgba(0, 0, 0, 0.8); 
            display: flex; align-items: center; justify-content: center; padding: 1rem; z-index: 10000;
            opacity: 0; visibility: hidden; transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        }
        .modal.active { opacity: 1; visibility: visible; }
        .modal-content-container {
            background-color: white; padding: 2rem; border-radius: 0.75rem; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
            width: 100%; max-width: 500px; transform: scale(0.95); opacity: 0; 
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        }
        .modal.active .modal-content-container { transform: scale(1); opacity: 1; }

        /* BOTÃO WHATSAPP FIXO - REDONDO E PULSANDO */
        .whatsapp-fixed-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .whatsapp-fixed-text {
            background-color: var(--cor-cta);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            animation: pulse-text 2s infinite;
            white-space: nowrap;
        }

        @keyframes pulse-text {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
            }
        }

        .whatsapp-fixed {
            background-color: var(--cor-cta); 
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em; 
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse-whatsapp 2s infinite;
        }
        
        @keyframes pulse-whatsapp {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
                transform: scale(1);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
                transform: scale(1.05);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
                transform: scale(1);
            }
        }
        
        .whatsapp-fixed:hover { 
            background-color: #128C7E; 
            transform: scale(1.1) rotate(5deg); 
            animation: none;
        }

        .animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
        
        .scrolling-text-container {
            width: 100%; display: flex; position: relative; overflow: hidden; white-space: nowrap; background-color: var(--cor-primaria);
            border-top: 3px solid var(--cor-secundaria); padding: 10px 0;
        }
        .scrolling-text-content { animation: scroll-animation 60s linear infinite; padding-right: 30px; } 
        @keyframes scroll-animation { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .keyword-item { color: var(--cor-fundo); font-weight: 600; letter-spacing: 0.05em; margin: 0 20px; display: inline-block; } 
        .separator { color: var(--cor-acento-animacao); font-size: 1.2em; font-weight: 900; margin: 0 5px; opacity: 0.8; } 

        /* Contato */
        #contato { background-color: #F0F5FA; }
        .contact-info-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 30px 0;
            background-color: var(--cor-fundo); border-radius: 8px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .contact-item { text-align: center; padding: 15px; border-right: 1px solid #eee; }
        .contact-item:last-child { border-right: none; }
        .contact-item i { color: var(--cor-secundaria); font-size: 2.5em; margin-bottom: 10px; }
        .contact-item p, .contact-item a { font-size: 1.1em; color: var(--cor-primaria); font-weight: 600; text-decoration: none; }
        .contact-item a:hover { text-decoration: underline; }
        .map-container { height: 400px; border-radius: 8px; overflow: hidden; margin-top: 30px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
        
        /* Rodapé */
        footer {
            background-color: var(--cor-primaria);
            color: var(--cor-fundo);
            padding: 40px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        footer h3 {
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--cor-acento-animacao);
        }
        footer p, footer a {
            color: #FFFFFF;
            font-size: 0.95em;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--cor-fundo);
        }
        .social-icons a {
            display: inline-block;
            font-size: 1.5em;
            margin-right: 15px;
            color: var(--cor-acento-animacao);
        }
        .social-icons a:hover {
            color: var(--cor-fundo);
        }

        /* NOVAS SEÇÕES SEO */
        .bairros-lista {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }
        .bairro-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .bairro-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .bairro-item i {
            color: var(--cor-secundaria);
            font-size: 1.5em;
            margin-bottom: 8px;
        }
        .bairro-item h4 {
            color: var(--cor-primaria);
            font-size: 1em;
            margin-bottom: 5px;
        }
        .bairro-item p {
            color: #666;
            font-size: 0.85em;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .faq-question {
            padding: 20px;
            background: var(--cor-primaria);
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        .faq-answer {
            padding: 20px;
            display: none;
            color: var(--cor-texto);
        }
        .faq-answer.active {
            display: block;
        }

        /* Responsividade */
        @media (max-width: 900px) {
            .diferenciais-grid { flex-direction: column; }
            .header-content { flex-wrap: wrap; padding: 10px 0; }
            .logo { flex-grow: 1; }
            nav { display: none; }
            #hero h1 { font-size: 2.2em; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .contact-info-grid { grid-template-columns: 1fr; }
            .contact-item { border-right: none; border-bottom: 1px solid #eee; }
            .contact-item:last-child { border-bottom: none; }
            .mobile-only { display: block !important; } 
            .hidden-mobile { display: none; }
            .testimonial-typing-box { padding: 20px; }
            #testimonial-quote { font-size: 1.2em; }
            #testimonial-meta { font-size: 1em; }
            
            .whatsapp-fixed-container {
                bottom: 15px;
                right: 15px;
            }
            
            .whatsapp-fixed-text {
                font-size: 0.8em;
                padding: 6px 12px;
            }
            
            .whatsapp-fixed {
                width: 55px;
                height: 55px;
                font-size: 1.8em;
            }
        }
        
        @media (max-width: 480px) {
            #hero h1 { font-size: 1.8em; }
            #hero p { font-size: 1.1em; }
            .section-title-modern { font-size: 1.8rem; }
            .btn-cta { font-size: 1em; padding: 12px 25px; }
        }
        
        .hidden-mobile-menu { display: none; }
        #mobileMenu.open { display: block; }

        /* Skip to content para acessibilidade */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--cor-primaria);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 10000;
        }
        .skip-link:focus {
            top: 0;
        }
