@charset "utf-8";
/* CSS Document */
/* =====================================================
   SLIDER - ITEMS
   ===================================================== */
.ac-slide .carousel-item {
    height: 450px;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}
/* =====================================================
   SLIDE ACTIVO
   ===================================================== */
.ac-slide .carousel-item.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}
/* =====================================================
   SLIDE QUE ENTRA
   ===================================================== */
.ac-slide .carousel-item-next {
    transform: translateX(100%);
    opacity: 1;
}
/* =====================================================
   SLIDE QUE SALE
   ===================================================== */
.ac-slide .carousel-item-prev {
    transform: translateX(-100%);
    opacity: 1;
}
/* =====================================================
   MOVIMIENTO
   ===================================================== */
.ac-slide .carousel-item-next.carousel-item-start,
.ac-slide .carousel-item-prev.carousel-item-end {
    transform: translateX(0);
}
/* Fade del anterior */
.ac-slide .carousel-item.active.carousel-item-start {
    transform: translateX(-20%);
    opacity: 0;
}
.ac-slide .carousel-item.active.carousel-item-end {
    transform: translateX(20%);
    opacity: 0;
}
/* =====================================================
   IMAGEN
   ===================================================== */
.ac-slide .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* =====================================================
   CAPTION BASE
   ===================================================== */
.ac-slide .carousel-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
    user-select: none;
    z-index: 1;
}
/* =====================================================
   POSICIÓN ALTERNADA
   IMPARES = IZQUIERDA
   ===================================================== */
.ac-slide .carousel-item:nth-child(odd) .carousel-caption {
    justify-content: flex-start;
    text-align: left;
}
.ac-slide .carousel-item:nth-child(odd) .ac-sl-det {
    margin-left: 0;
    margin-right: auto;
}
/* =====================================================
   POSICIÓN ALTERNADA
   PARES = DERECHA
   ===================================================== */
.ac-slide .carousel-item:nth-child(even) .carousel-caption {
    justify-content: flex-end;
    text-align: right;
}
.ac-slide .carousel-item:nth-child(even) .ac-sl-det {
    margin-left: auto;
    margin-right: 0;
}
/* Etiqueta hacia la derecha */
.ac-slide .carousel-item:nth-child(even) .ac-sl-det-label {
    justify-content: flex-end;
}
/* Descripción hacia la derecha */
.ac-slide .carousel-item:nth-child(even) .ac-sl-det-description {
    margin-left: auto;
    margin-right: 0;
}
/* Beneficios alineados a la derecha */
.ac-slide .carousel-item:nth-child(even) .ac-sl-det-features {
    text-align: right;
}
/* Acciones hacia la derecha */
.ac-slide .carousel-item:nth-child(even) .ac-sl-det-actions {
    justify-content: flex-end;
}
/* =====================================================
   ANIMACIÓN TEXTO
   ===================================================== */
.ac-slide .carousel-caption h2,
.ac-slide .carousel-caption p,
.ac-slide .sl-title,
.ac-slide .sl-detalles {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.ac-slide .carousel-item.active .carousel-caption h2,
.ac-slide .carousel-item.active .sl-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
.ac-slide .carousel-item.active .carousel-caption p,
.ac-slide .carousel-item.active .sl-detalles {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
/* =====================================================
   TIPOGRAFÍA GENERAL
   ===================================================== */
.ac-slide .sl-title {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 700;
}
.ac-slide .sl-detalles {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    max-width: 700px;
    margin: 0;
}
/* =====================================================
   INDICADORES
   ===================================================== */
.ac-slide .carousel-indicators {
    z-index: 10;
}
.ac-slide .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.7;
}
.ac-slide .carousel-indicators .active {
    opacity: 1;
}
/* =====================================================
   FLECHAS
   ===================================================== */
.ac-slide .carousel-control-prev,
.ac-slide .carousel-control-next {
    width: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
}
/* Mostrar al hover */
.ac-slide:hover .carousel-control-prev,
.ac-slide:hover .carousel-control-next {
    opacity: 1;
}
/* Posición */
.ac-slide .carousel-control-prev {
    left: 0;
}
.ac-slide .carousel-control-next {
    right: 0;
}
/* =====================================================
   ESTILOS ANTERIORES
   ===================================================== */
.sl-detalles {
    font-family: "Roboto Condensed", sans-serif;
}
.sl-detalles .ac-sl-title {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 100%;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}
.sl-detalles .ac-sl-subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 0.75);
}
.sl-detalles .ac-sl-list {
    list-style: none;
}
.sl-detalles .ac-sl-list li {
    font-size: 1rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}
.sl-detalles .ac-sl-list span {
    font-size: 1rem;
    margin-right: 3px;
}
/* =====================================================
   AC - SLIDER DETAILS
   ===================================================== */
.ac-sl-det {
    width: 100%;
    max-width: 650px;
    color: #ffffff;
}
/* =====================================================
   ETIQUETA
   ===================================================== */
.ac-sl-det-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}
.ac-sl-det-label__line {
    width: 34px;
    height: 2px;
    background: #1676d2;
}
.ac-sl-det-label__text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #c7cbd3;
}
/* =====================================================
   TÍTULO
   ===================================================== */
