.principal-medico-mobile {
    background: var(--primary-dark-blue);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4vh;
    height: 100%;
    padding: 8vh 5vh;
    position: relative;
    overflow: hidden;
}

.portal-info-mobile {
    background: rgba(255,255,255,0.0); /* Fondo transparente, puedes ajustar si quieres una tarjeta */
    display: flex;
    gap: 1vh;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.portal-info-mobile.portal-paciente {
    display: none;
    position: absolute;
    top: 0;
}

.resultados-info-mobile {
    z-index: 2;
    width: 90%;
    color: #fff;
    font-size: 1.5vh;
    text-align: justify;
    line-height: 1.2;
    background: none;
    font-family: 'Inter', Arial, sans-serif;
}

.portal-descripcion-mobile {
    color: #fff;
    font-size: 2.7vh;
    margin-bottom: 1.5vh;
    width: 70%;
}

.portal-descripcion-mobile {
    font-size: 2vh;
}

@media (max-width: 900px) {
    .principal-section {
        height: 120vh;
        background-position: left !important;
    }

    .principal-medico-mobile {
        display: flex;
    }

    .portal-info-mobile.portal-paciente {
        display: flex;
        margin-top: 22.5vh;
    }

    .paciente-container {
        height: 80%;
        top: 50vh;
        margin-left: 100vh;
    }

    .medico-container {
        height: 60%;
        margin-left: 25vh;
    }

    .portal-info.portal-paciente {
        display: none;
    }

    .portal-info.portal-medico {
        display: none;
    }

    .resultados-info {
        display: none;
    }
}

@media (max-width: 576px) {
    .principal-section {
        height: 100vh;
    }

    .paciente-container {
        height: 70%;
        top: 50vh;
        margin-left: 75vh;
    }

    .medico-container {
        height: 50%;
        margin-left: 15vh;
        bottom: -5vh;
    }
}