 .btn-primary {
    background: rgb(99 102 241 / var(--tw-bg-opacity, 1));
 }

 .btn {
    border-radius: 100px!important;
    padding: 14px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 16px;
 }
 .py-5 {
    padding-top: 10rem !important;
    padding-bottom: 4rem !important;
}
.fa-circle-check {
    color: #6366f1;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

/* Background Animation */

/* Estilos del header */
.header {
    width: 100%;
    background: linear-gradient(to right, #08275b, #ededed, #08275b6e);
    color: #fcfcfc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Burbujas */
.circles {
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 0; /* detrás del contenido */
}

.circles div {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    bottom: -150px;
    animation: animate 25s linear infinite;
    border-radius: 50%;
}

/* Diferentes tamaños y posiciones */
.circles div:nth-child(1){ left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.circles div:nth-child(2){ left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.circles div:nth-child(3){ left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.circles div:nth-child(4){ left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.circles div:nth-child(5){ left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.circles div:nth-child(6){ left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.circles div:nth-child(7){ left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.circles div:nth-child(8){ left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.circles div:nth-child(9){ left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.circles div:nth-child(10){ left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }

/* Animación */
@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

/* Para que el texto esté encima */
.header h1,
.header p {
    position: relative;
    z-index: 1;
}


html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* oculta scroll horizontal */
}

p {
  font-size: 16px;
}

@media (max-width: 480px) {
    .btn-movil {
    border-radius: 100px !important;
    padding: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    margin: 20px;
   }
}