:root {
  --green: #5edd94;
  --green-light: #7fe8b0;
  --green-dark: #4bc77d;
  --purple: #a685c9;
  --purple-light: #c3a3e6;
  --purple-dark: #8b6fb3;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f5f5f5;
  --gray-dark: #333333;
}

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

/* Mobile-first: Reset base */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  width: 100%;
}

body {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  color: var(--white);
  min-height: 100vh;
  width: 100%;
  font-weight: 300;
}

/* Header sticky */
header {
  position: sticky;
  top: 0;
}

/* Secciones sin espacios */
.section, .banner, .slider-container, .image-rotator, .reserva-section {
  margin: 0;
  padding: 0;
}

/* Imágenes como bloque */
img {
  display: block;
}

/* Fuente Ador Hairline Medium para agenda */
.agenda-form,
.agenda-form input,
.agenda-form select,
.agenda-form textarea,
.agenda-form label,
.modal-agenda h2,
.modal-agenda p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ROTADOR DE IMÁGENES */
.image-rotator {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}

.image-rotator img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.image-rotator a {
  display: block;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* Estilos del slider eliminados - ahora usamos .image-rotator */

/* BURBUJAS BOKEH FIJAS */
.bokeh-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.bokeh-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  filter: blur(1px);
}

.bubble-1 {
  width: 120px;
  height: 120px;
  left: 10%;
  top: 15%;
  opacity: 0.4;
}

.bubble-2 {
  width: 80px;
  height: 80px;
  left: 75%;
  top: 20%;
  opacity: 0.5;
}

.bubble-3 {
  width: 150px;
  height: 150px;
  left: 50%;
  top: 10%;
  opacity: 0.3;
}

.bubble-4 {
  width: 100px;
  height: 100px;
  left: 25%;
  top: 60%;
  opacity: 0.4;
}

.bubble-5 {
  width: 90px;
  height: 90px;
  left: 80%;
  top: 55%;
  opacity: 0.5;
}

.bubble-6 {
  width: 130px;
  height: 130px;
  left: 15%;
  top: 75%;
  opacity: 0.3;
}

.bubble-7 {
  width: 70px;
  height: 70px;
  left: 60%;
  top: 70%;
  opacity: 0.4;
}

.bubble-8 {
  width: 110px;
  height: 110px;
  left: 40%;
  top: 40%;
  opacity: 0.5;
}

.bubble-9 {
  width: 95px;
  height: 95px;
  left: 85%;
  top: 35%;
  opacity: 0.3;
}

.bubble-10 {
  width: 140px;
  height: 140px;
  left: 5%;
  top: 45%;
  opacity: 0.4;
}

.bubble-11 {
  width: 85px;
  height: 85px;
  left: 65%;
  top: 25%;
  opacity: 0.5;
}

.bubble-12 {
  width: 115px;
  height: 115px;
  left: 30%;
  top: 80%;
  opacity: 0.3;
}

.slide-content {
  text-align: center;
  padding: 2rem;
  max-width: 90%;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4), 
               0 2px 10px rgba(0, 0, 0, 0.3),
               0 0 5px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  color: var(--white);
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.8);
}

.slide-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.35),
               0 1px 5px rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.98);
}

.btn-slide {
  background: var(--white);
  color: var(--gray-dark);
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: var(--gray-light);
}

/* INDICADORES */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator.active {
  background: var(--white);
  width: 30px;
  border-radius: 15px;
  border-color: var(--white);
}

/* NAVEGACIÓN SLIDER */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--purple-dark);
  backdrop-filter: blur(10px);
  border: 2px solid var(--purple-dark);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.slider-nav:hover {
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

/* HEADER FLOTANTE */
.floating-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 20px;
  z-index: 2000;
  background: var(--white);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 0;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 100%;
  z-index: 2;
  margin: 0;
  padding: 0;
}

/* EFECTO DE HOJAS FLOTANTES EN EL HEADER */
/* PALABRAS FLOTANTES EN EL HEADER */
.floating-words-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-word {
  position: absolute;
  font-family: 'Advent Pro', 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--purple);
  opacity: 0.4;
  transform-origin: center;
  animation: floatWord 12s ease-in-out infinite;
  letter-spacing: 2px;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.floating-word.word-1 {
  top: 15%;
  left: -120px;
  transform: rotate(-18deg);
  animation: floatWord1 12s ease-in-out infinite;
  animation-delay: 0s;
  color: var(--green);
  font-size: 1.2rem;
}

.floating-word.word-2 {
  top: 35%;
  left: -140px;
  transform: rotate(22deg);
  animation: floatWord2 14s ease-in-out infinite;
  animation-delay: 1.5s;
  color: var(--purple);
  font-size: 1.15rem;
}

.floating-word.word-3 {
  top: 55%;
  left: -160px;
  transform: rotate(-12deg);
  animation: floatWord3 13s ease-in-out infinite;
  animation-delay: 3s;
  color: var(--green-dark);
  font-size: 1.3rem;
}

.floating-word.word-4 {
  top: 75%;
  left: -130px;
  transform: rotate(28deg);
  animation: floatWord4 15s ease-in-out infinite;
  animation-delay: 4.5s;
  color: var(--purple-dark);
  font-size: 1.1rem;
}

.floating-word.word-5 {
  top: 25%;
  left: -150px;
  transform: rotate(-25deg);
  animation: floatWord5 16s ease-in-out infinite;
  animation-delay: 6s;
  color: var(--green-light);
  font-size: 1.25rem;
}

