@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{

background-color: #100628;

font-family: "Poppins", sans-serif;

}

.btn-cierre,.btn-cierre2,.btn-cierre3{

    position: relative;
}
.btn-cierre::after,
.btn-cierre2::after,
.btn-cierre3::after{
    content: attr(data-date);
    position: absolute;
    background-color: #ff2600b3;
    top: 0;
    right: -50px;
    color: white;
    width: 200px;
    transform: rotate(17deg) ;
    text-align: center;
    padding: 3px;
    font-weight: bold;
    
}


.cajaBtnForm {
    text-align: center;
}

.cajaBtnForm > a  {
    text-align: center;
}

.banderaPrincipal {
    background-color: #07C4FC;
    padding: 0.5rem 0;
    color: #100628;
}

.fixed a[href*="whatsapp"], 
.fixed a[href*="chat.whatsapp"] {
    background-color: #25D366 !important;
    background: #25D366 !important;
    width: 100% !important;
}

/* Contenedor del formulario con efectos */
.cajaForm {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    border: 2px solid #07C4FC;
    box-shadow: 
        0 0 20px rgba(7, 196, 252, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo animado */
.cajaForm::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #07C4FC, #3B82F6, #07C4FC);
    border-radius: inherit;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Mejorar el iframe */
.cajaForm iframe {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
    @media (width >= 64rem) {
        max-width: 100%;
    }
}