.about-block__content {
    padding: 100px 223px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.about-block__section {
    display: flex;
}

.about-block__section p {
    font-size: 30px;
    font-weight: 300;
    line-height: 40px;
    color: black;
    margin-bottom: 16px;
}

.about-block__section p:last-child {
    margin-bottom: 0;
}

.about-block__section p strong {
    font-weight: 600;
}

.about-block__section--circle {
    gap: 36px;
    align-items: flex-start;
}

.about-block__section--circle p em {
    font-style: normal;
    color: #6327E4;
    font-weight: 600;
}

.about-block__icon-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.about-circle {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.about-block__icon-title h5 {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    color: black;
    width: 271px;
}

.about-block__section--sabias {
    gap: 96px;
}

.about-block__section--sabias h5 {
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
    color: black;
    white-space: nowrap;
    margin-right: 10px;
}

@media (min-width: 1200px) and (max-width: 1670px) {
    .about-block__section--circle {
        gap: 58px;
    }

    .about-block__content {
        padding: 70px 99px;
    }

    .about-block__icon-title {
        align-items: baseline;
    }

    .about-circle {
        width: 14px;
        height: 14px;
    }

    .about-block__icon-title h5 {
        font-size: 18px;
        line-height: 24px;
        width: auto;
        white-space: nowrap;
    }

    .about-block__section--sabias {
        gap: 70px;
    }

    .about-block__section--sabias h5 {
        font-size: 30px;
        line-height: 36px;
    }

    .about-block__section p {
        font-size: 20px;
        line-height: 28px;
    }

    .has-tooltip::after {
        font-size: 12px;
        line-height: 16px;
    }
}

/* SECCION DE TOOLTIP */
@media (min-width: 768px) {

    /* Contenedor inline del <em> */
    .has-tooltip {
        position: relative;
        cursor: help;
        display: inline-block;
    }

    /* CAJA del tooltip */
    .has-tooltip::after {
        content: attr(data-tooltip);
        position: absolute;
        /* colocamos justo encima del texto */
        bottom: calc(100% + 0px);
        left: 50%;
        transform: translateX(-50%);

        /* Estilos visuales */
        background: #fff;
        color: #000;
        padding: 12px;
        font-size: 14px;
        line-height: 17px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

        /* Ajustes de flujo */
        white-space: normal;
        width: 265px;

        /* Oculto por defecto */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        pointer-events: none;
        z-index: 10;
    }

    /* FLECHA del tooltip */
    .has-tooltip::before {
        content: "";
        position: absolute;
        /* justo en el borde inferior de la caja */
        bottom: calc(100% + -20px);
        left: 50%;
        transform: translateX(-50%);
        border-width: 10px;
        border-style: solid;
        border-color: #fff transparent transparent transparent;

        /* oculto hasta hover */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        pointer-events: none;
        z-index: 12;
    }

    /* Al hacer hover, mostramos ambos */
    .has-tooltip:hover::after,
    .has-tooltip:hover::before {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .about-block__content {
        padding: 40px 20px;
        gap: 16px;
    }

    .about-block__section {
        flex-direction: column;
        gap: 16px;
    }

    .about-block__icon-title h5 {
        font-size: 18px;
        line-height: 24px;
    }

    .about-circle {
        width: 12px;
        height: 12px;
        margin-top: 5px;
    }

    .about-block__section p {
        font-size: 16px;
        line-height: 24px;
    }

    .about-block__section--sabias h5 {
        font-size: 16px;
        line-height: 24px;
        font-weight: bold;
    }
}