@import url(./global.css);


p   {
    text-align: justify;
    line-height: 1.6
}

/* Equipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.team-card {
    background: var(--light-color);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member {
    margin: 0;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
}

.team-info h3 {
    color: var(--dark-color);
    margin: 0.5rem 0;
    font-size: 1.25rem;
}

.team-info h4 {
    color: var(--info-color);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.team-info p {
    display: flex;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 0.5rem 0;
    justify-content: center;
}

/* === AJUSTES PARA DISPOSITIVOS MÓVEIS === */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        padding: 1rem 0;
    }
}
