/* ============================================
   CTA FINAL - AMAYALAB
   Cierre espectacular con conversión directa
   ============================================ */

.cta-final {
    padding: 5rem 2.5rem;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.cta-final-contenedor {
    max-width: 700px;
    margin: 0 auto;
}

/* ===== TARJETA ===== */
.cta-final-card {
    background: linear-gradient(150deg, #0A1F3A 0%, #0D2B4E 50%, #0A1F3A 100%);
    border-radius: 32px;
    padding: 4rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 31, 58, 0.35);
}

/* Decoración de fondo */
.cta-final-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(15, 129, 242, 0.2), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-final-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== ÍCONO ===== */
.cta-final-icono {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F81F2, #0A5DB0);
    border-radius: 50%;
    font-size: 2.2rem;
    color: #FFFFFF;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(15, 129, 242, 0.4);
}

.cta-final-pulso {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(15, 129, 242, 0.3);
    border-radius: 50%;
    animation: pulsoGrande 2.5s ease-in-out infinite;
}

/* ===== TÍTULO ===== */
.cta-final-titulo {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.texto-gradiente {
    background: linear-gradient(135deg, #0F81F2, #25D366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TEXTO ===== */
.cta-final-texto {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* ===== BOTONES ===== */
.cta-final-botones {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 350px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-final-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #FFFFFF;
    padding: 18px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.cta-final-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
}

.cta-btn-onda {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-final-btn-whatsapp:hover .cta-btn-onda {
    left: 100%;
}

.cta-final-btn-llamar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: #FFFFFF;
    padding: 16px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.35s ease;
}

.cta-final-btn-llamar:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ===== CONFIANZA ===== */
.cta-final-confianza {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
}

.cta-final-confianza i {
    color: #25D366;
    margin-right: 4px;
}

/* ===== ANIMACIÓN ===== */
@keyframes pulsoGrande {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ===== AOS ===== */
[data-aos] {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cta-final {
        padding: 4rem 1.5rem;
    }
    
    .cta-final-card {
        padding: 3rem 1.5rem;
        border-radius: 24px;
    }
    
    .cta-final-titulo {
        font-size: 1.6rem;
    }
    
    .cta-final-texto {
        font-size: 0.95rem;
    }
    
    .cta-final-icono {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .cta-final-pulso {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .cta-final-titulo {
        font-size: 1.3rem;
    }
    
    .cta-final-btn-whatsapp {
        padding: 15px 22px;
        font-size: 1rem;
    }
    
    .cta-final-btn-llamar {
        padding: 14px 22px;
        font-size: 0.9rem;
    }
}