*{
    margin: 0;    
    padding: 0;
    font-family: "Jura", sans-serif;
    scroll-behavior: smooth;
}
body{
    width: 100vw;
    overflow-x:hidden;
}


:root{
    --cor-primaria:#266C57;
    --cor-secundaria:#22B077;
    --white:#fff;
    --black:#000;
}
.j-title{
    font-weight: 900;
    font-size: 40px;
}
.j-paragraph{
    font-weight: 500;
    font-size: 20px;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.header-logo{
    width: 90px;
}
.header-items{
    display: flex;
    width: 20em;
    justify-content: space-around;
    gap:15px;
}
.header-items a {
    text-decoration: none;
    color: var(--black);
    transition: 0.5s;
}
.header-items a:hover{
    transform: scale(1.1);
    color: var(--cor-primaria);
    transition: 0.5s;
}
.about-us{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.about-us header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: var(--cor-primaria);
    width: 100%;
}
.about-us-section{
    display: flex;
    padding: 5%;
    gap: 4em;
}
.about-us-image{
    border-radius: 15px;
}
.about-us-text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.banner img{
    width: 100%;
}
.w{
    color: var(--white);
}
.materials{
    overflow-x: scroll;

    background-color: var(--cor-primaria);
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    color: var(--white);
    scrollbar-color: #000;
}
.material-group{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.material-group img {
    width: 300px;
    border-radius: 15px;
}


.carousel-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
}
#carousel {
    position: relative;
    display: flex;
    overflow: hidden;
}
.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 1 0 16.66%; /* 100% / 6 items = 16.66% */
    box-sizing: border-box;
    padding: 10px;
}

.carousel-item img {
    width: 100%;
    display: block;
    border-radius: 15px;
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.carousel-item p {
    text-align: center;
    margin: 10px 0;
    color: var(--white);
}
.teste{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: var(--cor-primaria);
}
.buttons button {
    cursor: pointer;
    margin: 10px 10px;
    font-size: 20px;
    background-color: unset;
    color: #bbbbbb;
    border: 2px solid #bbbbbb;
    border-color: #bbbbbb;
    border-radius: 7px;
    height: 40px;
    width: 60px;
    transition: 60ms ease-in-out;
}

.buttons button:hover {
    border-color: #f4f4f4;
    color: #f4f4f4;
}

.content-section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-group{
    padding: 100px;
    display: flex;
    justify-content: space-between;
}
.group-text{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.group-text h1{
font-size: 30px;
}
.group-text p{
    font-size: 20px;
}
.group-text button{
    background-color: var(--cor-secundaria);
    padding: 10px;
    border: none;
    color: var(--white);
}
.group-image{
    width: 60%;
    display: flex;
    justify-content: center;
}
.group-image img{
    width: 80%;
    /* aspect-ratio: 16/9; */
}
.rodape{
    display: flex;
    justify-content: space-evenly;
}
.form{
    display: flex;
    flex-direction: column;
    color: var(--white);
    gap: 5px;
}
.form button{
    margin-top: 10px;
    background-color: var(--cor-secundaria);
    padding: 10px;
    border: none;
    color: var(--white);
}
.form input{
    height: 2em;
}
footer{
    font-size: 17px;
    padding: 70px;
    background-color: var(--cor-primaria);

}
footer a {
    text-decoration: none;
    color: var(--white);
}
.rodape-1{
    display: flex;
    flex-direction: column;
    gap: 10px;

}
.rodape-1 form{
    color:#fff;
    display: flex;
    justify-content: start;
    gap: 10px;
}
select {
    outline: none; /* Remove o contorno do select quando está focado */
    border: none; /* Remove a borda do select */
    background: none; /* Remove o fundo do select */
    
}
/* Estilos para celulares pequenos */
@media (max-width: 576px) {
    .about-us{
        justify-content: center;
        align-items: center;
    }
    .about-us-section{
        flex-direction: column-reverse;
    }
    .about-us-image{
        width: 95%;
    }
    .about-us-img{
        display: flex;
        justify-content: center;
    }
    .carousel-item{
        flex: 1 0 25%;
    }
    .content-group{
        padding: 80px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 25px;
    }
    .group-text{
        width: 100%;
    }
    .group-image{
        width: 100%;
    }
    .group-image img{
        width: 100%;
    }
    #request{
        margin-top: 1.5em;
    }
    .rodape{
        flex-direction: column;
        gap: 1em;
    }
    .rodape form{
        flex-direction: column;
    }
}

.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.item {
    text-align: center;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.item img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px 8px 0 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
}

.item p {
    margin: 0;
    font-size: 16px;
    color: #555;
}
.materials-section{
    margin: 80px 0;
}



/* Estilos para o modal */
.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.contact-options{
    color:#fff;
    flex-direction: row;
}
.contact-options img{
    width: 3%;
}
.contact-op{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;    
    text-align: center;
}
.rodape form button{
    background-color: var(--cor-secundaria);
    padding: 10px;
    border: none;
    color: var(--white);
}
.highlight {
    border: 5px solid var(--cor-secundaria);
    border-radius: 5px;
    padding: 5px;
    transition: 0.5s;
}
#request-button, #emailButton{
    cursor: pointer;
    transition: 0.4s ease;
}
#request-button:hover{
    background-color: var(--cor-primaria);
    transition: background-color 0.4s ease;
}
#emailButton:hover{
    transform: scale(1.1); /* Aumenta o tamanho em 20% */
    transition: transform 0.3s ease; /* Suaviza a animação */
}