/* ========================================
   SOBRE NOSOTROS CSS - SalonBookIt
   Estilos ESPECIFICOS de la pagina about
   ======================================== */

/* === ABOUT STORY === */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2 {
    font-size: 32px;
    color: var(--navy-900);
    margin-bottom: 24px;
}

.about-story-content p {
    color: var(--gray-600);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy-900) 0%, #1a2d4a 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.about-image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--gold);
    opacity: 0.5;
}

.about-image-placeholder span {
    color: var(--gray-400);
    font-size: 14px;
}

/* === VALUES GRID === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-4px);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    stroke: var(--gold);
    opacity: 1;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* === TEAM GRID === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-900) 0%, #1a2d4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
    opacity: 0.5;
}

.team-member h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.team-member p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* === TIMELINE === */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gray-200);
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* === STATS GRID === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* === WHY GRID === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--navy-800);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.why-card h3 {
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* === RESPONSIVE ABOUT === */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-story-content h2 {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .why-number {
        font-size: 2.5rem;
    }
}
