* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.background {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #f5bc19;
  overflow: hidden;
}
.background .desktop-wave {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.background .mobile-wave {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.background .content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin: 0rem auto;
  border: 0px solid red;
}
.background .content .izquierda {
  width: 55%;
  height: auto;
  padding: 20px 20px 20px 40px;
}
.background .content .izquierda .hero-text {
  max-width: 650px;
}
.background .content .izquierda .hero-text .logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}
.background .content .izquierda .hero-text .subtitle {
  display: block;
  color: rgba(29, 63, 90, 0.7);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 0.8rem;
}
.background .content .izquierda .hero-text h1 {
  color: #1d3f5a;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.background .content .izquierda .hero-text p {
  color: rgba(29, 63, 90, 0.85);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 550px;
}
.background .content .izquierda .hero-text .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.background .content .izquierda .hero-text .btn {
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
  text-align: center;
  min-width: 160px;
}
.background .content .izquierda .hero-text .btn-primary {
  background: #1d3f5a;
  color: white;
}
.background .content .izquierda .hero-text .btn-primary:hover {
  transform: translateY(-3px);
  background: rgb(19.0571428571, 41.4, 59.1428571429);
}
.background .content .izquierda .hero-text .btn-secondary {
  background: transparent;
  border: 2px solid #1d3f5a;
  color: #1d3f5a;
}
.background .content .izquierda .hero-text .btn-secondary:hover {
  background: #f5bc19;
  border-color: white;
  color: #1d3f5a;
  transform: translateY(-3px);
}
.background .content .derecha {
  width: 45%;
  height: auto;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.background .content .derecha .hero-image {
  width: 65%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}
.modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  border: 0px solid red;
  background: white;
  border-radius: 15px;
  padding: 5px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.modal .modal-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}
.modal .modal-content .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  color: #1d3f5a;
  transition: 0.3s ease;
}
.modal .modal-content .close:hover {
  color: #f5bc19;
  transform: scale(1.15);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.whatsappcontacto {
  width: 4rem;
  height: 4rem;
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 4000;
  cursor: pointer;
  overflow: visible;
}
.whatsappcontacto::before, .whatsappcontacto::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0;
  z-index: -1;
  animation: radar-pulse 2.5s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
.whatsappcontacto::after {
  animation-delay: 0.8s;
}
.whatsappcontacto #whatsapp {
  width: 100%;
  height: 100%;
  transition: all 2s;
  transform: scale(1);
  border: 0px solid red;
  margin: 0;
  object-fit: contain;
}
.whatsappcontacto #whatsapp:hover {
  transform: scale(1.1);
  transition: all 2s;
}

@keyframes radar-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .background .desktop-wave {
    display: none;
  }
  .background .mobile-wave {
    display: block;
  }
  .background .content {
    flex-direction: column;
    height: auto;
  }
  .background .content .izquierda {
    width: 100%;
    height: auto;
    padding: 1rem;
  }
  .background .content .izquierda .hero-text {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .background .content .izquierda .hero-text .logo {
    max-width: 140px;
    margin: 0 auto 1.5rem;
  }
  .background .content .izquierda .hero-text .subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
  }
  .background .content .izquierda .hero-text h1 {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .background .content .izquierda .hero-text p {
    max-width: 90%;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .background .content .izquierda .hero-text .buttons {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
  }
  .background .content .izquierda .hero-text .btn {
    min-width: 180px;
    padding: 12px 24px;
  }
  .background .content .derecha {
    width: 100%;
    height: auto;
  }
  .whatsappcontacto {
    width: 3rem;
    height: 3rem;
    right: 2rem;
    bottom: 2em;
  }
}

/*# sourceMappingURL=style.css.map */
