@charset "UTF-8";

/* * ==========================================
* BLOCO CSS (style.css)
* ==========================================
*/
        :root {
            --primary-blue: #0056b3;
            --primary-orange: #ff6600;
            --cta-green: #25d366; /* Cor oficial do WhatsApp */
            --cta-green-dark: #128c7e;
            --text-dark: #333333;
            --text-light: #ffffff;
            --bg-light: #f4f4f4;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            padding-bottom: 80px; /* Espaço para o botão flutuante não cobrir o footer */
        }

        /* Utilitários */
        .container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
        }

        .text-center { text-align: center; }
        .hidden-mobile { display: none; }
        
        /* HEADER */
        header {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary-blue);
            text-transform: uppercase;
        }
        .logo span { color: var(--primary-orange); }

        .btn-call {
            background-color: var(--primary-blue);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* HERO SECTION (Dobra Principal) */
        .hero {
            /* Imagem de fundo com gradiente overlay */
            background: 
                linear-gradient(
                    to bottom, 
                    rgba(0, 86, 179, 0.6) 25%, 
                    rgba(0, 86, 179, 0.95) 80%,
                    var(--primary-blue) 100%
                ),
                /* Substitua a URL abaixo pela foto real da equipe ou do caminhão */
                url('foto-capa.png') no-repeat center center / cover;
            
            color: white;
            padding: 60px 0 80px 0; /* Aumentei o padding para destacar mais a imagem */
            text-align: center;
            position: relative;
            overflow: hidden;
        }   

        .hero h1 {
            font-size: 2.2rem;
            line-height: 1.2;
            margin-bottom: 15px;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #f0f0f0;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .highlight-orange {
            color: rgba(255,255,255,0.9);
            background: var(--primary-orange);
            padding: 0 5px;
            border-radius: 3px;
            display: inline-block; /* Melhora a quebra de linha no mobile */
        }

        /* CTA PRINCIPAL PULSANTE */
        .cta-button {
            background-color: var(--cta-green);
            color: white;
            font-size: 1.2rem;
            font-weight: 900;
            padding: 18px 30px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: transform 0.2s;
            animation: pulse 2s infinite;
            border: 2px solid white;
            text-transform: uppercase;
            cursor: pointer;
            width: 100%;
            max-width: 350px;
            justify-content: center;
        }

        .cta-button:active {
            transform: scale(0.95);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* BARRA DE BENEFÍCIOS */
        .benefits-bar {
            background-color: white;
            padding: 20px 0;
            margin-top: -30px; /* Sobrepor levemente o Hero */
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            position: relative;
            z-index: 10;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            text-align: center;
        }

        .benefit-item i {
            font-size: 1.5rem;
            color: var(--primary-orange);
            margin-bottom: 5px;
        }

        .benefit-item p {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
        }

        /* SEÇÃO PRODUTO */
        .product-section {
            padding: 40px 0;
            background-color: #fff;
            margin-top: 20px;
        }

        .product-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 2px solid #eee;
            padding: 20px;
            border-radius: 15px;
            max-width: 400px;
            margin: 0 auto;
        }

        .product-img-container {
            width: 180px;
            height: 180px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-img-container img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.2));
        }

        .price-tag {
            font-size: 1rem;
            color: #666;
        }

        .price-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-blue);
            line-height: 1;
        }

        .price-value span {
            font-size: 1rem;
            font-weight: 400;
        }

        .btn-secondary {
            margin-top: 15px;
            background-color: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            padding: 10px 30px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1rem;
            width: 100%;
            transition: 0.3s;
        }

        .btn-secondary:hover {
            background-color: var(--primary-blue);
            color: white;
        }

        /* SEÇÃO LOCALIZAÇÃO (NOVA) */
        .location-section {
            padding: 40px 0;
            background-color: #f9f9f9;
            border-top: 1px solid #eee;
        }

        .location-grid {
            display: grid;
            gap: 20px;
        }

        .location-info h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .service-areas-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .service-areas-list li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .service-areas-list li::before {
            content: '✓';
            color: var(--cta-green-dark);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .map-container {
            width: 100%;
            height: 250px;
            background-color: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* FOOTER */
        footer {
            background-color: #222;
            color: #bbb;
            text-align: center;
            padding: 30px 0;
            font-size: 0.9rem;
            margin-top: 0; /* Ajustado pois agora vem depois da location */
        }

        .footer-info {
            margin-bottom: 15px;
        }

        .footer-info strong {
            color: white;
            display: block;
            margin-bottom: 5px;
        }

        /* STICKY WHATSAPP BUTTON */
        .sticky-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--cta-green);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            z-index: 1000;
            text-decoration: none;
            transition: transform 0.3s;
            animation: pulse 3s infinite;
        }
        
        .sticky-whatsapp:hover {
            background-color: var(--cta-green-dark);
            transform: scale(1.1);
        }

        /* RESPONSIVIDADE (Tablet e Desktop) */
        @media (min-width: 768px) {
            .hidden-mobile { display: inline; }
            
            .hero h1 { font-size: 3rem; }
            
            .product-card {
                flex-direction: row;
                gap: 30px;
                max-width: 600px;
                text-align: left;
            }
            
            .product-card .text-center { text-align: left; }
            
            .container { width: 80%; }

            .benefits-grid {
                gap: 40px;
            }

            .benefit-item p { font-size: 1rem; }

            /* Location Grid Desktop */
            .location-grid {
                grid-template-columns: 1fr 1fr;
                align-items: center;
                gap: 40px;
            }
            
            .map-container {
                height: 350px;
            }
        }