/* PÁGINA SOBRE */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

main > p:first-child {
    text-align: center;
    color: var(--vermelho);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

main > p:nth-child(2) {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--cinza-escuro);
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#desenvolvedores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integrante {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background-color: var(--branco);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.integrante:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.integrante img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--vermelho);
    background-color: var(--cinza-claro);
}

.integrante p {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--vermelho);
    text-align: center;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    main {
        padding: 2rem 1rem;
    }
    
    #desenvolvedores {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .integrante {
        padding: 1.5rem 0.75rem;
    }
    
    .integrante img {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
    
    .integrante p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 5vw 3vw;
    }

    main > p:first-child {
        font-size: 7vw;
        margin-bottom: 7vw;
    }

    main > p:nth-child(2) {
        font-size: 3vw;
        margin-bottom: 7vw;
    }
    
    #desenvolvedores {
        grid-template-columns: 1fr;
        gap: 3vw;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10vw;
    }
    
    .integrante {
        padding: 5vw 3vw;
    }
    
    .integrante img {
        width: 21vw;
        height: 21vw;
    }

    .integrante p{
        font-size: 3vw;
    }
}