.floating-word.word-6 {
  top: 65%;
  left: -145px;
  transform: rotate(15deg);
  animation: floatWord6 11s ease-in-out infinite;
  animation-delay: 2s;
  color: var(--purple-light);
  font-size: 1.2rem;
}

/* Animaciones individuales para cada palabra con movimientos más naturales */
@keyframes floatWord1 {
  0% {
    transform: translateX(-150px) translateY(0) rotate(-18deg);
    opacity: 0.2;
  }
  10% {
    opacity: 0.5;
    transform: translateX(0) translateY(8px) rotate(-12deg);
  }
  25% {
    transform: translateX(calc(25vw - 80px)) translateY(-15px) rotate(-5deg);
  }
  50% {
    transform: translateX(calc(50vw - 100px)) translateY(12px) rotate(8deg);
    opacity: 0.6;
  }
  75% {
    transform: translateX(calc(75vw - 60px)) translateY(-8px) rotate(18deg);
  }
  90% {
    opacity: 0.4;
    transform: translateX(calc(90vw + 20px)) translateY(5px) rotate(25deg);
  }
  100% {
    transform: translateX(calc(100vw + 180px)) translateY(-10px) rotate(32deg);
    opacity: 0.2;
  }
}

@keyframes floatWord2 {
  0% {
    transform: translateX(-170px) translateY(0) rotate(22deg);
    opacity: 0.2;
  }
  12% {
    opacity: 0.5;
    transform: translateX(0) translateY(-10px) rotate(18deg);
  }
  30% {
    transform: translateX(calc(30vw - 90px)) translateY(18px) rotate(12deg);
  }
  50% {
    transform: translateX(calc(50vw - 110px)) translateY(-12px) rotate(-5deg);
    opacity: 0.65;
  }
  70% {
    transform: translateX(calc(70vw - 50px)) translateY(8px) rotate(-15deg);
  }
  88% {
    opacity: 0.4;
    transform: translateX(calc(88vw + 30px)) translateY(-5px) rotate(-22deg);
  }
  100% {
    transform: translateX(calc(100vw + 200px)) translateY(15px) rotate(-28deg);
    opacity: 0.2;
  }
}

@keyframes floatWord3 {
  0% {
    transform: translateX(-180px) translateY(0) rotate(-12deg);
    opacity: 0.2;
  }
  8% {
    opacity: 0.5;
    transform: translateX(-20px) translateY(12px) rotate(-8deg);
  }
  35% {
    transform: translateX(calc(35vw - 100px)) translateY(-18px) rotate(5deg);
  }
  50% {
    transform: translateX(calc(50vw - 120px)) translateY(15px) rotate(15deg);
    opacity: 0.7;
  }
  65% {
    transform: translateX(calc(65vw - 70px)) translateY(-10px) rotate(22deg);
  }
  92% {
    opacity: 0.4;
    transform: translateX(calc(92vw + 40px)) translateY(8px) rotate(28deg);
  }
  100% {
    transform: translateX(calc(100vw + 220px)) translateY(-12px) rotate(35deg);
    opacity: 0.2;
  }
}

@keyframes floatWord4 {
  0% {
    transform: translateX(-160px) translateY(0) rotate(28deg);
    opacity: 0.2;
  }
  15% {
    opacity: 0.5;
    transform: translateX(10px) translateY(-8px) rotate(25deg);
  }
  28% {
    transform: translateX(calc(28vw - 85px)) translateY(20px) rotate(18deg);
  }
  50% {
    transform: translateX(calc(50vw - 105px)) translateY(-18px) rotate(8deg);
    opacity: 0.65;
  }
  72% {
    transform: translateX(calc(72vw - 45px)) translateY(10px) rotate(-5deg);
  }
  85% {
    opacity: 0.4;
    transform: translateX(calc(85vw + 25px)) translateY(-8px) rotate(-12deg);
  }
  100% {
    transform: translateX(calc(100vw + 190px)) translateY(14px) rotate(-18deg);
    opacity: 0.2;
  }
}

@keyframes floatWord5 {
  0% {
    transform: translateX(-175px) translateY(0) rotate(-25deg);
    opacity: 0.2;
  }
  9% {
    opacity: 0.5;
    transform: translateX(-15px) translateY(15px) rotate(-20deg);
  }
  32% {
    transform: translateX(calc(32vw - 95px)) translateY(-20px) rotate(-10deg);
  }
  50% {
    transform: translateX(calc(50vw - 115px)) translateY(18px) rotate(5deg);
    opacity: 0.7;
  }
  68% {
    transform: translateX(calc(68vw - 55px)) translateY(-12px) rotate(18deg);
  }
  91% {
    opacity: 0.4;
    transform: translateX(calc(91vw + 35px)) translateY(10px) rotate(25deg);
  }
  100% {
    transform: translateX(calc(100vw + 210px)) translateY(-15px) rotate(32deg);
    opacity: 0.2;
  }
}

@keyframes floatWord6 {
  0% {
    transform: translateX(-165px) translateY(0) rotate(15deg);
    opacity: 0.2;
  }
  11% {
    opacity: 0.5;
    transform: translateX(5px) translateY(-12px) rotate(12deg);
  }
  27% {
    transform: translateX(calc(27vw - 88px)) translateY(22px) rotate(8deg);
  }
  50% {
    transform: translateX(calc(50vw - 108px)) translateY(-16px) rotate(-8deg);
    opacity: 0.65;
  }
  73% {
    transform: translateX(calc(73vw - 48px)) translateY(12px) rotate(-18deg);
  }
  89% {
    opacity: 0.4;
    transform: translateX(calc(89vw + 28px)) translateY(-10px) rotate(-25deg);
  }
  100% {
    transform: translateX(calc(100vw + 195px)) translateY(16px) rotate(-30deg);
    opacity: 0.2;
  }
}

