.heroban{
background: rgb(50,56,79);
background: linear-gradient(90deg, rgba(50,56,79,1) 26%, rgba(81,100,170,1) 76%);
}


.formulario {
background-color: rgba(12, 26, 127, 0.8);
border-radius: 10px;
padding: 20px;
}
.modal-content {
max-width: 600px;
margin: 0 auto;
}
.modal-header {
text-align: center;
margin-bottom: 30px;
}
.modal-title {
color: #333;
}

.scrollable {
overflow-y: auto; /* Agrega scroll vertical si es necesario */
max-height: 80vh; /* Establece una altura máxima del 80% de la altura de la ventana */
}
h1 {
    font-size: 60px;
    font-weight: bold;
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
    h1 {
        font-size: 30px; /* La mitad del tamaño original */
    }
}

.button-1 {
  align-items: center;
  background: rgb(42,73,193);
    background: linear-gradient(90deg, rgba(42,73,193,1) 0%, rgba(191,28,28,1) 100%);
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  height: 80px;
    width: 250px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}



.button-1:hover,
.button-1:focus {
background-color: #F082AC;
}



/* Estilos base */
.img-hover-zoom,
.img-hover-zoom3,
.img-hover-2 {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover,
.img-hover-zoom3:hover,
.img-hover-2:hover {
    transform: scale(2);
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
    .img-hover-zoom:hover,
    .img-hover-zoom3:hover,
    .img-hover-2:hover {
        transform: scale(1.5); /* Escala el tamaño en dispositivos móviles */
        position: relative; /* Se mantiene la posición relativa */
    }
}



.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: bounce 1s infinite;
}

.whatsapp-button img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}


nav{
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 100px;
  /*padding: 5px 60px;*/
  box-sizing: border-box;
  transition: .5s;
  z-index: 5;
  opacity: 1;
}
nav.black{
  background: rgba(0,0,0,.8);
  height: 80px;
  padding: 10px 50px;
}
nav .logo{
  float: left;
}
nav .logo img{
  height: 80px;
  transition: .5s;
}
nav.black .logo img{
  height: 60px;
}
nav ul{
  float: left;
  margin: 0;
  padding: 0;
  display: flex;
}
nav ul li{
  list-style: none;
  margin-top: 25px;
  line-height: none;
  font-size: 18px;
  color: white;
  padding: 5px 15px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 1s;
  text-shadow: 0 0 10px #000;
}

nav.black ul li{
  color: #fff;
  line-height: 20px;
}

nav ul li.active,
nav ul li:hover{
  color: orange;
}

@media (max-width: 900px) {
  nav ul {
    
    position: absolute;
    
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    text-align: center;
  }

  nav ul.active {
    display: block;
  }

  nav ul li {
    display: block;
    
  }

  nav .menu-toggle {
    display: none;

    
    right: 20px;
    cursor: pointer;
    z-index: 999;
  }

  nav .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
  }

  nav .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  nav .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  nav .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  main {
  padding-top: 70px; /* Adjust based on nav height */
  /* Add additional styles for main content */
}
}


.enlace {
  color: #007bff; /* Color del texto */
  text-decoration: none; /* Quitar subrayado por defecto */
  font-weight: bold; /* Opcional: hacer el texto en negrita */
  /* Otros estilos según tus preferencias */
}

.enlace:hover {
  color: #0056b3; /* Color del texto al pasar el ratón */
  /* Otros estilos de hover según tus preferencias */
}