/* Sección Hero con Imagen de Fondo */
.history-hero {
    position: relative;
    height: 400px;
    background-image: url('/assets/images/ibero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.history-hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    padding: 0 20px;
    z-index: 1;
}

/* Contenido Principal */
.history-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Secciones de Texto */
.history-section {
    margin-bottom: 40px;
}

.history-section h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-align: center;
}

.history-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    padding: 0 15px;
}

/* Línea de Tiempo */
.timeline-section {
    position: relative;
    padding: 20px 0;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

/* Responsividad */
@media (max-width: 768px) {
    .history-hero {
        height: 300px;
    }

    .history-hero h1 {
        font-size: 2rem;
    }

    .history-content {
        padding: 30px 15px;
    }

    .history-section h2 {
        font-size: 1.8rem;
    }

    .history-section p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Línea de Tiempo en pantallas pequeñas */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
        padding-right: 20px;
    }

    .timeline-item::before {
        left: 10px !important;
        right: auto !important;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .history-hero {
        height: 250px;
    }

    .history-hero h1 {
        font-size: 1.5rem;
    }

    .history-section h2 {
        font-size: 1.5rem;
    }

    .history-section p {
        font-size: 0.9rem;
    }
}


/* Estilos generales */
.mision-vision-valores {
    background: #f8f8f8;
    padding: 60px 10%;
    text-align: center;
}

h2 {
    color: #E74C3C;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Contenedor flexible */
.contenedor {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Sección con imagen y texto */
.seccion {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Alternar imagen y texto */
.seccion:nth-child(even) {
    flex-direction: row-reverse;
}

/* Imágenes */
.seccion img {
    width: 40%;
    border-radius: 10px;
}

/* Texto */
.texto {
    width: 55%;
    text-align: left;
}

/* Lista de valores */
.texto ul {
    list-style: none;
    padding: 0;
}

.texto ul li {
    font-size: 1.2rem;
    margin: 5px 0;
    padding-left: 20px;
    position: relative;
}

/* Estilo de viñeta */
.texto ul li::before {
    content: "•";
    color: #E74C3C;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsividad */
@media (max-width: 768px) {
    .seccion {
        flex-direction: column !important;
        text-align: center;
    }

    .seccion img,
    .texto {
        width: 100%;
    }
}