.ac-sl-det-title {
    margin: 0;
    max-width: 620px;
    font-size: clamp(32px, 4.4vw, 42px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -1.2px;
    color: #f5f5f5;
}
.ac-sl-det-title__highlight {
    /*display: block;*/
    color: #287ce0;
}
/* =====================================================
   DESCRIPCIÓN
   ===================================================== */
.ac-sl-det-description {
    max-width: 580px;
    margin: 10px 0 0;
    font-size: 17px;
    line-height: 1.3;
    color: #d1d6dd;
}
.ac-sl-det-description span {
    color: #4d9fff;
}
/* =====================================================
   BENEFICIOS
   ===================================================== */
.ac-sl-det-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 28px;
}
.ac-sl-det-feature {
    position: relative;
    min-width: 0;
    padding: 0 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ac-sl-det-feature:first-child {
    padding-left: 0;
}
.ac-sl-det-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 145px;
    background: rgba(44, 132, 220, 0.35);
}
.ac-sl-det-feature__icon {
    display: flex;
    align-items: center;
    height: 40px;
    margin-bottom: 10px;
}
.ac-sl-det-feature__icon i {
    font-size: 34px;
    line-height: 1;
    color: #147de0;
}
.ac-sl-det-feature__content h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #f1f3f5;
}
.ac-sl-det-feature__content p {
    margin: 9px 0 0;
    font-size: 12px;
    line-height: normal;
    color: #b8bec8;
}
/* =====================================================
   ACCIONES
   ===================================================== */
.ac-sl-det-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}
/* =====================================================
   BOTÓN BASE
   ===================================================== */
.ac-sl-det-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
/* =====================================================
   BOTÓN PRINCIPAL
   ===================================================== */
.ac-sl-det-button--primary {
    gap: 12px;
    min-height: 58px;
    padding: 7px 28px 7px 10px;
    border-radius: 50px;
    background: linear-gradient(135deg, #2d8df0, #1265c4);
    color: #ffffff;
}
.ac-sl-det-button--primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(30, 120, 220, 0.35);
}
.ac-sl-det-button__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
}
.ac-sl-det-button__icon i {
    font-size: 17px;
    color: #277fe0;
}
.ac-sl-det-button--primary .ac-sl-det-button__text {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}
/* =====================================================
   BOTÓN SECUNDARIO
   ===================================================== */
.ac-sl-det-button--secondary {
    gap: 13px;
    color: #d6dbe2;
}
.ac-sl-det-button--secondary:hover {
    color: #ffffff;
    transform: translateX(4px);
}
.ac-sl-det-button__play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #1d82e0;
    border-radius: 50%;
    color: #ffffff;
}
.ac-sl-det-button__play i {
    margin-left: 2px;
    font-size: 15px;
}
.ac-sl-det-button--secondary .ac-sl-det-button__text {
    font-size: 12px;
    line-height: 1.55;
    text-transform: uppercase;
}
.ac-sl-det-button--secondary strong {
    color: #338fe8;
    font-weight: 600;
}
/* =====================================================
   TABLET
   ===================================================== */
@media (max-width: 992px) {
    .ac-slide .carousel-item {
        height: 70vh;
        min-height: 400px;
    }
}
@media (max-width: 991.98px) {
    .ac-sl-det {
        max-width: 100%;
    }
    .ac-sl-det-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 0;
    }
    .ac-sl-det-feature:nth-child(2)::after {
        display: none;
    }
}
/* =====================================================
   MÓVIL
   ===================================================== */
@media (max-width: 767.98px) {
  	/* OCULTAR IMAGEN DEL SLIDER EN CELULARES */
    .ac-slide .carousel-item img {
        opacity: 0;
    }
  
    .ac-slide .carousel-item {
        height: 60vh;
        min-height: 320px;
    }
    .ac-slide .sl-detalles {
        padding: 0 1rem;
    }
    /* TODOS LOS SLIDES CENTRADOS */
    .ac-slide .carousel-item .carousel-caption {
        justify-content: center;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .ac-sl-det {
        max-width: 520px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    /* ETIQUETA CENTRADA */
    .ac-slide .carousel-item .ac-sl-det-label {
        justify-content: center;
        margin-bottom: 10px;
    }
    /* DESCRIPCIÓN CENTRADA */
    .ac-slide .carousel-item .ac-sl-det-description {
        margin-left: auto;
        margin-right: auto;
    }
    .ac-sl-det-title {
        font-size: 28px;
    }
    .ac-sl-det-description {
        font-size: 14px;
    }
    /* OCULTAR BENEFICIOS EN MÓVIL */
    .ac-sl-det-features {
        display: none;
    }
    /* ACCIONES CENTRADAS */
    .ac-slide .carousel-item .ac-sl-det-actions {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}
}
/* =====================================================
   MÓVIL PEQUEÑO
   ===================================================== */
@media (max-width: 480px) {
    .ac-sl-det-title {
        font-size: 24px;
    }
    .ac-sl-det-description {
        font-size: 12px;
        max-width: 340px;
    }
    .ac-sl-det-actions {
        margin-top: 16px;
        gap: 12px;
    }
    .ac-sl-det-button--primary {
        min-height: 42px;
        padding-right: 14px;
    }
    .ac-sl-det-button__icon {
        width: 30px;
        height: 30px;
    }
}