/* --- Sección de Inscripción --- */
.body-inscribite {
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* El contenedor del formulario */
.call-to-action {
    width: 100%;
    max-width: 700px; /* Un poco más ancho para que respire */
    position: relative;
    z-index: 2;
}

/* Título de la sección */
#insc-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Elementos decorativos de fondo (opcional, si quieres que se vea pro) */
.body-inscribite::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color, #4f46e5);
    filter: blur(100px);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 50%;
}