/* ==========================================================================
    SLIDER #1
   ========================================================================== */
/* FONDO */
.bg-slider-tech-1 {
    background-color: #0b192c;
    background-image: 
        radial-gradient(rgba(0, 212, 255, 0.15) 1px, transparent 0),
        linear-gradient(135deg, #0b192c 0%, #1e3e62 100%);
    background-size: 24px 24px, 100% 100%;
}
/*ICONO CFE*/
.icono-slider{
    width: 25%;
}

/*BOTON*/
.btn-carrusel {
    display: inline-block;
    background: var(--primary);
    color: var(--snow);
    border: 1px solid var(--primary);
    padding: 12px 35px;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
    margin-top: 20px;
    margin-right: 25px;
}
.btn-carrusel:hover {
    color: var(--snow);
    background-color: transparent;
    border-color: var(--primary-hover);
    box-shadow: 0 0 15px rgba(0, 64, 255, 0.42),
        0 0 30px rgba(3, 54, 59, 0.4);
    transform: translateY(-2px) scale(1.02);
}
.btn-carrusel:active {
    transform: translateY(1px);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

/*ANIMACIONES */
/*ANIMACION TITULOS*/
.animacion_slider_1 {
    animation: tracking-in-expand-fwd 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
.animacion_slider_1:nth-child(1) { animation-delay: 0s; }
.animacion_slider_1:nth-child(2) { animation-delay: 0.5s; }

/*ANIMACION CARDS*/
.animacion_card_slider_1{
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.animacion_card_slider_1:nth-child(1){animation-delay: 1s;}
.animacion_card_slider_1:nth-child(2){animation-delay: 1.5s;}

/*ANIMACION BOTON*/
.animacion_boton_s1 {
    animation: tracking-in-contract-bck-bottom 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) 1s both,
               pulsate-fwd 1.5s ease-in-out infinite both;
    box-shadow: 0 0 20px 0px rgb(44, 110, 209);
}
.animacion_boton_s1:nth-child(1) { animation-delay: 2s; }


/* ==========================================================================
    COMPONENTES DEL MODAL SLIDER 1
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--success);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--success);
    opacity: 0.7;
    animation: pulse-whatsapp 2s infinite;
    z-index: -1;
}

.whatsapp-float:hover {
    background-color: var(--success-dark);
    transform: scale(1.1);
    color: #fff;
}

.tooltip-text {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
}

.icon-side-container {
    background-color: rgba(39, 93, 173, 0.08);
    color: var(--primary);
    width: 65px;
    height: 65px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.title-inline {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4a4b53;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.price-inline {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    line-height: 1.1;
}

.currency-inline {
    font-size: 0.9rem;
    color: #adb5bd;
    font-weight: 600;
}

.description-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 4px;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #a0a0a0;
}

.link-cotiza {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

/* Card destacado con hover lateral */
.card-highlight {
    background: #ffffff;
    border: 1px solid #f1f1f1;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.card-highlight:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 6px 25px rgba(39, 93, 173, 0.1);
}

/* Tarjetas de los pasos de procesos */
.process-step-card {
    background-color: #f8f9fa;
    border: 1px solid #eef0f2;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.process-step-card:hover {
    background-color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(39, 93, 173, 0.1);
}

.step-icon {
    background-color: rgba(39, 93, 173, 0.1);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.process-step-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--gray);
    text-transform: uppercase;
}

.process-step-card p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

/* Tarjeta de Coberturas */
.coverage-card {
    background: var(--primary-dark);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    margin-top: 0px;
}

.coverage-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.coverage-card ul li::before {
    content: '→';
    margin-right: 10px;
    opacity: 0.7;
}


/* ==========================================================================
    KEYFRAMES DE ANIMACIONES INTERNAS MODALES
   ========================================================================== */

.animacion-card-modal {
    animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.animacion-card-modal:nth-child(1) { animation-delay: 0.2s; }
.animacion-card-modal:nth-child(2) { animation-delay: 0.4s; }
.animacion-card-modal:nth-child(3) { animation-delay: 0.6s; }

.animacion-card-proceso-izquierda {
    animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.animacion-card-proceso-izquierda:nth-child(0) { animation-delay: 0.4s; }
.animacion-card-proceso-izquierda:nth-child(1) { animation-delay: 0.6s; }
.animacion-card-proceso-izquierda:nth-child(2) { animation-delay: 0.8s; }
.animacion-card-proceso-izquierda:nth-child(3) { animation-delay: 1s; }
.animacion-card-proceso-izquierda:nth-child(4) { animation-delay: 1.2s; }
.animacion-card-proceso-izquierda:nth-child(5) { animation-delay: 1.4s; }
.animacion-card-proceso-izquierda:nth-child(6) { animation-delay: 1.6s; }

