.hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content: center;
    gap:10px;
    width: fit-content;
    max-width: max-content;
    background:#c1121f;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:30px;
    margin: 0 auto 30px auto;
}

.capacitacion-hero{
    position:relative;
    height:72vh;
    min-height:600px;
    display:flex;
    align-items:center;
    background-image:url("../../img/bibliografia/portada.webp");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
/* IDENTIDAD DE LA ESCUELA */
.identidad-escuela{
    padding: 100px 0;
    background: #f5f5f5;
}

/* TÍTULO */

.identidad-escuela .titulo-seccion{
    text-align: center;
    margin-bottom: 55px;
}

.subtitulo-seccion{
    display: inline-block;
    color: #c1121f;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.identidad-escuela .titulo-seccion h2{
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.identidad-escuela .titulo-seccion p{
    max-width: 750px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

/* GRID DE TARJETAS */
.identidad-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* TARJETAS */
.identidad-card{
    background: #fff;
    border-radius: 18px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border-top: 5px solid #c1121f;
    transition: .35s ease;
    height: 100%;
}

.identidad-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

/* ÍCONO */
.identidad-icono{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c1121f;
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(193,18,31,.25);
}

.identidad-icono i{
    color: #fff;
}

/* TÍTULO DE TARJETA */
.identidad-card h3{
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

/* TEXTO */
.identidad-card p{
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* TARJETA VALORES */
.valores-card{
    padding-bottom: 30px;
}

.valor-item{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.valor-item > i{
    color: #c1121f;
    font-size: 18px;
    margin-top: 5px;
    min-width: 22px;
}

.valor-item h4{
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.valor-item p{
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


/* HISTORIA DE LA ESCUELA */
.historia-escuela{
    padding: 110px 0;
    background: #fff;
}

/* ENCABEZADO */
.historia-escuela .titulo-seccion{
    text-align: center;
    margin-bottom: 80px;
}

.historia-escuela .subtitulo-seccion{
    display: inline-block;
    color: #c1121f;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.historia-escuela .titulo-seccion h2{
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.historia-escuela .titulo-seccion p{
    max-width: 800px;
    margin: 0 auto 10px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* LÍNEA DE TIEMPO */
.timeline{
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* LÍNEA CENTRAL */
.timeline::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #c1121f;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* ELEMENTO */
.timeline-item{
    position: relative;
    width: 50%;
    padding: 20px 50px;
    margin-bottom: 50px;
}

/* IZQUIERDA */
.timeline-item:nth-child(odd){
    left: 0;
    text-align: right;
}

/* DERECHA */
.timeline-item:nth-child(even){
    left: 50%;
    text-align: left;
}

/* MARCADOR */
.timeline-marker{
    position: absolute;
    top: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #c1121f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 5px solid #fff;
    box-shadow:0 0 0 3px #c1121f, 0 6px 18px rgba(0,0,0,.15);
    z-index: 2;
}

/* MARCADOR IZQUIERDO */
.timeline-item:nth-child(odd) .timeline-marker{
    right: -27px;
}

/* MARCADOR DERECHO */
.timeline-item:nth-child(even) .timeline-marker{
    left: -27px;
}

/* TARJETA */
.timeline-content{
    background: #f8f8f8;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    border: 1px solid #eee;
    transition: .35s ease;
}

/* HOVER */
.timeline-content:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.13);
}

/* FECHA */
.timeline-fecha{
    display: inline-block;
    background: #c1121f;
    color: #fff;
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TÍTULO */
.timeline-content h3{
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

/* TEXTO */
.timeline-content p{
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* TEXTO EN NEGRITA */
.timeline-content strong{
    color: #333;
}

/* EFECTO DE LA LÍNEA */
.timeline-item::after{
    content: "";
    position: absolute;
    top: 50px;
    width: 50px;
    height: 2px;
    background: #c1121f;
    z-index: 1;
}

/* CONECTOR IZQUIERDO */
.timeline-item:nth-child(odd)::after{
    right: 0;
}

/* CONECTOR DERECHO */
.timeline-item:nth-child(even)::after{
    left: 0;
}