/* Mantener las hojas ocultas */
.leaves-container {
  display: none;
}

.leaf {
  position: absolute;
  width: 50px;
  height: 50px;
  background: transparent;
  transform-origin: center;
  opacity: 0.35;
  animation: leafWind 15s linear infinite;
  /* Silueta de hoja realista - forma ovalada con punta */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'%3E%3Cpath d='M50 2 C35 2, 5 12, 5 32 C5 48, 12 62, 25 75 C20 85, 15 92, 15 100 C15 107, 22 112, 30 112 C42 112, 52 109, 65 103 C78 97, 90 88, 95 75 C95 50, 78 30, 62 20 C62 10, 56 2, 50 2 Z' fill='%235edd94' opacity='0.4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(1.5px);
}

.leaf::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Segunda capa de hoja */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'%3E%3Cpath d='M50 4 C38 4, 8 14, 8 30 C8 46, 15 60, 26 72 C22 80, 18 88, 18 96 C18 102, 24 108, 30 108 C40 108, 50 106, 60 102 C70 97, 82 90, 87 78 C87 56, 72 38, 58 26 C58 16, 53 4, 50 4 Z' fill='%23a685c9' opacity='0.3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(2px);
  opacity: 0.8;
}

/* Diferentes tamaños y colores de hojas - visibles con silueta de hoja */
.leaf-1 {
  width: 48px;
  height: 48px;
  top: 15%;
  left: -60px;
  background: transparent;
  animation: leafWind 12s ease-in-out infinite;
  animation-delay: 0s;
  opacity: 0.35;
}

.leaf-2 {
  width: 42px;
  height: 42px;
  top: 35%;
  left: -60px;
  background: transparent;
  animation: leafWind 14s ease-in-out infinite;
  animation-delay: 2s;
  opacity: 0.4;
}

.leaf-3 {
  width: 46px;
  height: 46px;
  top: 55%;
  left: -60px;
  background: transparent;
  animation: leafWind 16s ease-in-out infinite;
  animation-delay: 4s;
  opacity: 0.35;
}

.leaf-4 {
  width: 44px;
  height: 44px;
  top: 75%;
  left: -60px;
  background: transparent;
  animation: leafWind 13s ease-in-out infinite;
  animation-delay: 1s;
  opacity: 0.4;
}

.leaf-5 {
  width: 47px;
  height: 47px;
  top: 25%;
  left: -60px;
  background: transparent;
  animation: leafWind 15s ease-in-out infinite;
  animation-delay: 3s;
  opacity: 0.35;
}

.leaf-6 {
  width: 43px;
  height: 43px;
  top: 65%;
  left: -60px;
  background: transparent;
  animation: leafWind 17s ease-in-out infinite;
  animation-delay: 5s;
  opacity: 0.4;
}

.leaf-7 {
  width: 45px;
  height: 45px;
  top: 45%;
  left: -60px;
  background: transparent;
  animation: leafWind 11s ease-in-out infinite;
  animation-delay: 1.5s;
  opacity: 0.35;
}

.leaf-8 {
  width: 49px;
  height: 49px;
  top: 85%;
  left: -60px;
  background: transparent;
  animation: leafWind 18s ease-in-out infinite;
  animation-delay: 6s;
  opacity: 0.4;
}

