* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
    text-decoration: none;
    
}
.topbar-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #259117;;
    height:59px;
}
.topbar-container h4 {
    color: #ffffff;
}
.topbar-container p {
    font-size: 0.7rem;
    color: #fff;
}

.contato-topbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
}

.atendimento-topbar {
    display: flex;
    align-items:center;
    justify-content: space-around;
    gap: 12px;
}

.topbar-icon-container {
    padding: 5px;
    background-color: #b7b7b54d;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 95px;
    flex-wrap: nowrap;
}

header img {
    width: 150px;
}

.links-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 12px;
}

.links-container a{
    color: #188618;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

.links-container-faleconosco-container {
    background-color: #4fa316;
    color: #fff;
    border-radius: 20px;
    padding: 0 15px;
}

.links-container-faleconosco-container a {
    color: #fff;
    
}



.banner-container {
    background-image: url(../../assets/ATENDIMENTO.png);
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.banner-container h1 {
    border: 2px solid #fff;
    padding: 10px;
    color: #fff;
}
.dados-container {
    display: flex;
    flex-direction: column;
    
    gap: 10px;
}

.dados-container h3, b, p {
    color: #1d6e13;
    text-align: start;
}

.faleconosco-container {
    background-image: url(./assets/ATENDIMENTO.png);
    min-height: 45vh;
    flex-wrap: wrap;
    display: flex;
    padding: 55px 90px 55px 90px;
    align-items: center;
    justify-content: space-around;
    background-color: #f0f0f0;
    gap: 33px;
}
.faleconosco-container form {
    display: flex;
    flex-direction: column;
    width: 400px;
    gap: 13px;
}

.faleconosco-container input, textarea {
    color: #138f13;
    padding: 10px;
    
    
    border-bottom: 1px solid #fff;
}

.faleconosco-container button {
    width: 120px;
    height: 35px;
    color:  #fff;
    background-color:rgba(63, 185, 32, 0.938);
    border: none;
    border-radius: 8px;
    cursor: pointer;
}


.faleconosco-container textarea {
    min-width: 400px;
    max-width: 400px;
    min-height: 200px;
    max-height: 200px;
    
    
}

.faleconosco-container h1 {
    color: #000;
    font-weight: 600;
    
}



.card-container {
    background-color: #fff;
    width: 330px;
    padding: 20px;
    height: 90px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 5px;
    gap: 25px;
}

.card-container p {
    font-size: 1rem;
}

.whatsapp-container {
    position: fixed;
    bottom: 20px; /* Ajuste a distância do topo conforme necessário */
    right: 20px; /* Ajuste a distância da direita conforme necessário */
    z-index: 999; /* Certifique-se de que o z-index seja maior do que outros elementos, se necessário */
    cursor: pointer;
    opacity: 0.8;
}

.whatsapp-container:hover {
    opacity: 1;
}



footer {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 30vh;
    flex-wrap: wrap;
    gap: 29px;
    padding: 35px;
}

footer p, b {
    color: rgb(91, 86, 86);
}
.direitos-container  a {
    background-color: #b7b7b54d;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    flex-wrap: nowrap;
    text-align: center;
    color: #000;
    padding: 10px;
}
.icon-dropdown {
    display: none;
}

.dropdown {
    display: none;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background-color: rgb(32, 211, 47);
    position: absolute;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
    top: 0;
    padding: 55px;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.dropdown a {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;

}

.close-container {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    font-weight: 600;
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}


@keyframes fadeInOut {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Aplique a animação à classe .dropdown */
.dropdown {
    animation: fadeInOut 0.5s ease;
}

.dropdown.exiting {
    animation: fadeOut 0.5s ease;
}
@media (max-width: 600px) {
    .links-container {
        display: none;
    }

    .icon-dropdown {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 50%;
        background-color: rgb(202, 193, 193);
        border: none;
        width: 45px;
        height: 45px;
        pointer-events: auto;
    }

    .topbar-container {
        display: none;
    }

    .card-container {
        max-width: 250px;
        height: auto;
        text-wrap: wrap;
    }

    .faleconosco-container form {
        width: 250px;
        padding: 0px;
        margin: 0px;
    }

    .faleconosco-container textarea {
        min-width: 250px;
        max-width: 250px;
        min-height: 200px;
        max-height: 200px;
        
        
    } 
    

    

    

    

    

    
}