body {
    background-color: #fff;
    color: #0C593D;
    font-family: montserrat, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Header responsivo */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}



#title img {
    max-width: 200px;
    height: auto;
}
#title-empresa img {
    max-width: 320px;
    margin: 0 auto;
    height: auto;
}

/* Texto */
h1, h2, h3 {
    font-family: montserrat, sans-serif;
    text-align: center;
}
h2, h3 {
    font-size: clamp(20px, 4vw, 30px);
    line-height: 1.3;
}

/* Regra principal para parágrafos (agora será usada corretamente) */
p {
    line-height: 1.6;
    max-width: 95%;
    font-size: clamp(14px, 2.5vw, 21px);
    text-align: justify;
    margin: 10px auto;
}

/* Regra para unificar o conteúdo do main (parágrafos e listas) */
main p,
main li {
    font-size: clamp(16px, 2.5vw, 18px); /* Tamanho de fonte consistente */
    line-height: 1.7;                    /* Mesma altura de linha para boa leitura */
    text-align: left;                    /* Alinhamento à esquerda é melhor para leitura */
    max-width: 100%;                     /* Ocupa toda a largura do container */
    margin: 10px 0;                      /* Remove o margin auto para alinhar à esquerda */
}

main ul {
    padding-left: 25px; /* Ajusta o recuo da lista */
    margin-top: 20px;
}




/* Imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Slider */
.slider-container {
    width: 100%;
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 15px;
}
.slider-container img {
    border-radius: 8px;
}
.slick-prev:before, .slick-next:before {
    color: black;
}

/* Video responsivo */
.video-container {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}
.video-container iframe {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
}

/* Main */
main {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    gap: 20px;
}
@media (max-width: 768px) {
    main {
        flex-direction: column;
        align-items: center;
    }
}



/* Botão WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}
.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}
.whatsapp-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Footer */
.site-footer {
    background-color: #fff;
    padding: 60px 20px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 90px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-column {
    flex: 1;
    min-width: 250px;
}
.footer-column.about .logo {
    max-width: 200px;
    margin-bottom: 15px;
}
.social-icons a {
    margin-right: 15px;
    display: inline-block;
}
.social-icons img {
    width: 28px;
    height: 28px;
}
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b6c56;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.contact-item, .location-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.contact-item svg, .location-item svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    fill: #0b6c56;
}

.location-item svg{
    margin-top: 3px;
    width: 90px;
}

.location-item span {
    text-align: justify;
}
.contact-item a {
    text-decoration: none;
    color: #333;
}
.contact-item a:hover {
    color: #0b6c56;
}
.phone-button {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 650;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 220px;
}
.phone-button:hover {
    background-color: #218838;
}

/* Estilo para os links no footer-bottom */
/* Estilo para os links no footer-bottom */
./* Estilo para os links no footer-bottom */
.footer-bottom a{
    color: #5f5f60;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px; /* CORRIGIDO: "x" não é um valor válido */
    transition: color 0.3s ease;
}

.site-footer .footer-bottom {
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
    padding-top: 20px;
}

.footer-links{
    margin-top: 10px;
}

.Copyright{
    margin-top: 30px;
    margin-bottom: 10px;
}

.footer-bottom a:hover {
    color: #7b7b7c;
    text-decoration: underline;
}

/* Regra do footer-bottom corrigida para afetar SOMENTE o rodapé */
.footer-bottom p {
    text-align: center;
    color: #5f5f60;
    font-size: 14px;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 30px;
    }
    .contact-item, .location-item {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }
    .footer-column.about .logo {
        max-width: 150px;
    }
    .social-icons img {
        width: 24px;
        height: 24px;
    }
}
@media (max-width: 320px) {
    h2, h3 {
        font-size: 20px;
    }
    p {
        font-size: 14px;
    }
    .footer-column.about .logo {
        max-width: 120px;
    }
    .social-icons img {
        width: 20px;
        height: 20px;
    }
}
