body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #f4f4f9;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 10vh; 
}

/* Cabeçalho */
header {
    position: fixed;
    display: flex; 
    height: 90px; 
    justify-content: space-around; 
    align-items: center;
    background: linear-gradient(90deg, #136c56, #1e8c78);
    color: white; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    z-index: 1000; 
    width: 100%; 
}

header img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    position: relative;
}

nav ul li::after {
    content: "|"; /* Caractere de traço */
    margin: 20px; /* Espaçamento entre o item e o traço */
    color: #ffffff; /* Cor do traço */
}

nav ul li:last-child::after {
    content: ""; /* Remove o traço do último item */
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

header a:hover {
    color: #a8d5ba; /* Altera a cor do texto ao passar o mouse */
    transition: color 0.3s; /* Adiciona uma transição suave */
}

/* Estilos para os ícones sociais */
.social-icons {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.social-icons li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons li a:hover {
    color: #a8d5ba; /* Cor de destaque ao passar o mouse */
}

/*WhatsApp*/

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #129474;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 10%; /* quadrado */
    font-size: 30px;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Slideshow com altura reduzida */

.slideshow-container {
    position: relative;
    display: flex;
    height: 450px; /* Reduz a altura do slideshow */
    overflow: hidden;
    width: 100%;
}

/* Imagens do slideshow */

.slideshow-container {
    padding-top: 90px;
}

.mySlides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.mySlides.active {
    opacity: 1;
    visibility: visible;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info {
    position: absolute;
    top: 40%;
    left: 10%;

    justify-content: left;
    color: #fff;
    z-index: 1;
}

.info h1 {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
}

.info p {
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
    line-height: 1.6;
}

/* Estilos para o botão */
.slide-button {
    height: 45px;
    width: 150px;
    position: absolute;
    padding: 10px 20px;
    background-color: #1a897c;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: start;
    font-family: 'Montserrat', sans-serif;
    z-index: 3; /* Para garantir que ele esteja acima do overlay */
}

/* Efeito ao passar o mouse sobre o botão */
.slide-button:hover, .service-button:hover , .about-button:hover {
    background-color: #2ac4b2; /* Cor de fundo ao passar o mouse */
}

/* Navegação de Setas */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    border-radius: 3px;
    user-select: none;
    transition: background-color 0.3s;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    color: #a8d5ba;
}

/* Pontos Indicadores */
.dot-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot:hover {
    background-color: #129474; /* Cor verde para o ponto ativo */
}

.dot.active {
    background-color: #129474; /* Cor verde para o ponto ativo */
}

/* Fundo Translúcido */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00251fc4; /* Fundo preto com 40% de opacidade */
    z-index: 0; /* Posiciona o overlay abaixo do texto */
}

#services {
    text-align: left;
    padding: 5% 10%;
    color: #2e2e2e;
    font-size: large;
    background-color: #f9f9f9;
}

#services h2 {
    margin-top: 0px;
    margin-bottom: 20px;
}

.services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service-item {
    flex: 1;
    max-width: 300px;
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-item h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 18px;
    height: 50px;
}

.service-item p {
    font-size: 16px;
    color: #666;
    height: 130px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.service-button {
    height: 45px;
    width: 150px;
    padding: 10px 20px;
    background-color: #1a897c;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: start;
    font-family: 'Montserrat', sans-serif;
    z-index: 3; /* Para garantir que ele esteja acima do overlay */
}

section.content {
    padding: 4% 10%;
    background-color: #136c56;
    color: #fff
}

.about-container {
    display: flex;
    align-items: flex-start;
    gap: 40px; /* Espaçamento entre a imagem e o texto */
    margin-right: 15%;

}

.about-container_in {
    display: flex;
    align-items: flex-start;
    gap: 40px; /* Espaçamento entre a imagem e o texto */
    margin-top: 3%;
    margin-bottom: 3%;
    margin-left: 15%;
    line-height: 1.6;

}

.about-container_in h2{
    margin-top: 0px;

}

.about-container p {
    font-size: 15px;
    padding-right: 0%;
    line-height: 1.6;
    margin-bottom: 25px;

}

.about-image {
    width: 300px; /* Ajuste o tamanho da imagem conforme necessário */
    height: auto;
    border-radius: 10px; /* Bordas arredondadas, opcional */
}

.about-text {
    flex: 1; /* Faz o texto ocupar o restante do espaço */
    font-size: 15px;
    text-align: justify;
}

.about-text ul li{
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-button {
    height: 45px;
    width: 150px;
    padding: 10px 20px;
    background-color: #1a897c;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: start;
    font-family: 'Montserrat', sans-serif;
    z-index: 3; /* Para garantir que ele esteja acima do overlay */
}

/* Contato */

.contact {
    padding-right: 10%;
    padding-left: 10%;
    padding-top: 5%;
    padding-bottom: 10%;
    background-color: #f9f9f9;
    color: #2e2e2e;
    display: flex;
    align-items: center;
    gap: 20px; /* Espaçamento entre a imagem e o formulário */
}

.contact h2 {
    font-size: 2rem;
    margin-top: 0px;
}

.contact-content {
    display: flex;
    flex: 1;
    gap: 60px;
    justify-content: center;
}

.contact-content img {
    width: auto;
    max-height: 420px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #1a897c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contato {
    width: 35%; /* Ajusta o tamanho da imagem */
    height: auto;
}

.contact-form .contact-row {
    display: flex;
    gap: 10px; /* Espaçamento entre os campos */
}

.contact-form .contact-row input[type="tel"],
.contact-form .contact-row input[type="email"] {
    flex: 1; /* Para que ambos ocupem o mesmo espaço */
}

.contact-form button:hover {
    background-color: #2ac4b2;
}

.message.success {
    color: #004d40; /* Cor de fundo verde para sucesso */
}
.message.error {
    color: #f44336; /* Cor de fundo vermelha para erro */
}
/* Produtos */

.produtos {
    color: #2e2e2e;
    text-align: center;
    padding: 50px 20px;
    background-color: #e8e8e8;
}

.produtos h2 {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 0px;
}

.produtos p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.produtos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.produto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
}

.produto-item img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
    cursor: pointer;
}

.produto-item p {
    font-size: 16px;
    color: #333;
}

/* FAQ */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700&display=swap");

.accordion {
    display: flex;
    flex-direction: column;
    padding: 5% 10%;
    color: #2e2e2e;
    background-color: #f9f9f9;
}
.accordion h1 {
    margin-top: 0px;
    font-size: 32px;
    text-align: center;
}
.accordion-item {
    margin-top: 16px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 14px 20px;
    box-sizing: border-box;
    align-items: center;
}
.accordion-item .accordion-item-desc {
    display: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    color: #444;
    border-top: 1px dashed #ddd;
    padding: 10px 20px 20px;
    box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
    display: block;
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}

@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }
    .accordion h1 {
        font-size: 22px;
    }
}

footer {
    display: flex;
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 70px;
}

footer img {
    width: 50px;
    height: auto;
    object-fit: cover;
}