@keyframes leafWind {
  0% {
    transform: translateX(-80px) translateY(0) rotate(0deg) scale(0.7);
    opacity: 0;
  }
  3% {
    opacity: 0.7;
    transform: translateX(-20px) translateY(8px) rotate(60deg) scale(0.9);
  }
  15% {
    transform: translateX(calc(20vw - 30px)) translateY(-12px) rotate(120deg) scale(1.05);
  }
  30% {
    transform: translateX(calc(35vw - 20px)) translateY(18px) rotate(200deg) scale(1.1);
  }
  50% {
    transform: translateX(calc(50vw - 40px)) translateY(-8px) rotate(270deg) scale(1);
    opacity: 0.85;
  }
  70% {
    transform: translateX(calc(70vw - 25px)) translateY(15px) rotate(330deg) scale(0.95);
  }
  85% {
    transform: translateX(calc(85vw - 15px)) translateY(-5px) rotate(350deg) scale(0.85);
    opacity: 0.7;
  }
  97% {
    opacity: 0.5;
    transform: translateX(calc(100vw + 20px)) translateY(12px) rotate(358deg) scale(0.75);
  }
  100% {
    transform: translateX(calc(100vw + 80px)) translateY(-15px) rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

.logo-wrapper {
  position: relative;
  display: inline-block;
}

.logo-header-main {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  display: block;
  position: relative;
  background: transparent;
  padding: 0;
  border: none;
  z-index: 2;
  object-fit: contain;
}


.header-whatsapp {
  position: absolute;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(94, 221, 148, 0.4);
  transition: transform 0.3s ease;
  pointer-events: auto;
  z-index: 2001;
}

.header-whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp-icon-small {
  width: 24px;
  height: 24px;
  fill: white;
}

/* MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: var(--white);
  border-radius: 25px;
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-agenda {
  max-width: 800px;
}

.modal-close {
  position: absolute;
  top: 60px;
  right: 20px;
  background: var(--gray-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  transition: all 0.3s ease;
  z-index: 10;
  font-weight: 300;
}

.modal-close:hover {
  background: var(--gray-dark);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-logo-section {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.modal-logo-section .logo-wrapper {
  display: inline-block;
  position: relative;
}

.modal-logo {
  max-height: 234px;
  height: auto;
  width: auto;
  max-width: 520px;
  display: block;
  position: relative;
  background: transparent;
  padding: 0;
  border: none;
  z-index: 2;
  object-fit: contain;
}

.modal-content {
  text-align: center;
  color: var(--gray-dark);
}

.modal-content h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.discount-amount-modal {
  color: var(--purple);
  font-size: 3.5rem;
  font-weight: 500;
  display: block;
  margin: 1rem 0;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(166, 133, 201, 0.8),
               0 0 20px rgba(166, 133, 201, 0.8),
               0 0 30px rgba(166, 133, 201, 0.6),
               0 0 40px rgba(166, 133, 201, 0.4),
               0 0 50px rgba(94, 221, 148, 0.3);
  animation: neonTextGlow 2s ease-in-out infinite alternate;
  position: relative;
}

@keyframes neonTextGlow {
  0% {
    text-shadow: 0 0 10px rgba(166, 133, 201, 0.8),
                 0 0 20px rgba(166, 133, 201, 0.8),
                 0 0 30px rgba(166, 133, 201, 0.6),
                 0 0 40px rgba(166, 133, 201, 0.4),
                 0 0 50px rgba(94, 221, 148, 0.3);
  }
  100% {
    text-shadow: 0 0 15px rgba(166, 133, 201, 1),
                 0 0 30px rgba(166, 133, 201, 1),
                 0 0 45px rgba(166, 133, 201, 0.8),
                 0 0 60px rgba(166, 133, 201, 0.6),
                 0 0 80px rgba(94, 221, 148, 0.5),
                 0 0 100px rgba(94, 221, 148, 0.3);
  }
}

.modal-content > p {
  color: var(--gray-dark);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  font-weight: 300;
}

.agenda-subtitle {
  color: var(--gray-dark);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  font-weight: 300;
}

/* FORM STYLES */
.registration-form,
.agenda-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  width: 100%;
}

.form-group.date-group {
  grid-column: 1 / -1;
}

.registration-form input,
.agenda-form input,
.agenda-form select,
.agenda-form textarea {
  width: 100%;
  padding: 1.1rem;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
  background: var(--white);
  color: var(--gray-dark);
}

.registration-form input:focus,
.agenda-form input:focus,
.agenda-form select:focus,
.agenda-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(166, 133, 201, 0.1);
}

.agenda-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
  font-weight: 400;
  text-align: left;
  font-size: 1rem;
}

.agenda-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-promo-submit,
.btn-agenda {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(166, 133, 201, 0.3);
}

.btn-promo-submit:hover,
.btn-agenda:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(166, 133, 201, 0.4);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 400;
}

.form-message.success {
  background: rgba(94, 221, 148, 0.1);
  color: var(--green-dark);
  border: 1px solid var(--green);
}

.form-message.error {
  background: rgba(255, 0, 0, 0.1);
  color: #d32f2f;
  border: 1px solid #d32f2f;
}

/* CALENDAR */
.calendar-container {
  margin-top: 1rem;
  background: var(--gray-light);
  padding: 1.2rem;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: block !important; /* Asegurar que el calendario sea visible */
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 300px;
  width: 100%;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-nav {
  background: linear-gradient(135deg, var(--green), var(--purple));
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  transition: all 0.3s ease;
}

.calendar-nav:hover {
  transform: scale(1.05);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  padding: 0.8rem;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  color: var(--gray-dark);
}

.calendar-day:hover:not(.other-month):not(.past):not(.fully-booked) {
  background: rgba(166, 133, 201, 0.1);
}

.calendar-day.today {
  background: var(--green);
  color: white;
  font-weight: 500;
}

.calendar-day.selected {
  background: var(--purple);
  color: white;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(166, 133, 201, 0.4);
}

.calendar-day.past,
.calendar-day.other-month {
  color: #ccc;
  cursor: not-allowed;
}

.calendar-day.fully-booked {
  background: var(--purple-dark);
  color: white;
  cursor: not-allowed;
  opacity: 0.8;
  box-shadow: 0 2px 6px rgba(166, 133, 201, 0.3);
  font-weight: 500;
}

.calendar-day-header {
  padding: 0.8rem;
  text-align: center;
  font-weight: 500;
  color: var(--gray-dark);
  background: rgba(166, 133, 201, 0.1);
  border-radius: 8px;
}

.calendar-day.has-appointments {
  background: rgba(166, 133, 201, 0.3);
  color: var(--gray-dark);
  font-weight: 500;
  border: 2px solid var(--purple);
}

.fecha-status,
.hora-status {
  margin-top: 0.5rem;
  padding: 0.6rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: left;
}

.fecha-status.warning,
.hora-status.warning {
  background: rgba(255, 243, 205, 0.5);
  color: #856404;
}

/* HORAS DISPONIBLES */
.horas-disponibles-container {
  margin-top: 1rem;
  background: var(--gray-light);
  padding: 1.2rem;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.horas-title {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 1rem;
  font-weight: 400;
}

.horas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.8rem;
}

.hora-disponible-item {
  padding: 0.8rem;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
  border: 2px solid var(--gray-light);
  color: var(--gray-dark);
}

.hora-disponible-item.disponible {
  background: var(--white);
}

.hora-disponible-item.disponible:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: translateY(-2px);
}

.hora-disponible-item.ocupada {
  background: var(--purple-dark);
  color: white;
  cursor: not-allowed;
  border-color: var(--purple);
  opacity: 0.8;
  box-shadow: 0 2px 6px rgba(166, 133, 201, 0.3);
}

