/* --- ESTILOS ESPECÍFICOS DA PÁGINA SOBRE --- */

/* Estatísticas */
.stats-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Imagem Sobre com Elemento Flutuante */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}
.floating-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: rgba(15, 15, 20, 0.8);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Cards de Valores */
.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
}
.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}
.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}
.value-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Cards da Equipe */
.team-card {
    width: 280px;
    background: transparent;
}
.team-img-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%); /* Estilo preto e branco inicial */
}
.team-card:hover .team-img-wrapper img {
    transform: scale(1.1);
    filter: grayscale(0%); /* Cor ao passar o mouse */
}

/* Redes Sociais da Equipe (Aparecem no Hover) */
.team-socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.team-card:hover .team-socials {
    opacity: 1;
    transform: translateY(0);
}
.team-socials a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.team-socials a:hover {
    color: var(--primary-light);
}

.team-info {
    margin-top: 1.5rem;
}
.team-info h3 {
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
}
.team-info .role {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}