<style>
        body {
            font-family: 'Inter', sans-serif;
            background-color: #111827; /* Gris oscuro */
        }
        .font-montserrat {
            font-family: 'Montserrat', sans-serif;
        }
        .font-poppins {
            font-family: 'Poppins', sans-serif;
        }
        .gradient-text {
            background: linear-gradient(to right, #7C3AED, #06B6D4); /* Violeta neón a Cian eléctrico */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .cta-button {
            background-color: #7C3AED;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            background-color: #8b5cf6; /* Un violeta más claro para el hover */
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
        }
        .ring-violet {
            --tw-ring-color: #7C3AED;
        }
        /* Estilos para el conteo regresivo */
        #countdown-container {
            display: flex;
            gap: 1rem;
            justify-content: left;
            margin-bottom: 3rem;
        }
        .countdown-box {
            background-color: rgba(124, 58, 237, 0.1); /* Violeta con opacidad */
            border: 1px solid #7C3AED;
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            text-align: center;
            width: 120px;
        }
        .countdown-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.25rem;
            font-weight: 700;
            color: #06B6D4; /* Cian eléctrico */
            line-height: 1;
        }
        .countdown-label {
            font-family: 'Poppins', sans-serif;
            font-size: 0.875rem;
            color: #d1d5db; /* gray-300 */
            text-transform: uppercase;
            margin-top: 0.25rem;
            display: block;
        }
        #countdown-expired {
            font-size: 1.5rem;
            font-weight: 600;
            color: #06B6D4;
            margin-bottom: 2rem;
        }
/* =================================== */
/* ESTILOS PARA LA PÁGINA DE GRACIAS */
/* =================================== */

.thank-you-card {
    background-color: #1f2937; /* gray-800 */
    border: 1px solid #7C3AED; /* Violeta Neón */
    border-radius: 1.5rem; /* rounded-3xl */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 40px rgba(124, 58, 237, 0.3); /* Sombra y efecto de brillo */
    padding: 2.5rem; /* p-10 */
    text-align: center;
}

.thank-you-icon {
    width: 6rem; /* w-24 */
    height: 6rem; /* h-24 */
    margin: 0 auto 1.5rem auto; /* mx-auto mb-6 */
    background-color: rgba(6, 182, 212, 0.1); /* Cian con opacidad */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06B6D4; /* Cian Eléctrico */
}

.next-steps-list {
    text-align: left;
    max-width: 400px;
    margin: 2rem auto 0 auto;
    list-style: none;
    padding-left: 0;
}

.next-steps-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.next-steps-list .step-number {
    background-color: #7C3AED; /* Violeta Neón */
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
}

/* ===================================== */
/* ESTILOS PARA LA PÁGINA DE REGISTRO */
/* ===================================== */

.registration-card {
    background-color: #1f2937; /* gray-800 */
    border: 1px solid #06B6D4; /* Cian Eléctrico */
    border-radius: 1.5rem; /* rounded-3xl */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 0 40px rgba(6, 182, 212, 0.3); /* Sombra y brillo cian */
    padding: 2.5rem; /* p-10 */
    text-align: center;
}

.hubspot-form-container {
    margin-top: 2rem;
    text-align: left; /* Alinea las etiquetas del formulario a la izquierda */
}

/* =================================== */
/* ESTILOS PARA LA SECCIÓN DE REQUISITOS */
/* =================================== */

.requirements-section {
    background-color: #1f2937; /* gray-800 */
    border-radius: 1.5rem; /* rounded-3xl */
    padding: 3rem 2rem; /* p-12 lg:p-16 */
    margin-top: 5rem; /* mt-20 */
    border: 1px solid #06B6D4; /* Cian Eléctrico */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 0 30px rgba(6, 182, 212, 0.2); /* Sombra y brillo cian */
}

.requirements-grid {
    display: grid;
    gap: 2rem; /* gap-8 */
    grid-template-columns: 1fr; /* Una columna por defecto */
}

@media (min-width: 768px) { /* md:grid-cols-2 */
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.requirement-item {
    background-color: #111827; /* gray-900 */
    padding: 1.5rem; /* p-6 */
    border-radius: 1rem; /* rounded-xl */
    border: 1px solid #374151; /* gray-700 */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: #7C3AED; /* Violeta Neón en hover */
}

.requirement-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #06B6D4; /* Cian Eléctrico */
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease-in-out;
}

.requirement-item:hover::before {
    transform: scale(20);
    opacity: 0.05;
}

.requirement-item h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem; /* text-xl */
    color: #FFFFFF;
    margin-bottom: 0.75rem; /* mb-3 */
    position: relative;
    z-index: 1; /* Asegura que el texto esté sobre el efecto hover */
}

.requirement-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem; /* text-base */
    color: #CBD5E1; /* slate-300 */
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.requirement-item svg {
    color: #06B6D4; /* Cian Eléctrico */
    width: 1.5rem; /* w-6 */
    height: 1.5rem; /* h-6 */
    margin-right: 0.5rem; /* mr-2 */
    vertical-align: middle;
}

.attention-box {
    background-color: #111827; /* gray-900 */
    border-left: 4px solid #FCD34D; /* Amarillo */
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
    color: #FCD34D; /* Amarillo */
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
}

.attention-box p {
    margin: 0;
    color: #FCD34D;
}

.attention-box strong {
    color: #FFFFFF; /* Blanco para texto fuerte */
}

    </style>