.hora-disponible-item.selected {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(166, 133, 201, 0.4);
}


/* SECCIÓN DE RESERVA */
.reserva-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  padding: 4rem 2rem;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5edd94 0%, #7fe8b0 30%, #c3a3e6 70%, #e1bee7 100%);
  overflow: hidden;
  z-index: 100;
  border-top: none;
}

.reserva-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.reserva-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  filter: blur(2px);
}

.rb-1 {
  width: 100px;
  height: 100px;
  left: 8%;
  top: 10%;
  opacity: 0.4;
}

.rb-2 {
  width: 80px;
  height: 80px;
  left: 70%;
  top: 15%;
  opacity: 0.5;
}

.rb-3 {
  width: 120px;
  height: 120px;
  left: 45%;
  top: 8%;
  opacity: 0.3;
}

.rb-4 {
  width: 90px;
  height: 90px;
  left: 20%;
  top: 55%;
  opacity: 0.4;
}

.rb-5 {
  width: 110px;
  height: 110px;
  left: 75%;
  top: 50%;
  opacity: 0.5;
}

.rb-6 {
  width: 95px;
  height: 95px;
  left: 12%;
  top: 70%;
  opacity: 0.3;
}

.rb-7 {
  width: 85px;
  height: 85px;
  left: 55%;
  top: 65%;
  opacity: 0.4;
}

.rb-8 {
  width: 105px;
  height: 105px;
  left: 35%;
  top: 35%;
  opacity: 0.5;
}

.reserva-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
}

.reserva-title {
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4), 
               0 2px 10px rgba(0, 0, 0, 0.3),
               0 0 5px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.8);
}

.reserva-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.35),
               0 1px 5px rgba(0, 0, 0, 0.25);
}

.btn-reserva {
  background: var(--white);
  color: var(--gray-dark);
  padding: 1.3rem 3.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-reserva:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  background: var(--gray-light);
}

.reserva-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(100% 100% at 50% 0%);
  z-index: 1;
}

/* BURBUJAS PEQUEÑAS PARA SECCIONES */
.section-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.section-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  filter: blur(1px);
}

/* Burbujas pequeñas en las esquinas */
.corner-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.corner-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(3px);
  animation: float 6s ease-in-out infinite;
}

.corner-bubble-green {
  background: rgba(94, 221, 148, 0.4);
}

.corner-bubble-purple {
  background: rgba(166, 133, 201, 0.4);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(5px);
  }
}

/* Esquina superior izquierda - Verde */
.corner-bubble-tl-1 {
  width: 35px;
  height: 35px;
  top: 15px;
  left: 15px;
}

.corner-bubble-tl-2 {
  width: 22px;
  height: 22px;
  top: 45px;
  left: 10px;
}

/* Esquina superior derecha - Morado */
.corner-bubble-tr-1 {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 15px;
}

.corner-bubble-tr-2 {
  width: 22px;
  height: 22px;
  top: 45px;
  right: 10px;
}

/* Esquina inferior izquierda - Morado */
.corner-bubble-bl-1 {
  width: 35px;
  height: 35px;
  bottom: 15px;
  left: 15px;
}

.corner-bubble-bl-2 {
  width: 22px;
  height: 22px;
  bottom: 45px;
  left: 10px;
}

/* Esquina inferior derecha - Verde */
.corner-bubble-br-1 {
  width: 35px;
  height: 35px;
  bottom: 15px;
  right: 15px;
}

.corner-bubble-br-2 {
  width: 22px;
  height: 22px;
  bottom: 45px;
  right: 10px;
}

.sb-1 {
  width: 15px;
  height: 15px;
  left: 2%;
  top: 5%;
  opacity: 0.4;
}

.sb-2 {
  width: 12px;
  height: 12px;
  left: 95%;
  top: 8%;
  opacity: 0.5;
}

.sb-3 {
  width: 18px;
  height: 18px;
  left: 50%;
  top: 3%;
  opacity: 0.3;
}

.sb-4 {
  width: 14px;
  height: 14px;
  left: 3%;
  top: 92%;
  opacity: 0.4;
}

.sb-5 {
  width: 16px;
  height: 16px;
  left: 96%;
  top: 88%;
  opacity: 0.5;
}

.sb-6 {
  width: 13px;
  height: 13px;
  left: 45%;
  top: 94%;
  opacity: 0.3;
}

/* SECCIÓN DE DESCUENTO */
.discount-section {
  background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 10%, rgba(255, 255, 255, 0.95) 90%, var(--white) 100%);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.discount-intro-text {
  color: var(--purple-dark);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.discount-amount-large {
  color: var(--purple-dark);
  font-size: 3.5rem;
  font-weight: 500;
  display: block;
  margin: 1rem 0;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(166, 133, 201, 0.8),
               0 0 20px rgba(166, 133, 201, 0.8),
               0 0 30px rgba(166, 133, 201, 0.6),
               0 0 40px rgba(166, 133, 201, 0.4),
               0 0 50px rgba(94, 221, 148, 0.3);
  animation: neonTextGlow 2s ease-in-out infinite alternate;
  position: relative;
}

.discount-condition-text {
  color: var(--gray-dark);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0.85;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-discount {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(166, 133, 201, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-discount:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(166, 133, 201, 0.4);
}

/* SECCIÓN DE SERVICIOS - ACORDEÓN */
.services-section-main {
  background: linear-gradient(180deg, var(--purple-light) 0%, rgba(195, 163, 230, 0.95) 10%, rgba(127, 232, 176, 0.95) 90%, var(--green-light) 100%);
  padding: 3rem 2rem;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.services-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-accordion-title {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  font-family: 'Cormorant Garamond', serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35),
               0 2px 8px rgba(0, 0, 0, 0.25);
}

.accordion {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.accordion-item {
  border-bottom: 1px solid #e2e8f0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--white);
}

.accordion-header:hover {
  background: #f7fafc;
}

.accordion-header.active {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--green-light) 100%);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--green-light) 100%);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.accordion-header:hover .service-icon-wrapper {
  transform: scale(1.05);
}

.service-icon-svg {
  width: 50px;
  height: 50px;
  color: var(--purple-dark);
  transition: color 0.3s ease;
}

.accordion-header.active .service-icon-svg {
  color: var(--white);
}

.service-header-content {
  flex: 1;
}

.service-name {
  font-size: 1.4em;
  color: #2d3748;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}

.service-tagline {
  color: #718096;
  font-size: 0.9em;
  font-family: 'Montserrat', sans-serif;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--purple);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--white);
}

