/* ============================================================
   sobre.css — Estilos EXCLUSIVOS da página Sobre
   Depende de: style.css (carregado antes no base.html)
   ============================================================ */

.sobre-hero {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeSlideUp 0.6s ease-out;
}

.sobre-hero .badge {
    margin-bottom: 1.5rem;
}

.sobre-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.sobre-subtitle {
    font-size: 1.25rem;
    color: var(--color-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* ---------- Team Grid ---------- */
.team-section {
    animation: fadeSlideUp 0.8s ease-out;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-card {
    background: var(--color-surface-white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 30, 64, 0.04);
    border: 1px solid var(--color-outline-variant);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 30, 64, 0.08);
    border-color: var(--color-primary-fixed);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-surface-low);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar img {
    transform: scale(1.1);
}

.team-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-on-surface);
    margin: 0;
}

.team-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary-container);
}

/* ---------- Links de contato mock ---------- */
.team-socials {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.team-socials a {
    color: var(--color-outline);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-surface-low);
}

.team-socials a:hover {
    color: #0A66C2; /* Cor linkedin */
    background: var(--color-primary-fixed);
}

.team-socials .material-symbols-outlined {
    font-size: 18px;
}
