.cta-box {
    border-radius: 40px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(13, 110, 253, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    z-index: 1;
    position: relative;
    overflow: hidden; /* Volvemos a ocultar el exceso de blobs */
}

/* Blobs decorativos */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}

.cta-blob-1 {
    width: 300px;
    height: 300px;
    background: #0d6efd;
    top: -150px;
    right: -100px;
}

.cta-blob-2 {
    width: 250px;
    height: 250px;
    background: #6f42c1;
    bottom: -100px;
    left: -50px;
}

.shadow-glow {
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
    transition: 0.3s;
}

.shadow-glow:hover {
    box-shadow: 0 0 35px rgba(13, 110, 253, 0.6);
}

/* Estilo para el botón magnético */
.btn-magnetic {
    display: inline-block;
    position: relative;
    z-index: 10;
    opacity: 1; /* Forzar visibilidad por CSS */
}

/* Contenedor del botón */
.cta-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    position: relative;
    z-index: 5;
    min-height: 80px;
}

.social-link {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    color: #0d6efd;
    transform: translateY(-5px);
    text-shadow: 0 0 10px #0d6efd;
}

@media screen and (max-width: 768px) {
    .cta-box {
        padding: 40px 20px !important;
        margin: 20px 15px !important;
        border-radius: 25px !important;
    }
    .cta-box h2 {
        font-size: 1.8rem;
    }
    .cta-blob-1 {
        width: 150px;
        height: 150px;
        top: -75px;
        right: -50px;
    }
    .cta-blob-2 {
        width: 120px;
        height: 120px;
        bottom: -60px;
        left: -30px;
    }
}
