/* ===================================
   HOMENAJE A RÓMULO - ESTILOS ESPECÍFICOS
   =================================== */

/* Hero Interno */
.hero-interno {
    position: relative;
    background-image: url('/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-interno::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 64, 175, 0.85) 0%,
        rgba(30, 64, 175, 0.70) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    color: white;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Sección de Contenido */
.content-section {
    padding: 5rem 2rem;
    background-color: white;
}

/* Introducción */
.intro-section {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.intro-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* Biografía con Timeline */
.biography-section {
    max-width: 900px;
    margin: 0 auto 5rem;
}

.biography-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.bio-timeline {
    position: relative;
    padding-left: 2rem;
}

.bio-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-content {
    padding-left: 2rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Especialización Grid */
.specialization-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.specialization-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    text-align: center;
}

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

.spec-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.12);
    border-color: rgba(30, 64, 175, 0.2);
}

.spec-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.spec-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.spec-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Legado */
.legacy-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.legacy-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.legacy-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.legacy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.legacy-text strong {
    color: var(--primary);
    font-weight: 700;
}

.legacy-quote {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.08) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.legacy-quote blockquote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.legacy-quote cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

/* Inspiración Grid */
.inspiration-section {
    max-width: 1000px;
    margin: 0 auto;
}

.inspiration-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    text-align: center;
}

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

.inspiration-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.inspiration-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
}

.inspiration-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.inspiration-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 3rem 1.5rem;
    }
    
    .intro-section h2,
    .biography-section h2,
    .specialization-section h2,
    .legacy-section h2,
    .inspiration-section h2 {
        font-size: 1.75rem;
    }
    
    .bio-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-content {
        padding-left: 1.5rem;
    }
    
    .legacy-content {
        gap: 2rem;
    }
}