@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=Inria+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Irish+Grover&display=swap');

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

/*--------------------- Header ---------------------*/
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;

        }
    }
}

main {
    padding: 30px;
}

.Nossa-missao {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #809671;
    text-align: center;
}

.Nossa-missao h1 {
    width: 100%;
    font-family: 'Inria Serif', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.Nossa-missao p {
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.6;
    color:#ffffff;
    text-align: left;
}

.Nossa-missao img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.cola-titulo {
    color: #809671;
    text-align: center;
    font-family: 'Inria Serif', serif;
    font-size: 2.5rem;
    margin-top: 30px;
}

.colaboradores {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.colaborador {
    position: relative; /* necessário para o tooltip */
    cursor: pointer;
    transition: transform 0.2s ease;
}

.colaborador:hover {
    transform: translateY(-6px) scale(1.03);
}

.colaborador img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #809671;
    margin-bottom: 10px;
}

.colaborador h2 {
    font-size: 18px;
    color: black;
    margin: 0;
}

/*bgl pra aparecer as contribuicao ai */
.tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    background: #526645;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    padding: 10px;
    text-align: center;
    z-index: 10;
}
.tooltip p {
    color: #fff;
    font-family:'Inria Serif', serif;
}
.tooltip img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
}

.colaborador:hover .tooltip {
    display: block;
}

footer {
    font-family: 'Inter', sans-serif;
    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', cursive;
    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;
    list-style: none;
}

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;
}
