
/* Estilos del pop-up */
.popup-tratamiento {
    display: none; /* Ocultamos el pop-up por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.colorParrafo{
    color: #f39200;
    font-weight: 400;
}
.popup-content {
    background-color: white;
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
    width: 500px;
    text-align: center;
}

.close-btn-tratamiento {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    width: 100%;
    height: 100%;
    z-index: -1;
    color: #888;
}

.close-btn-tratamiento:hover {
    color: red;
}

.btn-iniciar-tratamiento {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
}

.btn-iniciar-tratamiento:hover {
    background-color: #45a049;
}
/* Estilo del contenedor del checkbox */
.contenedor-verificacion {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkbox */
.check-terminos {
    margin-right: 10px;
    transform: scale(1.2);
    cursor: pointer;
}

/* Texto del checkbox */
.texto-terminos {
    font-size: 16px;
    color: #444;
    cursor: pointer;
}

/* Botón Continuar */
.btn-continuar {
    margin-top: 20px;
    padding: 7px 20px;
    font-size: 16px;
    background-color: #7f82748e;
    color: #e6e4df;
    border: none;
    border-radius: 20px;
    cursor: not-allowed; /* Cursor deshabilitado por defecto */
    transition: opacity 0.3s, cursor 0.3s;
}

.btn-continuar:enabled {
    background-color: #ff9900;
    color: white;
    cursor: pointer; /* Cambia el cursor a mano */
}

.titulo-tratamiento {
    font-size: 24px;
    color: #333;
}

.descripcion-tratamiento {
    font-size: 14px;
    color: #666;
    text-align: left;
}


.contBtnCerrarPopUp{
    width: 100%;
    display: flex;
    justify-content: right;
}
.btnCerrarPopUp{
    width: 30px;
    height: 30px;
}
.cuerpoTexto{
    margin-left: 20px;
    margin-right: 20px;
}
.cuerpoTexto{
    width: 100%;
}
.contCheckTratamientoPopUp{
    width: 100%;
    display: flex;
}
.contBotonPopUp{
    width: 100%;
    display: flex;
    justify-content: center;
}
/* Estilos generales del pop-up */
.popup-container {
    width: 50%;
    max-width: 600px;
    padding: 20px;
    box-sizing: border-box;
}

/* Pantallas medianas */
@media (max-width: 800px) {
    .descripcion-tratamiento {
        font-size: 14px; /* Reducir el tamaño del texto */
        text-align: left; /* Opcional: alineación a la izquierda */
    }
}

/* Pantallas pequeñas */
@media (max-width: 500px) {
    .descripcion-tratamiento {
        font-size: 12px; /* Texto aún más pequeño */
        line-height: 1.4;
    }
}