.accordion-header.active .service-name {
  color: var(--white);
}

.accordion-header.active .service-tagline {
  color: rgba(255, 255, 255, 0.9);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f7fafc;
}

.accordion-content.active {
  max-height: 1500px;
}

.content-inner {
  padding: 30px;
}

.service-image-large,
.service-video {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

.service-video {
  background: #000;
}

.service-description {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05em;
  font-family: 'Montserrat', sans-serif;
}

.service-benefits {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid var(--purple-light);
}

.benefits-title {
  font-size: 1.1em;
  color: var(--purple-dark);
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  color: #4a5568;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
  font-size: 1.2em;
}

.btn-agenda-service {
  background: linear-gradient(135deg, var(--purple) 0%, var(--green) 100%);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(166, 133, 201, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
  margin-top: 10px;
}

.btn-agenda-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(166, 133, 201, 0.4);
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--green-dark) 100%);
}

/* Estilos antiguos de servicios eliminados - ahora usamos acordeón */
}

.service-name {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray-dark);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.5px;
}

/* WHATSAPP FLOAT */
.wspp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--green);
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 2000;
  box-shadow: 0 6px 20px rgba(94, 221, 148, 0.5);
  transition: all 0.3s ease;
}

.wspp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(94, 221, 148, 0.6);
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  fill: white;
}

/* FOOTER */
.main-footer {
  background: var(--white);
  padding: 1rem 2rem 0.5rem;
  text-align: center;
  position: relative;
  z-index: 100;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content .logo-wrapper {
  display: inline-block;
  position: relative;
  margin: 0 auto 0.3rem;
}

.footer-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  display: block;
  position: relative;
  background: transparent;
  padding: 0;
  border: none;
  z-index: 2;
  object-fit: contain;
}

.footer-copyright {
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
}

.footer-copyright {
  color: var(--gray-dark);
  font-size: 0.85rem;
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.7;
  margin-top: 0.3rem;
  padding-top: 0.3rem;
}

