.requirements-list .check-circle {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.requirements-list li div {
    font-size: 0.98rem;
    color: #1e293b;
}

/* text similar to tu ejemplo */
.modal-title {
    font-weight: 700;
    letter-spacing: .5px;
}

.link-primary {
    color: #0d6efd;
    text-decoration: underline;
}

@media (max-width: 575px) {
    .requirements-list .check-circle {
        width: 28px;
        height: 28px;
    }
}

.admi-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f6f9ff;
    border: 1px solid #e6edff;
    border-radius: 10px;
    padding: 12px 14px
}

.admi-alert .admi-alert-icon {
    font-size: 20px;
    line-height: 1.1
}

.admi-alert.info {
    --c: #2B66F6;
    border-left: 4px solid var(--c);
    color: #1F1E5A
}

.admi-alert.warn {
    --c: #f59f00;
    background: #fffaf2;
    border: 1px solid #ffe8cc;
    border-left: 4px solid var(--c)
}

.admi-alert.note {
    --c: #16a34a;
    background: #f3fcf6;
    border: 1px solid #d9f3e2;
    border-left: 4px solid var(--c)
}

.admi-alert-body p {
    margin-bottom: 0
}

.step-card {
    background: #fff;
    border: 1px solid #eef2ff;
    border-radius: 12px;
    padding: 16px
}

.step-head {
    display: flex;
    align-items: center;
    gap: 12px
}

.step-badge {
    display: inline-block;
    background: #2B66F6;
    color: #fff;
    border-radius: 999px;
    padding: 4px 12px;
    font-weight: 700
}

.step-head h4 i {
    font-size: 18px;
    margin-left: 6px;
    color: #16a34a
}

.info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f6f9ff;
    border: 1px solid #e6edff;
    border-radius: 10px;
    padding: 14px
}

.info-card .info-icon {
    font-size: 20px;
    color: #2B66F6
}

.contact-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eef2ff;
    border-radius: 12px;
    padding: 12px;
    height: 100%
}

.contact-card .cc-icon {
    font-size: 20px;
    color: #2B66F6
}

.contact-card a {
    word-break: break-word
}

@media (max-width: 991.98px) {
    .hero-5 .hero-image {
        display: grid;
        place-items: center;
        margin-top: 12px;
    }

    .hero-5 .hero-image>img {
        display: block;
        margin: 0 auto;
        max-width: min(420px, 90%);
        height: auto;
    }
}

.hero-image>img {
    margin-left: -250px;
}

.circle-animation {
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.whatsapp_chat_support {
    z-index: 11 !important;
    right: 100px !important;
    position: fixed;
    bottom: 24px;
}

.hero-swiper {
    position: relative;
    overflow: hidden;
}

.hero-swiper .swiper-slide {
    height: auto;
}

.hero-swiper .swiper-wrapper {
    align-items: stretch;
}

.hero-swiper .swiper-slide>section.hero-5 {
    background-size: cover;
    background-position: center;
}

/* Flechas/puntos (ajusta a tu diseño si ya tienes estilos) */
.hero-swiper-prev,
.hero-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    z-index: 5;
    cursor: pointer;
}

.hero-swiper-prev {
    left: 16px;
}

.hero-swiper-next {
    right: 16px;
}

.hero-swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 5;
}

/* Hero estático full-bleed */
.hero-static {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-static-img {
    display: block;
    width: 100%;
    height: auto;
    /* altura automática para respetar proporción */
    object-fit: cover;
    /* asegura buen encuadre si hay contenedores más altos */
}