* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ancizar Sans', 'Georgia', 'Times New Roman', serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

a {
    transition: all 0.3s ease;
}

a:focus {
    outline: 2px solid #c41230;
    outline-offset: 2px;
}

p {
    margin-bottom: 1em;
}

.estiloSE {
    padding: 15px;
}

.ResponsiveSE {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.cabezote {
    display: block;
    width: 60%;
    margin: 40px auto;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.seccional {
    font-family: 'Ancizar Sans', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin: 50px 0 30px 0;
    padding-bottom: 20px;
    border-bottom: 3px solid #c41230;
    letter-spacing: 0.5px;
    line-height: 1.3;
    position: relative;
}

.seccional::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #c41230, #8b0000);
}

.Subseccional {
    font-family: 'Ancizar Sans', sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    color: #999999;
    text-align: center;
    margin: 30px 0 10px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

article.doble {
    width: 100%;
    margin: 40px 0;
    flex: 0 0 100%;
}

article.sencillo {
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

article.sencillo:hover {
    transform: translateY(-5px);
}

.slide_container {
    position: relative;
    overflow: hidden;
}

.imagenSE {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 4px;
}

.imagenSE img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.imagenSE:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.imagenSE a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.imagenSE:hover a::after {
    opacity: 1;
}

#titularSE {
    font-family: 'Ancizar Sans', serif;
    font-size: 1.3em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

#titularSE span {
    color: #6b6b6b !important;
    font-size: 1.1em !important;
}

article.sencillo:hover #titularSE {
    color: #c41230;
}

.textoTitular2 {
    font-size: 0.95em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.sinopsis a,
.leamas a {
    color: #c41230;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sinopsis a::after,
.leamas a::after {
    content: ' →';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.sinopsis a:hover::after,
.leamas a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

article.lateral {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid #c41230;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

article.lateral:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

article.lateral h2 {
    font-size: 1.1em;
    font-weight: 600;
    color: #999;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 30px 20px;
    margin-top: 50px;
    text-align: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.col {
    width: 100%;
    padding: 15px;
}

.contenedor {
    display: flex;
    flex-wrap: wrap;
}

.left {
    flex: 0 0 70%;
    max-width: 70%;
}

.right {
    flex: 0 0 30%;
    max-width: 30%;
}

/* Tablet */
@media (max-width: 992px) {

    .left,
    .right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ResponsiveSE {
        padding: 20px;
        flex-direction: column;
    }
}

/* Móvil */
@media (max-width: 600px) {
    .cabezote {
        width: 90%;
    }

    .seccional {
        font-size: 1.7em;
    }

    #titularSE {
        font-size: 1.1em;
    }
}