/* General Body and Container Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ESTILOS DO CABEÇALHO ATUALIZADOS --- */
.header {
    /* Fundo REVERTIDO para branco */
    background-color: #fff; 
    padding: 15px 0;
    /* Borda REVERTIDA para clara */
    border-bottom: 1px solid #eee; 
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

/* Estilo para a imagem do logo */
.header-logo {
    height: 60px; /* Ajuste a altura conforme necessário */
    width: auto;
}

.contact-info {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    /* Cor do texto REVERTIDA para escuro */
    color: #555; 
}

.contact-info i {
    font-size: 1.5em;
    margin-right: 8px;
    /* Cor do ícone REVERTIDA para escuro */
    color: #333; 
}

/* --- NOVOS ESTILOS PARA O TELEFONE --- */
.contact-info .phone-text {
    display: flex;
    flex-direction: column; /* Coloca os spans um em cima do outro */
    line-height: 1.3;
}

.contact-info .phone-number {
    font-weight: 700; /* "colocar o telefone em bold" */
    font-size: 1.1em; /* Destaque para o número */
    color: #333; /* Cor escura para o número */
}
/* --- FIM DAS MUDANÇAS NO CABEÇALHO --- */


/* Hero Section Styles */
.hero-section {
    background-color: #FFD600; 
    padding: 60px 0 80px 0; 
    display: flex; 
    align-items: center;
    position: relative; 
    z-index: 5; 
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px; 
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.8em;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1em;
    color: #555;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 10; 
    margin-bottom: -80px; 
}

/* Product Categories Section */
.product-categories-section {
    background-color: #fff; 
    padding: 120px 0 40px 0;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); 
    gap: 20px;
    text-align: center;
}

.product-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-item img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 0.95em;
    font-weight: 600;
    color: #333;
}


/* Benefits Section */
.benefits-section {
    background-color: #fff;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.benefits-grid {
    display: flex;
    justify-content: space-between; 
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
    flex-grow: 1; 
    flex-basis: auto; 
    justify-content: center; 
    padding: 0 10px;
    text-align: center;
}


.benefit-item i {
    color: #4CAF50;
    font-size: 1.5em;
    margin-right: 10px;
    flex-shrink: 0; 
}

/* Call to Action Section */
.cta-section {
    background-color: #fff; 
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; 
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 998; 
    position: relative;
}

.whatsapp-button:hover {
    background-color: #1DA851;
    transform: scale(1.05);
}

.whatsapp-button i {
    font-size: 1.8em;
    margin-right: 15px;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #333;
    color: #bbb;
    padding: 15px 0;
    text-align: center;
    font-size: 0.85em;
}

/* Footer Section */
.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    border-top: 1px solid #444;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-contact, .footer-schedule {
    flex: 1;
    min-width: 200px;
}

.footer-contact p, .footer-schedule p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 15px;
    font-size: 1.5em;
    flex-grow: 0;
}

.footer-social a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #25D366;
}

/* --- MUDANÇAS DE RESPONSIVIDADE --- */

/* Tablet (medium) */
@media (max-width: 992px) {
    .header-content {
        /* Centraliza logo e contato no tablet */
        flex-direction: column;
        gap: 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin-top: 30px;
    }
    .hero-image img {
        margin-bottom: -80px;
    }
    .product-categories-section {
        padding-top: 120px; 
    }

    .hero-text h1 {
        font-size: 2.2em;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center; 
    }
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .benefit-item {
        flex-basis: 40%; 
        justify-content: flex-start;
        margin-bottom: 20px; 
        text-align: left;
    }
}

/* Mobile (small) */
@media (max-width: 768px) {
    body {
        padding-bottom: 100px; 
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .contact-info {
        margin-top: 0;
        /* Ajusta o alinhamento do ícone e texto no mobile */
        align-items: center;
    }
    .contact-info .phone-text {
        /* Alinha o texto do telefone ao centro no mobile */
        text-align: center;
    }

    .hero-image img {
        margin-bottom: -60px;
    }
    .product-categories-section {
        padding-top: 80px; 
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .benefit-item {
        flex-basis: 100%; 
        justify-content: flex-start;
        text-align: left;
    }

    .cta-section {
        padding: 0;
        border: none;
    }

    .whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        font-size: 1em;
        padding: 12px 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .whatsapp-button i {
        font-size: 1.5em;
        margin-right: 10px;
    }
}

/* Mobile (extra-small) */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8em;
    }
    
    .hero-image img {
        margin-bottom: -50px;
    }
    .product-categories-section {
        padding-top: 70px; 
    }

    .product-grid {
        gap: 10px;
    }
    .product-item img {
        height: 80px;
    }
    .product-item p {
        font-size: 0.8em;
    }

    .benefit-item {
        font-size: 0.85em;
    }
}

