@import url('../reutilizables/fonts.css');

/* 2. Propiedades Globales (Fuera de MQ) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MQ1: Desktop Wide (1367px+) */
@media (min-width: 1367px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }


    .icono-1111 {
        width: 250px;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .bloque-121 {
        width: 450px;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.6s ease-out;
    }


    .contenido-1213 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contenido-12136 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-12131, .contenido-12132 {
        width: 100%;
    }

    .campo-121311, .campo-121321 {
        width: 100%;
        height: 55px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        outline: none;
        transition: border 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .campo-121311:focus, .campo-121321:focus {
        border-color: #003cff;
        box-shadow: 0 0 0 4px rgba(0, 60, 255, 0.05);
    }

    .contenido-12133 {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .contenido-121331 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .texto-1213311 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #777777;
        cursor: pointer;
    }

    .link-121332 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #003cff;
        text-decoration: none;
        font-weight: 500;
    }

    .boton-12134 {
        width: 100%;
        height: 55px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .boton-12134:hover {
        background-color: #002db3;
    }

    .boton-12134:active {
        transform: scale(0.98);
    }

    .contenido-12135 {
        width: 100%;
        text-align: center;
    }

    .texto-121351 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #777777;
    }

    .link-1213511 {
        color: #003cff;
        text-decoration: none;
        font-weight: 600;
    }
}

/* MQ2: Desktop (1281px - 1366px) */
@media (min-width: 1281px) and (max-width: 1366px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 45px;
    }

    .icono-1111 {
        width: 230px;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .bloque-121 {
        width: 420px;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.6s ease-out;
    }


    .contenido-1213 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .contenido-12136 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-12131, .contenido-12132 {
        width: 100%;
    }

    .campo-121311, .campo-121321 {
        width: 100%;
        height: 52px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        outline: none;
        transition: border 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .campo-121311:focus, .campo-121321:focus {
        border-color: #003cff;
        box-shadow: 0 0 0 4px rgba(0, 60, 255, 0.05);
    }

    .contenido-12133 {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .contenido-121331 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .texto-1213311 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
        cursor: pointer;
    }

    .link-121332 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #003cff;
        text-decoration: none;
        font-weight: 500;
    }

    .boton-12134 {
        width: 100%;
        height: 52px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .boton-12134:hover {
        background-color: #002db3;
    }

    .boton-12134:active {
        transform: scale(0.98);
    }

    .contenido-12135 {
        width: 100%;
        text-align: center;
    }

    .texto-121351 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #777777;
    }

    .link-1213511 {
        color: #003cff;
        text-decoration: none;
        font-weight: 600;
    }
}

/* MQ3: Tablet Horizontal (1025px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .icono-1111 {
        width: 220px;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .bloque-121 {
        width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.6s ease-out;
    }

    .contenido-1213 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contenido-12136 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-12131, .contenido-12132 {
        width: 100%;
    }

    .campo-121311, .campo-121321 {
        width: 100%;
        height: 50px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        outline: none;
        transition: border 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .campo-121311:focus, .campo-121321:focus {
        border-color: #003cff;
        box-shadow: 0 0 0 4px rgba(0, 60, 255, 0.05);
    }

    .contenido-12133 {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .contenido-121331 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .texto-1213311 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
        cursor: pointer;
    }

    .link-121332 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #003cff;
        text-decoration: none;
        font-weight: 500;
    }

    .boton-12134 {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .boton-12134:hover {
        background-color: #002db3;
    }

    .boton-12134:active {
        transform: scale(0.98);
    }

    .contenido-12135 {
        width: 100%;
        text-align: center;
    }

    .texto-121351 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #777777;
    }

    .link-1213511 {
        color: #003cff;
        text-decoration: none;
        font-weight: 600;
    }
}

/* MQ4: Tablet Vertical (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .icono-1111 {
        width: 220px;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .bloque-121 {
        width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.6s ease-out;
    }

    .contenido-1213 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contenido-12136 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-12131, .contenido-12132 {
        width: 100%;
    }

    .campo-121311, .campo-121321 {
        width: 100%;
        height: 50px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        outline: none;
        transition: border 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .campo-121311:focus, .campo-121321:focus {
        border-color: #003cff;
        box-shadow: 0 0 0 4px rgba(0, 60, 255, 0.05);
    }

    .contenido-12133 {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .contenido-121331 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .texto-1213311 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
        cursor: pointer;
    }

    .link-121332 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #003cff;
        text-decoration: none;
        font-weight: 500;
    }

    .boton-12134 {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .boton-12134:hover {
        background-color: #002db3;
    }

    .boton-12134:active {
        transform: scale(0.98);
    }

    .contenido-12135 {
        width: 100%;
        text-align: center;
    }

    .texto-121351 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #777777;
    }

    .link-1213511 {
        color: #003cff;
        text-decoration: none;
        font-weight: 600;
    }
}

/* MQ5: Mobile Landscape (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 20px;
    }

    .icono-1111 {
        width: 180px;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .bloque-121 {
        width: 100%;
        max-width: 360px;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.6s ease-out;
    }

    .contenido-1213 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-12136 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .contenido-12131, .contenido-12132 {
        width: 100%;
    }

    .campo-121311, .campo-121321 {
        width: 100%;
        height: 48px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        outline: none;
        transition: border 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .campo-121311:focus, .campo-121321:focus {
        border-color: #003cff;
        box-shadow: 0 0 0 4px rgba(0, 60, 255, 0.05);
    }

    .contenido-12133 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contenido-121331 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .texto-1213311 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
        cursor: pointer;
    }

    .link-121332 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #003cff;
        text-decoration: none;
        font-weight: 500;
    }

    .boton-12134 {
        width: 100%;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .boton-12134:hover {
        background-color: #002db3;
    }

    .boton-12134:active {
        transform: scale(0.98);
    }

    .contenido-12135 {
        width: 100%;
        text-align: center;
    }

    .texto-121351 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
    }

    .link-1213511 {
        color: #003cff;
        text-decoration: none;
        font-weight: 600;
    }
}

/* MQ6: Mobile (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 50px;
        padding: 60px 20px;
    }

    .icono-1111 {
        width: 160px;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .bloque-121 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.6s ease-out;
    }

    .contenido-1213 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contenido-12136 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .contenido-12131, .contenido-12132 {
        width: 100%;
    }

    .campo-121311, .campo-121321 {
        width: 100%;
        height: 48px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        outline: none;
        transition: border 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .campo-121311:focus, .campo-121321:focus {
        border-color: #003cff;
        box-shadow: 0 0 0 4px rgba(0, 60, 255, 0.05);
    }

    .contenido-12133 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .contenido-121331 {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .texto-1213311 {
        font-family: 'Outfit', sans-serif;
        font-size: 11px;
        color: #777777;
        cursor: pointer;
    }

    .link-121332 {
        font-family: 'Outfit', sans-serif;
        font-size: 11px;
        color: #003cff;
        text-decoration: none;
        font-weight: 500;
    }

    .boton-12134 {
        width: 100%;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .boton-12134:hover {
        background-color: #002db3;
    }

    .boton-12134:active {
        transform: scale(0.98);
    }

    .contenido-12135 {
        width: 100%;
        text-align: center;
    }

    .texto-121351 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
    }

    .link-1213511 {
        color: #003cff;
        text-decoration: none;
        font-weight: 600;
    }
}
