/*--Imports--*/
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Irish+Grover&display=swap);

body {
    background-color: #ffffff;
     font-family: 'Inter', sans-serif;
}

/*--peguei nav do miguel pq ele é senior--*/
header nav {
    background-color: #f7f4ec;
    display: flex;
    justify-content: space-between;
    padding: 2vw 8vw 2vw 8vw;
    align-items: center;
    box-shadow: 1px 1px 15px rgba(117, 109, 86, 0.205);

    & div h1 {
        color: #809671;
        font-family: irish grover;
        font-size: 30px;
    }

    & div ul {
        display: flex;
        gap: 40px;

        & li a {
     font-family: 'Inter', sans-serif;
            transition: transform 0.3s ease, text-shadow 0.3s ease;
            display: inline-block;
        }

        & li a:hover {
            transform: scale(1.1);
            color: #809671;

        }
    }
}
/*--- aqui ccomeça a main dos bagui---*/

main {
    padding-bottom: 50px;
}
.sobre {
    text-align: center; 
    margin: 20px auto;
}

.sobre h2 {
    font-size: 1.8rem;
    color: #809671;
    margin-bottom: 15px; 
    font-weight: bold;
}

.sobrecard {
    max-width: 600px;
    margin: 0 auto; 
    padding: 20px;
    background-color: #ffffff;
    border: 2px solid #809671;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobrecard p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
}
.sobrecard:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}

.funçãodoscrias {
    padding: 20px;
    margin: 20px auto;
    max-width: 500px;
    background: #ffffff;
    border: 2px solid #809671;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.funçãodoscrias li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #333;
}

.funçãodoscrias li strong {
    color: #526645;
    font-weight: bold;
}
.funçãodoscrias:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
   
}

h2 {
    text-align: center;
    color: #4a6a4a;
    font-size: 2.5em; 
    margin: 60px 0 40px;
}

h3 {
    text-align: center;
    color: #809671;
    font-size: 1.8em; 
    margin: 40px 0 20px;
    font-weight: bold;
}

p {
    font-size: 1.1em; 
    line-height: 1.7; 
}

/*--- são 4 da manha e to com preguiça de separar os bagui---*/
.projetinho {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.containerdoscards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;


}

.cards {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;

}

.cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.cards h4 {
    font-size: 1.2em;
    color: #809671;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 2px solid #e9f5e9;
    padding-bottom: 5px;
}

.cards p {
    font-size: 1rem; 
    line-height: 1.6;
}



/*--footer tbm--*/

footer {
    font-family: Inter;
    background: #526645;
    color: white;
    padding: 5vw 20vw 5vw 10vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .redes {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

footer h4 {
    font-size: 30px;
    color: white;
    font-family: Irish Grover;
    text-decoration: none;
    margin-bottom: 20px;
}

footer .redes img {
    width: 24px;
    height: 24px;
}


footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
}

footer li {
    margin-bottom: 8px;
}

footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

footer .titulo-navegacao,
footer .titulo-duvidas,
footer .titulo-instucionais {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}