/* ====================================
   ABOUT PAGE - ESTILO ESPECÍFICO
   ==================================== */

/* Page-specific styles */
.page-hero {
    padding: 10rem 1rem 6rem;
    margin-top: 0;
    position: relative;
}

.page-hero h1 {
    color: #f5f5f7;
}

.page-hero .subtitle {
    color: #86868b;
}



.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #D1D5DB, #9CA3AF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.team-info {
    padding: 1.5rem;
}

.team-role {
    color: #FBBF24;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 100%);
    padding: 2rem;
    border: 2px solid #E5E7EB;
    border-left: 5px solid #FBBF24;
    border-radius: 0.75rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    border-color: #FBBF24;
    border-left-width: 8px;
}

.value-badge {
    display: inline-block;
    background-color: #FBBF24;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(251, 191, 36, 0.15);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-detail {
    color: #FBBF24;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 1rem 3rem;
    }
}