/* RESPONSIVE - MOBILE FIRST */
@media (max-width: 768px) {
  .image-rotator img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .floating-header {
    padding: 8px 15px;
  }
  .slide-title {
    font-size: 2.2rem;
  }

  .slide-subtitle {
    font-size: 1.1rem;
  }

  .btn-slide {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }

  .logo-header-main {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
  }

  .header-content {
    gap: 1.5rem;
  }

  .modal-logo {
    max-height: 182px;
    max-width: 416px;
  }

  .slider-container {
    margin: 0;
    display: block;
    width: 100%;
    position: relative;
  }
  
  .slider-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 300px;
  }

  .slide {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  .slide-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .slide-image {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
    line-height: 0;
  }

  .footer-logo {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  .contact-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    padding: 2rem 1.5rem;
  }

  .contact-item {
    gap: 1.2rem;
    padding: 1.2rem 0;
  }

  .contact-item:first-child {
    padding-top: 0;
  }

  .contact-item:last-child {
    padding-bottom: 0;
  }

  .contact-icon {
    font-size: 1.5rem;
    min-width: 35px;
    width: 35px;
    height: 35px;
  }

  .contact-label {
    font-size: 0.85rem;
  }

  .contact-value {
    font-size: 0.95rem;
  }

  .contact-value a {
    font-size: 0.95rem;
  }

  .contact-section .mapa-container {
    padding: 1rem;
  }

  .mapa-coordenadas {
    font-size: 0.85rem;
  }

  .header-whatsapp {
    width: 40px;
    height: 40px;
  }

  .whatsapp-icon-small {
    width: 20px;
    height: 20px;
  }

  .modal-container {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .modal-content h2 {
    font-size: 1.8rem;
  }

  .discount-amount-modal {
    font-size: 2.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .horas-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }

  .discount-amount-large {
    font-size: 2.8rem;
  }

  .services-accordion-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .accordion-header {
    padding: 20px 15px;
  }

  .service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .service-icon-svg {
    width: 40px;
    height: 40px;
  }

  .service-name {
    font-size: 1.1em;
  }

  .service-tagline {
    font-size: 0.85em;
  }

  .content-inner {
    padding: 20px 15px;
  }

  .service-image-large,
  .service-video {
    height: 200px;
  }
}

/* MOBILE FIRST - Sobrescribir TODOS los estilos base */
@media (max-width: 480px) {
  .slide-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .slide-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .btn-slide {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  .slider-indicators {
    bottom: 20px;
    gap: 8px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 25px;
  }

  .floating-header {
    padding: 5px 10px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none;
    position: sticky !important;
    top: 0 !important;
  }

  .logo-header-main {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block;
    margin: 0;
  }
  
  .header-content {
    padding: 0;
    margin: 0;
  }
  
  /* SOLUCIÓN DEFINITIVA MOBILE: Sin espacios, ancho completo, fondo degradado */
  
  /* Slider container visible */
  /* Burbujas bokeh - fondo, detrás de todo */
  .bokeh-bubbles {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none;
    overflow: visible;
  }
  
  /* Rotador de imágenes en móvil */
  .image-rotator {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  
  .image-rotator img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Sección reserva - sin espacios */
  .reserva-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    display: block;
  }

  .modal-logo {
    max-height: 130px;
    max-width: 325px;
  }

  .footer-logo {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  .wspp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .modal-container {
    padding: 1.5rem 1rem;
    max-height: 95vh;
  }

  .modal-close {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    top: 50px;
    right: 15px;
  }

  .logo-header-large {
    max-height: 60px;
    max-width: 150px;
  }

  .discount-section {
    padding: 2rem 1.5rem;
  }

  .discount-intro-text {
    font-size: 1.2rem;
  }

  .discount-amount-large {
    font-size: 2.2rem;
  }

  .services-section-main {
    padding: 2rem 1.5rem;
  }

  .services-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-icon {
    font-size: 1.5rem;
    min-width: 35px;
  }

  .service-name {
    font-size: 1rem;
  }

/* SECCIÓN DE CONTACTO */
.contact-section {
  background: linear-gradient(180deg, var(--green-light) 0%, rgba(127, 232, 176, 0.95) 10%, rgba(195, 163, 230, 0.95) 90%, var(--purple-light) 100%);
  padding: 4rem 2rem;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

/* Burbujas flotantes para la sección de contacto */
.contact-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.contact-bubble {
  position: absolute;
  border-radius: 50%;
  backdrop-filter: blur(15px);
  filter: blur(1.5px);
  opacity: 0.6;
  animation: floatBubble 8s ease-in-out infinite;
}

.contact-bubble.cb-1 {
  width: 80px;
  height: 80px;
  left: 10%;
  top: 15%;
  background: radial-gradient(circle, var(--green), rgba(94, 221, 148, 0.8));
  animation-delay: 0s;
  opacity: 0.65;
}

.contact-bubble.cb-2 {
  width: 120px;
  height: 120px;
  left: 85%;
  top: 20%;
  background: radial-gradient(circle, var(--purple), rgba(166, 133, 201, 0.8));
  animation-delay: 1s;
  opacity: 0.7;
}

.contact-bubble.cb-3 {
  width: 90px;
  height: 90px;
  left: 20%;
  top: 45%;
  background: radial-gradient(circle, var(--green), rgba(94, 221, 148, 0.7));
  animation-delay: 2s;
  opacity: 0.65;
}

.contact-bubble.cb-4 {
  width: 100px;
  height: 100px;
  left: 75%;
  top: 50%;
  background: radial-gradient(circle, var(--purple), rgba(166, 133, 201, 0.7));
  animation-delay: 0.5s;
  opacity: 0.65;
}

.contact-bubble.cb-5 {
  width: 70px;
  height: 70px;
  left: 50%;
  top: 25%;
  background: radial-gradient(circle, var(--green), rgba(94, 221, 148, 0.6));
  animation-delay: 1.5s;
  opacity: 0.6;
}

.contact-bubble.cb-6 {
  width: 110px;
  height: 110px;
  left: 15%;
  top: 70%;
  background: radial-gradient(circle, var(--purple), rgba(166, 133, 201, 0.6));
  animation-delay: 2.5s;
  opacity: 0.65;
}

.contact-bubble.cb-7 {
  width: 85px;
  height: 85px;
  left: 60%;
  top: 65%;
  background: radial-gradient(circle, var(--green), rgba(94, 221, 148, 0.7));
  animation-delay: 0.8s;
  opacity: 0.65;
}

.contact-bubble.cb-8 {
  width: 95px;
  height: 95px;
  left: 40%;
  top: 35%;
  background: radial-gradient(circle, var(--purple), rgba(166, 133, 201, 0.7));
  animation-delay: 1.8s;
  opacity: 0.65;
}

.contact-bubble.cb-9 {
  width: 75px;
  height: 75px;
  left: 5%;
  top: 55%;
  background: radial-gradient(circle, var(--green), rgba(94, 221, 148, 0.6));
  animation-delay: 3s;
  opacity: 0.6;
}

.contact-bubble.cb-10 {
  width: 105px;
  height: 105px;
  left: 90%;
  top: 60%;
  background: radial-gradient(circle, var(--purple), rgba(166, 133, 201, 0.6));
  animation-delay: 1.2s;
  opacity: 0.65;
}

.contact-bubble.cb-11 {
  width: 65px;
  height: 65px;
  left: 30%;
  top: 80%;
  background: radial-gradient(circle, var(--green), rgba(94, 221, 148, 0.5));
  animation-delay: 2.2s;
  opacity: 0.55;
}

.contact-bubble.cb-12 {
  width: 115px;
  height: 115px;
  left: 70%;
  top: 10%;
  background: radial-gradient(circle, var(--purple), rgba(166, 133, 201, 0.5));
  animation-delay: 0.3s;
  opacity: 0.6;
}

@keyframes floatBubble {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -20px) scale(1.1);
  }
  50% {
    transform: translate(-15px, 15px) scale(0.9);
  }
  75% {
    transform: translate(10px, 10px) scale(1.05);
  }
}

.contact-title {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 4px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35),
               0 2px 8px rgba(0, 0, 0, 0.25),
               0 0 3px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.7);
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Burbujas pequeñas dentro del área de contacto */
.contact-info-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.info-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green), rgba(94, 221, 148, 0.3));
  opacity: 0.25;
  filter: blur(1px);
  animation: floatInfoBubble 8s ease-in-out infinite;
}

