/* 1. FUENTES */
@font-face {
    font-family: 'Regular';
    src: url(../../../recursos/fonts/Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'Negrita';
    src: url(../../../recursos/fonts/Negrita.woff2) format('woff2');
}

/* 2. RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    font-family: 'Regular', sans-serif;
    color: #213242;
}

/* Estilos de la Pgina Base (Desktop first) */
.pagina {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #f7f8f8;
}

.seccion-1 {
    display: flex;
    width: 100%;
    height: 800px;
    justify-content: center;
    align-items: center;
}

.modulo-11 {
    display: flex;
    width: 1200px;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.bloque-111 {
    display: flex;
    flex-direction: column;
    width: 600px;
    gap: 30px;
}

.titulo-1111 {
    font-family: 'Negrita';
    font-size: 56px;
    line-height: 1.1;
}

.destacado-1111 {
    color: #e1b783;
}

.parrafo-1112 {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.bloque-1113 {
    display: flex;
    gap: 20px;
}

.btn-11131 {
    width: 200px;
    height: 50px;
    background-color: #213242;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: 'Negrita';
    font-size: 16px;
    cursor: pointer;
}

.btn-11132 {
    width: 200px;
    height: 50px;
    background-color: transparent;
    color: #213242;
    border: 2px solid #213242;
    border-radius: 10px;
    font-family: 'Negrita';
    font-size: 16px;
    cursor: pointer;
}

.bloque-112 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 400px;
}

/* SECCION 2: MODULOS */
.seccion-2 {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 100px 0;
}

.modulo-21 {
    display: flex;
    flex-direction: column;
    width: 1200px;
    gap: 60px;
}

.bloque-211 {
    text-align: center;
}

.titulo-2111 {
    font-family: 'Negrita';
    font-size: 42px;
}

.bloque-212 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.item-2121,
.item-2122,
.item-2123 {
    display: flex;
    flex-direction: column;
    width: 380px;
    height: 220px;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(33, 50, 66, 0.05);
    gap: 20px;
}

.titulo-21211,
.titulo-21221,
.titulo-21231 {
    font-family: 'Negrita';
    font-size: 24px;
}

.parrafo-21212,
.parrafo-21222,
.parrafo-21232 {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* SECCION 3: CTA */
.seccion-3 {
    display: flex;
    width: 100%;
    height: 400px;
    justify-content: center;
    align-items: center;
    background-color: #213242;
}

.modulo-31 {
    display: flex;
    flex-direction: column;
    width: 800px;
    align-items: center;
    gap: 40px;
}

.titulo-3111 {
    font-family: 'Negrita';
    font-size: 48px;
    color: #fff;
    text-align: center;
}

.btn-3112 {
    width: 250px;
    height: 60px;
    background-color: #e1b783;
    color: #213242;
    border: none;
    border-radius: 30px;
    font-family: 'Negrita';
    font-size: 18px;
    cursor: pointer;
}

/* 3. MEDIA QUERIES OBLIGATORIOS (6) */

/* MQ 1: Pantallas Grandes (> 1367px) - Ya cubierto por los base */
@media (min-width: 1367px) {}

/* MQ 2: Laptops (1281px - 1366px) */
@media (min-width: 1281px) and (max-width: 1366px) {

    .modulo-11,
    .modulo-21 {
        width: 1100px;
    }

    .titulo-1111 {
        font-size: 50px;
    }

    .bloque-111 {
        width: 550px;
    }

    .item-2121,
    .item-2122,
    .item-2123 {
        width: 340px;
    }
}

/* MQ 3: Tablets Horizontales (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {

    .modulo-11,
    .modulo-21 {
        width: 950px;
    }

    .titulo-1111 {
        font-size: 44px;
    }

    .bloque-111 {
        width: 500px;
    }

    .bloque-112 svg {
        width: 250px;
        height: 250px;
    }

    .item-2121,
    .item-2122,
    .item-2123 {
        width: 300px;
        padding: 30px;
    }
}

/* MQ 4: Tablets Verticales (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .seccion-1 {
        height: auto;
        padding: 120px 0;
    }

    .modulo-11 {
        flex-direction: column;
        width: 700px;
        gap: 60px;
        text-align: center;
    }

    .bloque-111 {
        width: 100%;
        align-items: center;
    }

    .bloque-1113 {
        justify-content: center;
    }

    .modulo-21 {
        width: 700px;
    }

    .bloque-212 {
        flex-direction: column;
        align-items: center;
    }

    .item-2121,
    .item-2122,
    .item-2123 {
        width: 600px;
        height: auto;
    }
}

/* MQ 5: Phablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .seccion-1 {
        padding: 80px 0;
    }

    .modulo-11 {
        flex-direction: column;
        width: 90%;
        text-align: center;
    }

    .bloque-111 {
        width: 100%;
        align-items: center;
    }

    .titulo-1111 {
        font-size: 38px;
    }

    .bloque-1113 {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .btn-11131,
    .btn-11132 {
        width: 100%;
        max-width: 300px;
    }

    .bloque-112 svg {
        width: 200px;
        height: 200px;
    }

    .modulo-21 {
        width: 90%;
    }

    .bloque-212 {
        flex-direction: column;
        align-items: center;
    }

    .item-2121,
    .item-2122,
    .item-2123 {
        width: 100%;
        height: auto;
        padding: 30px;
    }

    .titulo-3111 {
        font-size: 32px;
    }
}

/* MQ 6: Mviles (< 480px) */
@media (max-width: 480px) {
    .seccion-1 {
        padding: 60px 0;
    }

    .modulo-11 {
        flex-direction: column;
        width: 95%;
        text-align: center;
        gap: 40px;
    }

    .bloque-111 {
        width: 100%;
        align-items: center;
        gap: 20px;
    }

    .titulo-1111 {
        font-size: 32px;
    }

    .parrafo-1112 {
        font-size: 15px;
    }

    .bloque-1113 {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .btn-11131,
    .btn-11132 {
        width: 100%;
        height: 55px;
    }

    .bloque-112 svg {
        width: 150px;
        height: 150px;
    }

    .modulo-21 {
        width: 95%;
        gap: 40px;
    }

    .titulo-2111 {
        font-size: 28px;
    }

    .bloque-212 {
        flex-direction: column;
        gap: 20px;
    }

    .item-2121,
    .item-2122,
    .item-2123 {
        width: 100%;
        height: auto;
        padding: 25px;
    }

    .titulo-3111 {
        font-size: 28px;
    }

    .btn-3112 {
        width: 100%;
        height: 55px;
        font-size: 16px;
    }
}