/* ARTICULO - Estilos para página de artículos/blog */

@font-face {
    font-family: 'Regular';
    src: url(../../recursos/fonts/Regular.woff2), url(../../recursos/fonts/Regular.woff);
}

@font-face {
    font-family: 'Negrita';
    src: url(../../recursos/fonts/Negrita.woff2), url(../../recursos/fonts/Negrita.woff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 1. Large Screens (> 1367px) */
@media (min-width: 1367px) {
    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #f7f8f8;
    }

    /* Sección 1 - Hero/Banner */
    .seccion-1 {
        display: flex;
        width: 100%;
        height: 400px;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 80px 0;
    }

    .modulo-11 {
        display: flex;
        width: 1200px;
        justify-content: center;
        align-items: center;
    }

    .contenido-111 {
        display: flex;
        flex-direction: column;
        max-width: 800px;
        gap: 20px;
        text-align: center;
    }

    .tag-111 {
        display: flex;
        width: 160px;
        height: 20px;
        justify-content: center;
        align-items: center;
        font-family: 'Regular';
        font-size: 12px;
        color: #e1b783;
    }

    .contenido-111 h1 {
        font-family: 'Negrita';
        font-size: 48px;
        color: #f7f8f8;
        line-height: 1.2;
    }

    .meta-111 {
        font-family: 'Regular';
        font-size: 14px;
        color: #f7f8f8;
    }

    .meta-111 strong {
        font-family: 'Negrita';
    }

    .meta-111 a {
        color: #f7f8f8;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .meta-111 a:hover {
        color: #e1b783;
    }



    /* Sección 3 - Contenido del Artículo */
    .seccion-3 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 0;
    }

    .modulo-31 {
        display: flex;
        width: 1200px;
        gap: 60px;
    }

    .contenido-311 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contenido-311 h2 {
        font-family: 'Negrita';
        font-size: 36px;
        color: #213242;
    }

    .contenido-311 h3 {
        font-family: 'Negrita';
        font-size: 24px;
        color: #213242;
    }

    .contenido-311 p {
        font-family: 'Regular';
        font-size: 16px;
        line-height: 1.7;
        color: #213242;
        text-align: justify;
    }

    .cita-311 {
        font-family: 'Negrita';
        font-size: 24px;
        color: #213242;
        border-left: 4px solid #e1b783;
        padding-left: 24px;
        font-style: italic;
    }

    .lista-311 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .lista-311 li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        font-family: 'Regular';
        font-size: 16px;
        color: #213242;
    }

    .lista-311 li::before {
        content: "•";
        color: #e1b783;
        font-size: 24px;
        line-height: 1;
    }

    /* Sidebar */
    .contenido-312 {
        width: 350px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .bloque-3121,
    .bloque-3122 {
        display: flex;
        flex-direction: column;
        gap: 20px;
        background-color: #fff;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .bloque-3121 h4,
    .bloque-3122 h4 {
        font-family: 'Negrita';
        font-size: 18px;
        color: #213242;
    }

    .autor-3121 {
        display: flex;
        gap: 16px;
        align-items: center;
        margin-bottom: 16px;
    }

    .foto-3121 {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .nombre-3121 {
        font-family: 'Negrita';
        font-size: 16px;
        color: #213242;
    }

    .cargo-3121 {
        font-family: 'Regular';
        font-size: 14px;
        color: #666;
    }

    .bio-3121 {
        font-family: 'Regular';
        font-size: 14px;
        line-height: 1.6;
        color: #213242;
    }

    .lista-3122 {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .item-3122 {
        display: flex;
        padding: 12px;
        background-color: #f7f8f8;
        border-radius: 8px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .item-3122:hover {
        background-color: #e1b783;
    }

    .item-3122 h5 {
        font-family: 'Regular';
        font-size: 14px;
        color: #213242;
        margin: 0;
    }

    /* Sección 4 - CTA */
    .seccion-4 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 80px 0;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        max-width: 800px;
        gap: 24px;
        text-align: center;
    }

    .modulo-41 h2 {
        font-family: 'Negrita';
        font-size: 36px;
        color: #f7f8f8;
    }

    .modulo-41 p {
        font-family: 'Regular';
        font-size: 18px;
        color: #f7f8f8;
    }

    .btn-411 {
        display: flex;
        width: 200px;
        height: 50px;
        background-color: #e1b783;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        text-decoration: none;
        color: #213242;
        margin: 0 auto;
        transition: background-color 0.3s ease;
    }

    .btn-411:hover {
        background-color: #f7f8f8;
    }

    .btn-411 h5 {
        font-family: 'Negrita';
        font-size: 16px;
        margin: 0;
    }
}

/* 2. Desktop (1281px - 1366px) */
@media (min-width: 1281px) and (max-width: 1366px) {
    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #f7f8f8;
    }

    .seccion-1 {
        display: flex;
        width: 100%;
        height: 300px;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 70px 0;
    }

    .modulo-11 {
        display: flex;
        width: 1100px;
        justify-content: center;
        align-items: center;
    }

    .contenido-111 {
        display: flex;
        flex-direction: column;
        max-width: 750px;
        gap: 18px;
        text-align: center;
    }

    .tag-111 {
        display: flex;
        width: 150px;
        height: 18px;
        justify-content: center;
        align-items: center;
        font-family: 'Regular';
        font-size: 11px;
        color: #e1b783;
    }

    .contenido-111 h1 {
        font-family: 'Negrita';
        font-size: 44px;
        color: #f7f8f8;
        line-height: 1.2;
    }

    .meta-111 {
        font-family: 'Regular';
        font-size: 13px;
        color: #f7f8f8;
    }

    .meta-111 strong {
        font-family: 'Negrita';
    }

    .meta-111 a {
        color: #f7f8f8;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .meta-111 a:hover {
        color: #e1b783;
    }



    .seccion-3 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        padding: 50px 0;
    }

    .modulo-31 {
        display: flex;
        width: 1100px;
        gap: 50px;
    }

    .contenido-311 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .contenido-311 h2 {
        font-family: 'Negrita';
        font-size: 32px;
        color: #213242;
    }

    .contenido-311 h3 {
        font-family: 'Negrita';
        font-size: 22px;
        color: #213242;
    }

    .contenido-311 p {
        font-family: 'Regular';
        font-size: 15px;
        line-height: 1.7;
        color: #213242;
        text-align: justify;
    }

    .cita-311 {
        font-family: 'Negrita';
        font-size: 22px;
        color: #213242;
        border-left: 4px solid #e1b783;
        padding-left: 22px;
        font-style: italic;
    }

    .lista-311 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .lista-311 li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        font-family: 'Regular';
        font-size: 15px;
        color: #213242;
    }

    .lista-311 li::before {
        content: "•";
        color: #e1b783;
        font-size: 22px;
        line-height: 1;
    }

    .contenido-312 {
        width: 320px;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .bloque-3121,
    .bloque-3122 {
        display: flex;
        flex-direction: column;
        gap: 18px;
        background-color: #fff;
        padding: 22px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .bloque-3121 h4,
    .bloque-3122 h4 {
        font-family: 'Negrita';
        font-size: 17px;
        color: #213242;
    }

    .autor-3121 {
        display: flex;
        gap: 14px;
        align-items: center;
        margin-bottom: 14px;
    }

    .foto-3121 {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        object-fit: cover;
    }

    .nombre-3121 {
        font-family: 'Negrita';
        font-size: 15px;
        color: #213242;
    }

    .cargo-3121 {
        font-family: 'Regular';
        font-size: 13px;
        color: #666;
    }

    .bio-3121 {
        font-family: 'Regular';
        font-size: 13px;
        line-height: 1.6;
        color: #213242;
    }

    .lista-3122 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .item-3122 {
        display: flex;
        padding: 10px;
        background-color: #f7f8f8;
        border-radius: 8px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .item-3122:hover {
        background-color: #e1b783;
    }

    .item-3122 h5 {
        font-family: 'Regular';
        font-size: 13px;
        color: #213242;
        margin: 0;
    }

    .seccion-4 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 70px 0;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        max-width: 750px;
        gap: 22px;
        text-align: center;
    }

    .modulo-41 h2 {
        font-family: 'Negrita';
        font-size: 32px;
        color: #f7f8f8;
    }

    .modulo-41 p {
        font-family: 'Regular';
        font-size: 17px;
        color: #f7f8f8;
    }

    .btn-411 {
        display: flex;
        width: 190px;
        height: 48px;
        background-color: #e1b783;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        text-decoration: none;
        color: #213242;
        margin: 0 auto;
        transition: background-color 0.3s ease;
    }

    .btn-411:hover {
        background-color: #f7f8f8;
    }

    .btn-411 h5 {
        font-family: 'Negrita';
        font-size: 15px;
        margin: 0;
    }
}

/* 3. Laptop (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #f7f8f8;
    }

    .seccion-1 {
        display: flex;
        width: 100%;
        height: 300px;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 60px 0;
    }

    .modulo-11 {
        display: flex;
        width: 950px;
        justify-content: center;
        align-items: center;
    }

    .contenido-111 {
        display: flex;
        flex-direction: column;
        max-width: 700px;
        gap: 16px;
        text-align: center;
    }

    .tag-111 {
        display: flex;
        width: 140px;
        height: 18px;
        justify-content: center;
        align-items: center;
        font-family: 'Regular';
        font-size: 11px;
        color: #e1b783;
    }

    .contenido-111 h1 {
        font-family: 'Negrita';
        font-size: 38px;
        color: #f7f8f8;
        line-height: 1.2;
    }

    .meta-111 {
        font-family: 'Regular';
        font-size: 12px;
        color: #f7f8f8;
    }

    .meta-111 strong {
        font-family: 'Negrita';
    }

    .meta-111 a {
        color: #f7f8f8;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .meta-111 a:hover {
        color: #e1b783;
    }



    .seccion-3 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 0;
    }

    .modulo-31 {
        display: flex;
        width: 950px;
        gap: 40px;
    }

    .contenido-311 {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contenido-311 h2 {
        font-family: 'Negrita';
        font-size: 28px;
        color: #213242;
    }

    .contenido-311 h3 {
        font-family: 'Negrita';
        font-size: 20px;
        color: #213242;
    }

    .contenido-311 p {
        font-family: 'Regular';
        font-size: 14px;
        line-height: 1.7;
        color: #213242;
        text-align: justify;
    }

    .cita-311 {
        font-family: 'Negrita';
        font-size: 20px;
        color: #213242;
        border-left: 4px solid #e1b783;
        padding-left: 20px;
        font-style: italic;
    }

    .lista-311 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .lista-311 li {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        font-family: 'Regular';
        font-size: 14px;
        color: #213242;
    }

    .lista-311 li::before {
        content: "•";
        color: #e1b783;
        font-size: 20px;
        line-height: 1;
    }

    .contenido-312 {
        width: 280px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .bloque-3121,
    .bloque-3122 {
        display: flex;
        flex-direction: column;
        gap: 16px;
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .bloque-3121 h4,
    .bloque-3122 h4 {
        font-family: 'Negrita';
        font-size: 16px;
        color: #213242;
    }

    .autor-3121 {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-bottom: 12px;
    }

    .foto-3121 {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .nombre-3121 {
        font-family: 'Negrita';
        font-size: 14px;
        color: #213242;
    }

    .cargo-3121 {
        font-family: 'Regular';
        font-size: 12px;
        color: #666;
    }

    .bio-3121 {
        font-family: 'Regular';
        font-size: 12px;
        line-height: 1.6;
        color: #213242;
    }

    .lista-3122 {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .item-3122 {
        display: flex;
        padding: 8px;
        background-color: #f7f8f8;
        border-radius: 6px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .item-3122:hover {
        background-color: #e1b783;
    }

    .item-3122 h5 {
        font-family: 'Regular';
        font-size: 12px;
        color: #213242;
        margin: 0;
    }

    .seccion-4 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 60px 0;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        max-width: 700px;
        gap: 20px;
        text-align: center;
    }

    .modulo-41 h2 {
        font-family: 'Negrita';
        font-size: 28px;
        color: #f7f8f8;
    }

    .modulo-41 p {
        font-family: 'Regular';
        font-size: 16px;
        color: #f7f8f8;
    }

    .btn-411 {
        display: flex;
        width: 180px;
        height: 45px;
        background-color: #e1b783;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        text-decoration: none;
        color: #213242;
        margin: 0 auto;
        transition: background-color 0.3s ease;
    }

    .btn-411:hover {
        background-color: #f7f8f8;
    }

    .btn-411 h5 {
        font-family: 'Negrita';
        font-size: 14px;
        margin: 0;
    }
}

/* 4. Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #f7f8f8;
    }

    .seccion-1 {
        display: flex;
        width: 100%;
        height: 250px;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 50px 5%;
    }

    .modulo-11 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .contenido-111 {
        display: flex;
        flex-direction: column;
        max-width: 600px;
        gap: 14px;
        text-align: center;
    }

    .tag-111 {
        display: flex;
        width: 130px;
        height: 16px;
        justify-content: center;
        align-items: center;
        font-family: 'Regular';
        font-size: 10px;
        color: #e1b783;
        margin: 0 auto;
    }

    .contenido-111 h1 {
        font-family: 'Negrita';
        font-size: 32px;
        color: #f7f8f8;
        line-height: 1.2;
    }

    .meta-111 {
        font-family: 'Regular';
        font-size: 11px;
        color: #f7f8f8;
    }

    .meta-111 strong {
        font-family: 'Negrita';
    }

    .meta-111 a {
        color: #f7f8f8;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .meta-111 a:hover {
        color: #e1b783;
    }



    .seccion-3 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        padding: 35px 5%;
    }

    .modulo-31 {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 35px;
    }

    .contenido-311 {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .contenido-311 h2 {
        font-family: 'Negrita';
        font-size: 26px;
        color: #213242;
    }

    .contenido-311 h3 {
        font-family: 'Negrita';
        font-size: 18px;
        color: #213242;
    }

    .contenido-311 p {
        font-family: 'Regular';
        font-size: 14px;
        line-height: 1.7;
        color: #213242;
        text-align: justify;
    }

    .cita-311 {
        font-family: 'Negrita';
        font-size: 18px;
        color: #213242;
        border-left: 4px solid #e1b783;
        padding-left: 18px;
        font-style: italic;
    }

    .lista-311 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .lista-311 li {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        font-family: 'Regular';
        font-size: 14px;
        color: #213242;
    }

    .lista-311 li::before {
        content: "•";
        color: #e1b783;
        font-size: 18px;
        line-height: 1;
    }

    .contenido-312 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .bloque-3121,
    .bloque-3122 {
        display: flex;
        flex-direction: column;
        gap: 14px;
        background-color: #fff;
        padding: 18px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .bloque-3121 h4,
    .bloque-3122 h4 {
        font-family: 'Negrita';
        font-size: 15px;
        color: #213242;
    }

    .autor-3121 {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-bottom: 12px;
    }

    .foto-3121 {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .nombre-3121 {
        font-family: 'Negrita';
        font-size: 14px;
        color: #213242;
    }

    .cargo-3121 {
        font-family: 'Regular';
        font-size: 12px;
        color: #666;
    }

    .bio-3121 {
        font-family: 'Regular';
        font-size: 12px;
        line-height: 1.6;
        color: #213242;
    }

    .lista-3122 {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .item-3122 {
        display: flex;
        padding: 10px;
        background-color: #f7f8f8;
        border-radius: 6px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .item-3122:hover {
        background-color: #e1b783;
    }

    .item-3122 h5 {
        font-family: 'Regular';
        font-size: 12px;
        color: #213242;
        margin: 0;
    }

    .seccion-4 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 50px 5%;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        max-width: 600px;
        gap: 18px;
        text-align: center;
    }

    .modulo-41 h2 {
        font-family: 'Negrita';
        font-size: 26px;
        color: #f7f8f8;
    }

    .modulo-41 p {
        font-family: 'Regular';
        font-size: 15px;
        color: #f7f8f8;
    }

    .btn-411 {
        display: flex;
        width: 170px;
        height: 42px;
        background-color: #e1b783;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        text-decoration: none;
        color: #213242;
        margin: 0 auto;
        transition: background-color 0.3s ease;
    }

    .btn-411:hover {
        background-color: #f7f8f8;
    }

    .btn-411 h5 {
        font-family: 'Negrita';
        font-size: 13px;
        margin: 0;
    }
}

/* 5. Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #f7f8f8;
    }

    .seccion-1 {
        display: flex;
        width: 100%;
        height: 200px;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 40px 5%;
    }

    .modulo-11 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .contenido-111 {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        text-align: center;
    }

    .tag-111 {
        display: flex;
        width: 120px;
        height: 14px;
        justify-content: center;
        align-items: center;
        font-family: 'Regular';
        font-size: 9px;
        color: #e1b783;
        margin: 0 auto;
    }

    .contenido-111 h1 {
        font-family: 'Negrita';
        font-size: 26px;
        color: #f7f8f8;
        line-height: 1.2;
    }

    .meta-111 {
        font-family: 'Regular';
        font-size: 10px;
        color: #f7f8f8;
    }

    .meta-111 strong {
        font-family: 'Negrita';
    }

    .meta-111 a {
        color: #f7f8f8;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .meta-111 a:hover {
        color: #e1b783;
    }



    .seccion-3 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        padding: 30px 5%;
    }

    .modulo-31 {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    .contenido-311 {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .contenido-311 h2 {
        font-family: 'Negrita';
        font-size: 22px;
        color: #213242;
    }

    .contenido-311 h3 {
        font-family: 'Negrita';
        font-size: 16px;
        color: #213242;
    }

    .contenido-311 p {
        font-family: 'Regular';
        font-size: 13px;
        line-height: 1.6;
        color: #213242;
        text-align: justify;
    }

    .cita-311 {
        font-family: 'Negrita';
        font-size: 16px;
        color: #213242;
        border-left: 3px solid #e1b783;
        padding-left: 16px;
        font-style: italic;
    }

    .lista-311 {
        display: flex;
        flex-direction: column;
        gap: 6px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .lista-311 li {
        display: flex;
        gap: 6px;
        align-items: flex-start;
        font-family: 'Regular';
        font-size: 13px;
        color: #213242;
    }

    .lista-311 li::before {
        content: "•";
        color: #e1b783;
        font-size: 16px;
        line-height: 1;
    }

    .contenido-312 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .bloque-3121,
    .bloque-3122 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        background-color: #fff;
        padding: 16px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .bloque-3121 h4,
    .bloque-3122 h4 {
        font-family: 'Negrita';
        font-size: 14px;
        color: #213242;
    }

    .autor-3121 {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 10px;
    }

    .foto-3121 {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: cover;
    }

    .nombre-3121 {
        font-family: 'Negrita';
        font-size: 13px;
        color: #213242;
    }

    .cargo-3121 {
        font-family: 'Regular';
        font-size: 11px;
        color: #666;
    }

    .bio-3121 {
        font-family: 'Regular';
        font-size: 11px;
        line-height: 1.6;
        color: #213242;
    }

    .lista-3122 {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .item-3122 {
        display: flex;
        padding: 8px;
        background-color: #f7f8f8;
        border-radius: 6px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .item-3122:hover {
        background-color: #e1b783;
    }

    .item-3122 h5 {
        font-family: 'Regular';
        font-size: 11px;
        color: #213242;
        margin: 0;
    }

    .seccion-4 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 40px 5%;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        text-align: center;
    }

    .modulo-41 h2 {
        font-family: 'Negrita';
        font-size: 22px;
        color: #f7f8f8;
    }

    .modulo-41 p {
        font-family: 'Regular';
        font-size: 14px;
        color: #f7f8f8;
    }

    .btn-411 {
        display: flex;
        width: 160px;
        height: 40px;
        background-color: #e1b783;
        justify-content: center;
        align-items: center;
        border-radius: 7px;
        text-decoration: none;
        color: #213242;
        margin: 0 auto;
        transition: background-color 0.3s ease;
    }

    .btn-411:hover {
        background-color: #f7f8f8;
    }

    .btn-411 h5 {
        font-family: 'Negrita';
        font-size: 12px;
        margin: 0;
    }
}

/* 6. Mobile Small (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .pagina {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #f7f8f8;
    }

    .seccion-1 {
        display: flex;
        width: 100%;
        height: 120px;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 35px 5%;
    }

    .modulo-11 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .contenido-111 {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        text-align: center;
    }

    .tag-111 {
        display: flex;
        width: 110px;
        height: 14px;
        justify-content: center;
        align-items: center;
        font-family: 'Regular';
        font-size: 9px;
        color: #e1b783;
        margin: 0 auto;
    }

    .contenido-111 h1 {
        font-family: 'Negrita';
        font-size: 22px;
        color: #f7f8f8;
        line-height: 1.2;
    }

    .meta-111 {
        font-family: 'Regular';
        font-size: 9px;
        color: #f7f8f8;
    }

    .meta-111 strong {
        font-family: 'Negrita';
    }

    .meta-111 a {
        color: #f7f8f8;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .meta-111 a:hover {
        color: #e1b783;
    }



    .seccion-3 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        padding: 25px 5%;
    }

    .modulo-31 {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 25px;
    }

    .contenido-311 {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .contenido-311 h2 {
        font-family: 'Negrita';
        font-size: 20px;
        color: #213242;
    }

    .contenido-311 h3 {
        font-family: 'Negrita';
        font-size: 15px;
        color: #213242;
    }

    .contenido-311 p {
        font-family: 'Regular';
        font-size: 12px;
        line-height: 1.6;
        color: #213242;
        text-align: justify;
    }

    .cita-311 {
        font-family: 'Negrita';
        font-size: 15px;
        color: #213242;
        border-left: 3px solid #e1b783;
        padding-left: 14px;
        font-style: italic;
    }

    .lista-311 {
        display: flex;
        flex-direction: column;
        gap: 6px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .lista-311 li {
        display: flex;
        gap: 6px;
        align-items: flex-start;
        font-family: 'Regular';
        font-size: 12px;
        color: #213242;
    }

    .lista-311 li::before {
        content: "•";
        color: #e1b783;
        font-size: 15px;
        line-height: 1;
    }

    .contenido-312 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .bloque-3121,
    .bloque-3122 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background-color: #fff;
        padding: 14px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .bloque-3121 h4,
    .bloque-3122 h4 {
        font-family: 'Negrita';
        font-size: 13px;
        color: #213242;
    }

    .autor-3121 {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-bottom: 8px;
    }

    .foto-3121 {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .nombre-3121 {
        font-family: 'Negrita';
        font-size: 12px;
        color: #213242;
    }

    .cargo-3121 {
        font-family: 'Regular';
        font-size: 10px;
        color: #666;
    }

    .bio-3121 {
        font-family: 'Regular';
        font-size: 10px;
        line-height: 1.6;
        color: #213242;
    }

    .lista-3122 {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .item-3122 {
        display: flex;
        padding: 8px;
        background-color: #f7f8f8;
        border-radius: 6px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .item-3122:hover {
        background-color: #e1b783;
    }

    .item-3122 h5 {
        font-family: 'Regular';
        font-size: 10px;
        color: #213242;
        margin: 0;
    }

    .seccion-4 {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #213242;
        padding: 35px 5%;
    }

    .modulo-41 {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 14px;
        text-align: center;
    }

    .modulo-41 h2 {
        font-family: 'Negrita';
        font-size: 20px;
        color: #f7f8f8;
    }

    .modulo-41 p {
        font-family: 'Regular';
        font-size: 13px;
        color: #f7f8f8;
    }

    .btn-411 {
        display: flex;
        width: 150px;
        height: 38px;
        background-color: #e1b783;
        justify-content: center;
        align-items: center;
        border-radius: 7px;
        text-decoration: none;
        color: #213242;
        margin: 0 auto;
        transition: background-color 0.3s ease;
    }

    .btn-411:hover {
        background-color: #f7f8f8;
    }

    .btn-411 h5 {
        font-family: 'Negrita';
        font-size: 11px;
        margin: 0;
    }
}