.info-bubble.ib-1 {
  width: 30px;
  height: 30px;
  left: 10%;
  top: 15%;
  background: radial-gradient(circle, var(--green), rgba(94, 221, 148, 0.25));
  animation-delay: 0s;
}

.info-bubble.ib-2 {
  width: 35px;
  height: 35px;
  left: 85%;
  top: 25%;
  background: radial-gradient(circle, var(--purple), rgba(166, 133, 201, 0.25));
  animation-delay: 1.5s;
}

.info-bubble.ib-3 {
  width: 28px;
  height: 28px;
  left: 20%;
  top: 55%;
  background: radial-gradient(circle, var(--green-light), rgba(94, 221, 148, 0.2));
  animation-delay: 3s;
}

.info-bubble.ib-4 {
  width: 32px;
  height: 32px;
  left: 75%;
  top: 65%;
  background: radial-gradient(circle, var(--purple-light), rgba(166, 133, 201, 0.2));
  animation-delay: 0.5s;
}

.info-bubble.ib-5 {
  width: 25px;
  height: 25px;
  left: 50%;
  top: 40%;
  background: radial-gradient(circle, var(--green), rgba(94, 221, 148, 0.2));
  animation-delay: 2s;
}

.info-bubble.ib-6 {
  width: 30px;
  height: 30px;
  left: 15%;
  top: 80%;
  background: radial-gradient(circle, var(--purple), rgba(166, 133, 201, 0.2));
  animation-delay: 4s;
}

@keyframes floatInfoBubble {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.25;
  }
  25% {
    transform: translate(10px, -10px) scale(1.1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-8px, 8px) scale(0.9);
    opacity: 0.25;
  }
  75% {
    transform: translate(5px, 5px) scale(1.05);
    opacity: 0.3;
  }
}

.contact-item {
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  min-height: auto;
  position: relative;
  z-index: 1;
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 40px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.contact-icon.instagram-icon-wrapper {
  padding-top: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  display: flex !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  flex-shrink: 0;
  font-size: 0 !important;
  line-height: 0 !important;
}

.contact-icon.instagram-icon-wrapper .instagram-icon {
  width: 28px !important;
  height: 28px !important;
  fill: #E4405F !important;
  transition: all 0.3s ease;
  display: block !important;
  flex-shrink: 0;
  opacity: 1 !important;
  visibility: visible !important;
}

.instagram-icon {
  width: 28px;
  height: 28px;
  fill: #E4405F;
  transition: all 0.3s ease;
  display: block;
  flex-shrink: 0;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #E4405F !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: all 0.3s ease;
}

.instagram-link:hover {
  transform: translateX(3px);
  opacity: 0.8;
}

.instagram-link:hover .instagram-icon {
  transform: scale(1.1);
}

.contact-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  min-width: 0;
}

.contact-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666666;
  letter-spacing: 0.3px;
  display: block;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 300;
  color: #333333;
  letter-spacing: 0.2px;
  line-height: 1.6;
  display: inline-block;
  word-wrap: break-word;
}

.contact-value a {
  color: #0066cc;
  text-decoration: underline;
  transition: opacity 0.3s ease;
  font-weight: 300;
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  display: inline;
}

.contact-value a:hover {
  opacity: 0.8;
}

.contact-value .separator {
  margin: 0 0.5rem;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 300;
  display: inline;
}

.contact-section .mapa-container {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.mapa-coordenadas {
  margin-top: 1rem;
  color: var(--gray-dark);
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-align: center;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
}

  .reserva-section {
    min-height: 60vh;
    padding: 3rem 1.5rem;
    padding-top: 0;
    margin-top: 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .contact-item-wrapper {
    padding: 1.2rem;
    gap: 1rem;
  }

  .contact-icon {
    font-size: 1.5rem;
    min-width: 35px;
    height: 35px;
  }

  .contact-text {
    font-size: 0.95rem;
  }

  .contact-text strong {
    font-size: 0.95rem;
  }

  .contact-section .mapa-container {
    padding: 1rem;
  }

  .mapa-coordenadas {
    font-size: 0.85rem;
  }

  .reserva-title {
    font-size: 2.5rem;
  }

  .reserva-subtitle {
    font-size: 1.2rem;
  }

  .btn-reserva {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
  }

  .contact-section {
    padding: 2.5rem 1.5rem;
  }

  .contact-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
  }

  .contact-content {
    gap: 1.5rem;
  }

  .contact-info {
    padding: 1.5rem 1.2rem;
  }

  .contact-item {
    gap: 1rem;
    padding: 1rem 0;
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-item:first-child {
    padding-top: 0;
  }

  .contact-item:last-child {
    padding-bottom: 0;
  }

  .contact-icon {
    font-size: 1.3rem;
    min-width: 30px;
    width: 30px;
    height: 30px;
    padding-top: 3px;
  }

  .contact-text-wrapper {
    gap: 0.3rem;
  }

  .contact-label {
    font-size: 0.8rem;
    margin: 0;
    padding: 0;
  }

  .contact-value {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-value a {
    font-size: 0.9rem;
    display: inline;
  }

  .contact-value .separator {
    display: inline;
    margin: 0 0.4rem;
  }

  .contact-section .mapa-container {
    padding: 0.8rem;
  }

  .contact-section .mapa-container iframe {
    height: 250px;
  }

  .mapa-coordenadas {
    font-size: 0.8rem;
    padding: 0.4rem;
  }
}
