/* ============================================
   SHYRO HOSTING - PÁGINA NOSOTROS
   ESTILOS COMPLETOS - VERSIÓN REDISEÑADA
   ============================================ */

/* ---------- HERO DE NOSOTROS ---------- */
.nosotros-hero .hero-content h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: var(--color-text-primary);
}

[data-theme="light"] .nosotros-hero .hero-content h1 {
    color: #FFFFFF;
}

.nosotros-hero .hero-content h1 span {
    color: var(--color-primary);
}

/* ============================================
   LABEL GENÉRICO
   ============================================ */
.story-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding: 4px 16px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: var(--color-bg-input);
}

[data-theme="light"] .story-label {
    background: rgba(0, 229, 255, 0.04);
    border-color: rgba(0, 229, 255, 0.08);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.story-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.story-section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.story-section-header h2 span {
    color: var(--color-primary);
}

.story-section-header p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   INTRO - EL POR QUÉ
   ============================================ */
.story-intro {
    padding: 80px 0;
    background: var(--color-bg);
}

[data-theme="light"] .story-intro {
    background: var(--color-bg);
}

.story-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-intro-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.story-intro-text h2 span {
    color: var(--color-primary);
}

.story-intro-text p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-intro-text p:last-child {
    margin-bottom: 0;
}

.story-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.story-stat {
    text-align: center;
    padding: 32px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-card);
    border-radius: 14px;
    transition: all var(--transition-smooth);
}

[data-theme="light"] .story-stat {
    background: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.story-stat:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.12);
    box-shadow: var(--shadow-card-hover);
}

.story-stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.story-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   PROBLEMAS - LO QUE VIMOS
   ============================================ */
.story-problems {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

[data-theme="light"] .story-problems {
    background: var(--color-bg-alt);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    padding: 28px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-card);
    border-radius: 14px;
    transition: all var(--transition-smooth);
}

[data-theme="light"] .problem-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 62, 62, 0.15);
    box-shadow: var(--shadow-card-hover);
}

.problem-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(229, 62, 62, 0.08);
    color: #E53E3E;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}

.problem-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   TIMELINE - LÍNEA DE TIEMPO
   ============================================ */
.story-timeline {
    padding: 80px 0;
    background: var(--color-bg);
}

[data-theme="light"] .story-timeline {
    background: var(--color-bg);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--color-bg);
    box-shadow: 0 0 0 4px var(--color-border);
}

[data-theme="light"] .timeline-dot {
    border-color: var(--color-bg);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

.timeline-item:nth-child(4) .timeline-dot {
    background: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-border), 0 0 0 8px rgba(0, 229, 255, 0.08);
}

[data-theme="light"] .timeline-item:nth-child(4) .timeline-dot {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04), 0 0 0 8px rgba(0, 229, 255, 0.08);
}

.timeline-year {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-subtle);
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 6px;
}

[data-theme="light"] .timeline-year {
    background: rgba(0, 229, 255, 0.06);
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   FILOSOFÍA - LO QUE NOS HACE DIFERENTES
   ============================================ */
.story-philosophy {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

[data-theme="light"] .story-philosophy {
    background: var(--color-bg-alt);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.philosophy-card {
    padding: 32px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-card);
    border-radius: 14px;
    text-align: center;
    transition: all var(--transition-smooth);
}

[data-theme="light"] .philosophy-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.philosophy-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.12);
    box-shadow: var(--shadow-card-hover);
}

.philosophy-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.philosophy-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.philosophy-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   CARACTERÍSTICAS - LO QUE OFRECEMOS
   ============================================ */
.story-features {
    padding: 80px 0;
    background: var(--color-bg);
}

[data-theme="light"] .story-features {
    background: var(--color-bg);
}

.story-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-features .feature-card {
    padding: 28px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-card);
    border-radius: 14px;
    transition: all var(--transition-smooth);
}

[data-theme="light"] .story-features .feature-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.story-features .feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.12);
    box-shadow: var(--shadow-card-hover);
}

.story-features .feature-card i {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.story-features .feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}

.story-features .feature-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   EQUIPO - QUIÉNES SOMOS
   ============================================ */
.story-team {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

[data-theme="light"] .story-team {
    background: var(--color-bg-alt);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    padding: 32px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-card);
    border-radius: 14px;
    text-align: center;
    transition: all var(--transition-smooth);
}

[data-theme="light"] .team-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.12);
    box-shadow: var(--shadow-card-hover);
}

.team-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.team-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   HOY - SHYRO EN EL PRESENTE
   ============================================ */
.story-today {
    padding: 80px 0;
    background: var(--color-bg);
}

[data-theme="light"] .story-today {
    background: var(--color-bg);
}

.story-today-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-today-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.story-today-text h2 span {
    color: var(--color-primary);
}

.story-today-text p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-today-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.today-stat {
    text-align: center;
    padding: 32px 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-card);
    border-radius: 14px;
    transition: all var(--transition-smooth);
}

[data-theme="light"] .today-stat {
    background: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.today-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.12);
    box-shadow: var(--shadow-card-hover);
}

.today-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.today-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

[data-theme="light"] .cta-section {
    background: var(--color-bg-alt);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .story-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-today-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-today-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .story-intro-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nosotros-hero .hero-content h1 {
        font-size: 2.2rem;
    }

    .story-section-header h2 {
        font-size: 1.8rem;
    }

    .story-intro-text h2 {
        font-size: 1.6rem;
    }

    .story-today-text h2 {
        font-size: 1.6rem;
    }

    .problems-grid {
        grid-template-columns: 1fr 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .story-features .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-today-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .story-intro-stats {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .story-stat-number {
        font-size: 1.8rem;
    }

    .today-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nosotros-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .story-section-header h2 {
        font-size: 1.5rem;
    }

    .story-intro-text h2 {
        font-size: 1.4rem;
    }

    .story-today-text h2 {
        font-size: 1.4rem;
    }

    .story-intro-text p {
        font-size: 0.95rem;
    }

    .story-section-header p {
        font-size: 0.95rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .story-intro-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .story-today-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .philosophy-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    .timeline {
        padding-left: 28px;
    }

    .timeline-dot {
        left: -24px;
        width: 12px;
        height: 12px;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .story-stat-number {
        font-size: 1.6rem;
    }

    .today-number {
        font-size: 1.6rem;
    }

    .story-label {
        font-size: 0.6rem;
        padding: 3px 12px;
    }
}