/* =====================================================
   TOXIMETRO RESPONSIVE
   ===================================================== */

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* CONTENEDOR PRINCIPAL */
.toximetro-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* PANEL IZQUIERDO */
.toximetro-left {
    width: 42%;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

/* PANEL DERECHO */
.toximetro-right {
    width: 58%;
    overflow: hidden;
}

.toximetro-right img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* LOGOS */
.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 25px;
}

#mimp {
    width: 180px;
    max-width: 100%;
}

#aurora {
    width: 180px;
    max-width: 100%;
}

/* CONTENIDO */
.contenido {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 40px;
}

#one {
    width: 340px;
    max-width: 100%;
    margin-bottom: 30px;
}

.mensaje h1 {
    margin: 0 0 15px 0;
    font-size: 52px;
    font-weight: bold;
}

.mensaje h2 {
    margin: 6px 0;
    font-size: 22px;
    font-weight: normal;
}

/* BOTÓN */
.btn-test {
    margin-top: 30px !important;
    width: 240px;
    height: 55px;
    border-radius: 50px !important;
    font-size: 20px !important;
}

/* =====================================================
   TABLET
   ===================================================== */
@media screen and (max-width: 1024px) {

    .toximetro-left {
        width: 50%;
    }

    .toximetro-right {
        width: 50%;
    }

    #mimp,
    #aurora {
        width: 140px;
    }

    #one {
        width: 260px;
    }

    .mensaje h1 {
        font-size: 40px;
    }

    .mensaje h2 {
        font-size: 18px;
    }
}

/* =====================================================
   MOVIL VERTICAL
   ===================================================== */
@media screen and (max-width: 768px) and (orientation: portrait) {

    .toximetro-container {
        display: block;
        min-height: 100vh;
    }

    .toximetro-left {
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    /* Ocultar imagen lateral */
    .toximetro-right {
        display: none;
    }

    .logos {
        flex-direction: column;
        gap: 15px;
        padding-top: 20px;
    }

    #mimp,
    #aurora {
        width: 130px;
    }

    .contenido {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    #one {
        width: 220px;
        max-width: 90%;
    }

    .mensaje h1 {
        font-size: 34px;
    }

    .mensaje h2 {
        font-size: 16px;
        line-height: 1.4;
    }

    .btn-test {
        width: 100%;
        max-width: 300px;
        margin-top: 25px !important;
    }
}

/* =====================================================
   MOVIL HORIZONTAL
   ===================================================== */
@media screen and (max-width: 932px) and (orientation: landscape) {

    .toximetro-container {
        flex-direction: row;
        min-height: 100vh;
    }

    .toximetro-left {
        width: 50%;
        padding: 10px;
    }

    .toximetro-right {
        width: 50%;
        display: block;
    }

    .logos {
        gap: 15px;
        padding-top: 10px;
    }

    #mimp,
    #aurora {
        width: 110px;
    }

    #one {
        width: 170px;
        margin-bottom: 10px;
    }

    .contenido {
        padding: 10px 20px;
    }

    .mensaje h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .mensaje h2 {
        font-size: 13px;
        margin: 3px 0;
    }

    .btn-test {
        width: 180px;
        height: 40px;
        font-size: 14px !important;
        margin-top: 15px !important;
    }

    .toximetro-right img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }
}

/* =====================================================
   PANTALLAS GRANDES
   ===================================================== */
@media screen and (min-width: 1600px) {

    #one {
        width: 420px;
    }

    .mensaje h1 {
        font-size: 64px;
    }

    .mensaje h2 {
        font-size: 26px;
    }

    .btn-test {
        width: 280px;
        height: 65px;
        font-size: 24px !important;
    }
}