html {
  scroll-behavior: smooth;
}

:root {
  --purple: #2E038C;
  --green: #8DBF41;
  --orange: #A64D2D;
  --neon-green: #52FD00;
}

.btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  background-color: var(--neon-green);
  color: #000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  animation: pulse 4s ease-in-out infinite;
}
.btn-primary:hover,
.btn-primary:focus {
  transform: scale(1.05);
  outline: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

.card {
  background-color: transparent;
  padding: 0rem;
  border-style: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.card img {
  width: 100%;
  height: clamp(180px, 30vw, 220px);
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}
.card:hover,
.card:focus-within {
  transform: translateY(-5px);
}

@keyframes float {
  0%   { transform: translateY(0) translateX(0); opacity: 1; }
  50%  { transform: translateY(-30px) translateX(10px); opacity: 0.8; }
  100% { transform: translateY(0) translateX(0); opacity: 1; }
}
.balloon {
  animation: float 6s ease-in-out infinite;
}

.map-container,
figure.map-container {
  position: relative;
  padding-top: 56.25%;
}
.map-container iframe,
figure.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

blockquote {
  border-left: 4px solid var(--purple);
  padding-left: 1rem;
  font-style: italic;
  color: #555;
  position: relative;
  margin: 1.5rem 0;
}
blockquote::before {
  content: "“";
  font-size: 2rem;
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  color: var(--purple);
}
blockquote::after {
  content: "”";
  font-size: 2rem;
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  color: var(--purple);
}

.whatsapp-button {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #25D366;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  z-index: 1000;
}
.whatsapp-button:hover,
.whatsapp-button:focus {
  transform: scale(1.1);
  outline: none;
}
.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
}

@media (max-width: 640px) {
  .btn-primary {
    width: 100%;
    text-align: center;
  }
.bg-purple-800 {
}
}

form {
  margin: 0;
  padding: 0;
}
.servicio-swiper .swiper-slide img {
  width: 100%;
  min-height: clamp(200px, 40vh, 288px);
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
  display: block;
}
.pkg-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #fff;
}

.pkg-frame .carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;     
  display: block;
}