/* =========================================
   NOSOTROS.HTML - ESTILOS ESPECÍFICOS
   Página Nosotros - Kette & Zelle
   ========================================= */

/* =========================================
   PAGE HEADER
   ========================================= */

.page-header {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   TIMELINE
   ========================================= */

.timeline {
    position: relative;
    padding: 2rem 0;
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--yellow);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--yellow);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(even) .timeline-content:first-child {
    text-align: right;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.5rem;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

/* =========================================
   TEAM SECTION
   ========================================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-credential {
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

/* =========================================
   VALUES SECTION
   ========================================= */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.5rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--gray-800);
    line-height: 1.7;
}

/* =========================================
   STATS BOX
   ========================================= */

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-box {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.stat-box-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box-label {
    color: var(--gray-800);
    font-size: 1.1rem;
}

/* =========================================
   RESPONSIVE - NOSOTROS
   ========================================= */

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

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

    .timeline-item {
        grid-template-columns: 1fr;
        margin-left: 40px;
    }

    .timeline-item::before {
        left: -30px;
    }
}
