.title-person-type {
    z-index: 99;
    top: 40px;
}

.btn-start {
    font-size: 18px !important;
}
.container-body {
    height: calc(100vh - 80px);
}

.title {
    font-family: "Open Sans", sans-serif !important;
    font-size: 40px;
    text-align: center;
    font-weight: 400;
}

.div-background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.div-left {
    background:
        linear-gradient(
            0deg,
            rgba(162, 153, 52, 0.9) 0%,
            rgba(222, 213, 86, 0.5) 100%
        ),
        url("../../images/background-select-tipo-persona1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* padding-top: 60px; */
    padding: 10%;
}

.div-right {
    background:
        linear-gradient(
            0deg,
            rgba(0, 48, 86, 1) 0%,
            rgba(0, 115, 206, 0.5) 100%
        ),
        url("../../images/background-select-tipo-persona2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* padding-top: 60px; */
    padding: 10%;
}

.div-left h3,
.div-right h3 {
    font-family: "Open Sans", sans-serif !important;
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 20px;
}

.div-left p,
.div-right p {
    line-height: 1.5rem;
    font-size: 20px;
}

.tooltip-container {
    display: inline-block;
    position: relative;
    margin-left: 8px; /* Espacio entre el texto y el ícono */
    cursor: pointer;
}

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid white;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 200px;
    max-width: 60%;
    width: clamp(300px, 50%, 500px);
    background-color: #f9f9f9;
    color: #333;
    text-align: left;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    line-height: 1.4;
    position: absolute;
    z-index: 1000;
    top: -500%; /* Posiciona debajo del ícono */
    left: 50%;
    transform: translateX(-0%);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    font-weight: normal;
}

.tooltip-title {
    color: #0073ce;
    font-size: 1rem;
    position: relative;
    display: inline-block;
}

.tooltip-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 2px;
    background-color: #0073ce; /* Color del subrayado */
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: -5px; /* Ajusta la punta del tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #f9f9f9 transparent;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/*----------------------------------------------RESPONSIVE MOBILE----------------------------------*/
@media only screen and (max-width: 499px) {
    .div-left {
        width: 50%;
        padding: 45% 0 20% 0;
    }
    .div-right {
        width: 50%;
        padding: 45% 0 20% 0;
    }
    .title {
        font-size: 28px;
    }
    .div-left h3,
    .div-right h3 {
        font-size: 30px;
        text-align: center;
    }

    .div-left p,
    .div-right p {
        line-height: 1.2rem;
        font-size: 15px;
        padding: 0 10%;
    }
    .div-background {
        justify-content: space-around;
    }
    .tooltip-text {
        width: 200px;
        top: -160px;
        transform: translateX(-90%);
    }

    .tooltip-text-right {
        top: -275px !important;
    }
}

/*--------------------------------------- RESPONSIVE DESKTOP small --------------------------------*/
@media only screen and (min-width: 991px) and (max-width: 1600px) {
    .div-left h3,
    .div-right h3 {
        font-size: 40px;
    }
}
