html, body { overflow-x: hidden !important; width: 100%; position: relative; }

:root {
  --goose-time: 25s;
}

@media (max-width: 768px) {
  :root {
    --goose-time: 12s;
  }
}
@font-face {
  font-family: 'Artigo';
  src: url('../assets/Artigo.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Artigo';
  src: url('../assets/ArtigoPro-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: #F5EFE3; color: #3D1F0D; overflow-x: hidden; }

@keyframes bounce-arrow { 0%,100% { transform: translateY(0); opacity: 0.6; } 50% { transform: translateY(8px); opacity: 1; } }
@keyframes hero-zoom { 0% { transform: scale(1.25); } 100% { transform: scale(1.02); } }
@keyframes fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glow-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }
@keyframes halo-breathe-glass {
  0%,100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.03); opacity: 1; }
}

/* PAVO 1: vuelo diagonal abajo-izquierda hacia arriba-derecha */
@keyframes pavo-fly-1 {
  0% { transform: translate(-20vw, 20vh) rotate(-8deg) scale(0.7); opacity: 0; }
  10% { opacity: 0.6; }
  50% { transform: translate(30vw, -10vh) rotate(-3deg) scale(0.9); opacity: 0.75; }
  90% { opacity: 0.5; }
  100% { transform: translate(85vw, -40vh) rotate(2deg) scale(1.05); opacity: 0; }
}

/* PAVO 2: vuelo diagonal arriba-derecha hacia abajo-izquierda (vuela más alto para no cruzar el texto) */
@keyframes pavo-fly-2 {
  0% { transform: translate(80vw, -30vh) rotate(8deg) scale(0.8) scaleX(-1); opacity: 0; }
  15% { opacity: 0.55; }
  50% { transform: translate(35vw, -5vh) rotate(4deg) scale(1) scaleX(-1); opacity: 0.7; }
  85% { opacity: 0.4; }
  100% { transform: translate(-15vw, 25vh) rotate(0deg) scale(0.85) scaleX(-1); opacity: 0; }
}

/* PAVO 3: vuelo cruzando por debajo */
@keyframes pavo-fly-3 {
  0% { transform: translate(-10vw, 70vh) rotate(-5deg) scale(0.6); opacity: 0; }
  15% { opacity: 0.6; }
  50% { transform: translate(45vw, 60vh) rotate(-2deg) scale(0.8); opacity: 0.8; }
  85% { opacity: 0.5; }
  100% { transform: translate(110vw, 40vh) rotate(0deg) scale(0.9); opacity: 0; }
}

/* Aleteo del pavo: el @keyframes vive ahora dentro del <symbol id="pavo-svg">
   en index.html porque las animaciones externas no cruzan al shadow DOM del <use>. */

.arrow-bounce { animation: bounce-arrow 2.4s ease-in-out infinite; }
/* .hero-zoom-anim removido a favor del nuevo slider */
.whatsapp-pulse { animation: glow-pulse 2.5s ease-in-out infinite; }
.logo-glass-breathe { animation: halo-breathe-glass 5s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.btn-anim { transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.btn-anim:hover { transform: translateY(-2px); }

/* ==== Hero con PARALLAX via translate3d (JS-driven) ==== */
.hero {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 130dvh;
  z-index: 0;
  will-change: transform;
}
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; animation: hero-slideshow 18s infinite;
}
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  transform: scale(1.25); animation: hero-zoom 6s infinite ease-out;
}
.slide-1 { animation-delay: 0s; } .slide-1 img { animation-delay: 0s; }
.slide-2 { animation-delay: 6s; } .slide-2 img { animation-delay: 6s; }
.slide-3 { animation-delay: 12s; } .slide-3 img { animation-delay: 12s; }

@keyframes hero-slideshow {
  0% { opacity: 0; }
  5% { opacity: 1; }
  33% { opacity: 1; }
  38% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(42,20,8,0.3) 0%, rgba(42,20,8,0.1) 30%, rgba(42,20,8,0.4) 70%, rgba(42,20,8,0.88) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex; flex-direction: column;
}

.hero-topbar {
  display: flex; justify-content: flex-end; align-items: center;
  padding: 24px 24px 0;
}
@media (min-width: 768px) { .hero-topbar { padding: 32px 48px 0; } }
.lang-switcher { display: flex; gap: 4px; align-items: center; font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: 0.2em; }
.lang-switcher button { background: transparent; border: none; padding: 4px 8px; cursor: pointer; color: rgba(245,239,227,0.5); border-bottom: 1px solid transparent; transition: all 0.3s; font-family: inherit; letter-spacing: inherit; font-size: inherit; }
.lang-switcher button.active { color: #F5EFE3; border-bottom-color: #E0A030; }
.lang-switcher .sep { color: rgba(255,255,255,0.3); }

.hero-content {
  flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 24px 200px;
}
@media (min-width: 768px) { .hero-content { padding: 0 64px 220px; } }
@media (min-width: 1024px) { .hero-content { padding: 0 96px 220px; } }

.hero-inner { max-width: 800px; opacity: 0; animation: fade-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; }

/* === GLASSMORPHISM DEL LOGO - achicado === */
.logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  width: 130px; height: 130px;
}
@media (min-width: 768px) {
  .logo-wrap { width: 160px; height: 160px; margin-bottom: 40px; }
}

.logo-glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(245, 239, 227, 0.12);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border: 1px solid rgba(224, 160, 48, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(255,255,255,0.05),
    0 8px 32px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.logo-img-wrap {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.logo-img-wrap img {
  width: 110px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}
@media (min-width: 768px) {
  .logo-img-wrap img { width: 138px; }
}

.hero-title {
  font-family: 'Artigo', serif;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #F5EFE3;
  font-weight: 400;
  margin-bottom: 24px;
}
.hero-title .majoro {
  color: #E0A030;
  font-style: italic;
  font-weight: 600;
  display: block;
}
@media (min-width: 768px) { .hero-title { font-size: 88px; margin-bottom: 28px; } }
@media (min-width: 1024px) { .hero-title { font-size: 104px; } }

.hero-tagline-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.hero-tagline-line { display: block; height: 1px; width: 36px; background: #E0A030; }
@media (min-width: 768px) { .hero-tagline-line { width: 52px; } }

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase;
  color: #F5EFE3; font-weight: 500;
}
.hero-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; letter-spacing: 0.25em;
  color: rgba(245,239,227,0.75); font-weight: 500; margin-left: 48px;
}
@media (min-width: 768px) { .hero-tagline { font-size: 14px; } .hero-location { margin-left: 64px; font-size: 13px; } }

.hero-bottom {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
@media (min-width: 768px) { .hero-bottom { bottom: 44px; } }

.hero-socials { display: flex; align-items: center; gap: 26px; }
.hero-socials a { color: rgba(245,239,227,0.75); transition: all 0.3s; display: inline-flex; }
.hero-socials a:hover { color: #F5EFE3; transform: translateY(-2px); }

.hero-discover { display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bounce-arrow 2.4s ease-in-out infinite; }
.hero-discover span { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245,239,227,0.75); font-weight: 500; }

/* CRITICO: el contenido post-hero necesita fondo opaco para tapar el fixed */
.post-hero { position: relative; z-index: 5; background: #F5EFE3; }

.wa-float {
  position: fixed; bottom: 20px; right: 20px;
  z-index: 50; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5);
  text-decoration: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-float:hover { transform: translateY(-2px) scale(1.05); }
@media (min-width: 768px) { .wa-float { bottom: 28px; right: 28px; width: 64px; height: 64px; } }

.paracas-divider { width: 100%; display: flex; justify-content: center; align-items: center; padding: 32px 0; background: #F5EFE3; position: relative; z-index: 2; }
.paracas-divider svg { opacity: 0.7; }
@media (min-width: 768px) { .paracas-divider { padding: 48px 0; } }

.section { padding: 80px 24px; position: relative; }
@media (min-width: 768px) { .section { padding: 112px 48px; } }
@media (min-width: 1024px) { .section { padding: 112px 96px; } }
.section-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

.section-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #C45A1F; font-weight: 500; margin-bottom: 12px; }
.section-title { font-family: 'Artigo', serif; font-size: 40px; line-height: 1; letter-spacing: -0.02em; color: #3D1F0D; font-weight: 500; margin-bottom: 12px; }
@media (min-width: 768px) { .section-title { font-size: 64px; } }
@media (min-width: 1024px) { .section-title { font-size: 80px; } }
.section-subtitle { font-family: 'Artigo', serif; font-style: italic; font-size: 22px; color: #C45A1F; font-weight: 400; }
@media (min-width: 768px) { .section-subtitle { font-size: 26px; } }

/* PARALLAX BANNER */
.parallax-banner {
  height: 20vh;
  min-height: 120px;
  max-height: 250px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
  background-image: url('../assets/banner-decoracion/01_galeria-piscina3.webp');
}

/* ==== Gallery bento + sepia hover + reveal staggered ==== */
.gallery-section { background: #F5EFE3; overflow: hidden; position: relative; }
/* Neutralizar el reveal global a nivel sección — los items manejan su propio fade staggered */
.gallery-section.reveal { opacity: 1; transform: none; transition: none; }

/* === 1) Base común === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: 2px; border: none;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #E8DFCB 0%, #F5EFE3 100%);
  cursor: pointer; padding: 0;
  opacity: 0;
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === 2) Mobile: ritmo visual con aspect-ratios variados y dos fotos wide a span 2 cols === */
@media (max-width: 767px) {
  .gallery-grid { gap: 10px; }
  .gallery-item:nth-child(1) { aspect-ratio: 4/3; grid-column: span 2; }  /* suite — wide horizontal arriba */
  .gallery-item:nth-child(2) { aspect-ratio: 3/4; }                        /* jardín vertical */
  .gallery-item:nth-child(3) { aspect-ratio: 3/4; }                        /* piscina bugambilias vertical */
  .gallery-item:nth-child(4) { aspect-ratio: 3/4; }                        /* pasillo vertical */
  .gallery-item:nth-child(5) { aspect-ratio: 3/4; }                        /* salón vertical */
  .gallery-item:nth-child(6) { aspect-ratio: 4/3; grid-column: span 2; }   /* piscina pano — wide horizontal abajo */
}

/* === 3) Reveal staggered con direcciones variadas === */
.gallery-item:nth-child(1) { transform: translate(-60px, 30px) scale(0.94); }
.gallery-item:nth-child(2) { transform: translate(0, 80px) scale(0.92); }
.gallery-item:nth-child(3) { transform: translate(60px, 30px) scale(0.94); }
.gallery-item:nth-child(4) { transform: translate(0, -50px) scale(0.92); }
.gallery-item:nth-child(5) { transform: translate(-80px, 40px) scale(0.92); }
.gallery-item:nth-child(6) { transform: translate(80px, 40px) scale(0.92); }
.gallery-section.visible .gallery-item { opacity: 1; transform: translate(0, 0) scale(1); }
.gallery-section.visible .gallery-item:nth-child(1) { transition-delay: 0ms; }
.gallery-section.visible .gallery-item:nth-child(2) { transition-delay: 280ms; }
.gallery-section.visible .gallery-item:nth-child(3) { transition-delay: 560ms; }
.gallery-section.visible .gallery-item:nth-child(4) { transition-delay: 840ms; }
.gallery-section.visible .gallery-item:nth-child(5) { transition-delay: 1120ms; }
.gallery-section.visible .gallery-item:nth-child(6) { transition-delay: 1400ms; }

/* === 4) Object-position por foto === */
.gallery-item:nth-child(1) .gallery-item-img { object-position: center 70%; }
.gallery-item:nth-child(3) .gallery-item-img { object-position: center 75%; }
.gallery-item:nth-child(5) .gallery-item-img { object-position: center 55%; }
.gallery-item:nth-child(6) .gallery-item-img { object-position: center 70%; }

/* === 5) Bento desktop (último para tener precedencia sobre staggered translate) === */
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 16px;
  }
  /* 01 Suite — horizontal, centro arriba */
  .gallery-item:nth-child(1) { grid-column: 2 / 4; grid-row: 1 / 2; }
  /* 02 Jardines — vertical, izquierda span 2 rows */
  .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: 1 / 3; }
  /* 03 Piscina bugambilias — horizontal, centro abajo */
  .gallery-item:nth-child(3) { grid-column: 2 / 4; grid-row: 2 / 3; }
  /* 04 Pasillo anochecer — vertical, derecha span 2 rows */
  .gallery-item:nth-child(4) { grid-column: 4 / 5; grid-row: 1 / 3; }
  /* 05 Salón virreinal — wide, fila inferior izquierda */
  .gallery-item:nth-child(5) { grid-column: 1 / 3; grid-row: 3 / 4; }
  /* 06 Piscina panorámica — wide, fila inferior derecha */
  .gallery-item:nth-child(6) { grid-column: 3 / 5; grid-row: 3 / 4; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-auto-rows: 340px; gap: 20px; }
}

.gallery-item-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  /* Sepia + desaturado por defecto → color real al hover (efecto cinematográfico) */
  filter: sepia(0.35) saturate(0.75) brightness(0.95);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-item-img,
.gallery-item:active .gallery-item-img,
.gallery-item.touch-active .gallery-item-img {
  transform: scale(1.06);
  filter: sepia(0) saturate(1.05) brightness(1);
}

.gallery-item-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(61,31,13,0) 0%, rgba(61,31,13,0.95) 50%, rgba(42,20,8,1) 100%);
  padding: 20px 16px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.gallery-item:hover .gallery-item-overlay,
.gallery-item:active .gallery-item-overlay,
.gallery-item.touch-active .gallery-item-overlay { 
  transform: translateY(0); 
}
.gallery-overlay-title { font-family: 'Artigo', serif; font-size: 16px; color: #F5EFE3; text-align: center; line-height: 1.2; font-weight: 500; }
@media (min-width: 768px) { .gallery-overlay-title { font-size: 18px; } }
.gallery-overlay-cta { display: inline-flex; align-items: center; gap: 6px; font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #E0A030; padding-bottom: 2px; border-bottom: 1px solid #E0A030; }

.gallery-cta-wrap { margin-top: 56px; display: flex; justify-content: center; }
.gallery-cta {
  font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: #3D1F0D; font-weight: 500;
  background: transparent; border: none; border-bottom: 1px solid #E0A030;
  padding-bottom: 4px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.gallery-cta:hover { transform: translateY(-2px); }

/* PAVOS REALES VOLANDO - 2 pavos cruzándose */
.pavo-flying-container {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  overflow: hidden;
}
.pavo-flying {
  position: absolute; top: 0; left: 0;
  width: 200px; opacity: 0;
  will-change: transform, opacity;
}
@media (min-width: 768px) { .pavo-flying { width: 280px; } }

.pavo-1.activated { animation: pavo-fly-1 14s ease-in-out forwards; }
.pavo-2.activated { animation: pavo-fly-2 16s ease-in-out 3s forwards; }
.pavo-3.activated { animation: pavo-fly-3 15s ease-in-out 1.5s forwards; }

/* Pavos interactivos que aterrizan */
.pavo-interactive {
  position: absolute;
  width: 90px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 2.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s;
}
/* Pavo 4: en el título (mirando izq) */
.pavo-4-stand { right: 0px; top: -34px; bottom: auto; transform: translate(300px, -200px) scaleX(-1) rotate(-15deg); }
@media (min-width: 768px) { .pavo-4-stand { width: 140px; right: 2px; top: -52px; bottom: auto; } }
@media (min-width: 1024px) { .pavo-4-stand { right: 20px; top: -40px; bottom: auto; } }

.pavo-interactive.fly-in {
  opacity: 1;
  --wing-opacity: 1; --fly-legs: 1; --stand-legs: 0;
  transform: translate(0, 0) scaleX(-1) rotate(0deg);
}
.pavo-4-stand.fly-in { transform: translate(0, 0) scaleX(-1) rotate(0deg); }

.pavo-interactive.stand {
  opacity: 1;
  --wing-opacity: 0;
  --fly-legs: 0;
  --stand-legs: 1;
}

.pavo-4-stand.jump-h {
  transform: translate(-58px, -8px) scaleX(-1) rotate(0deg) !important;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (min-width: 768px) { .pavo-4-stand.jump-h { transform: translate(-92px, -12px) scaleX(-1) rotate(0deg) !important; } }
@media (min-width: 1024px) { .pavo-4-stand.jump-h { transform: translate(-115px, -15px) scaleX(-1) rotate(0deg) !important; } }

.pavo-interactive.jump-h svg {
  animation: pavo-svg-bounce 1s ease-in-out;
}
@keyframes pavo-svg-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-50px); }
}

.pavo-interactive.fly-out {
  opacity: 1;
  transition: transform 3.5s cubic-bezier(0.5, 0, 0.75, 0), opacity 2.5s 1s !important;
}
.pavo-4-stand.fly-out { transform: translate(-600px, -300px) scaleX(-1) rotate(15deg) !important; opacity: 0; }

/* Escapadas */
.escapes-section { background: #3D1F0D; color: #F5EFE3; }
.escapes-section .section-title { color: #F5EFE3; }
.escapes-section .section-eyebrow { color: #E0A030; }
.escapes-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; align-items: center; }
@media (min-width: 768px) { .escapes-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.escapes-image-placeholder { aspect-ratio: 3/4; border-radius: 2px; position: relative; overflow: hidden; border: 1px solid rgba(224,160,48,0.4); }
.escapes-image-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.escapes-body { font-family: 'Montserrat', sans-serif; font-size: 16px; line-height: 1.7; color: rgba(245,239,227,0.85); font-weight: 300; margin: 32px 0; }
@media (min-width: 768px) { .escapes-body { font-size: 18px; } }
.escapes-list { list-style: none; margin: 0 0 48px; }
.escapes-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 300; color: rgba(245,239,227,0.95); }
@media (min-width: 768px) { .escapes-list li { font-size: 16px; } }
.escapes-list li::before { content: ''; flex-shrink: 0; display: block; height: 1px; width: 24px; background: #E0A030; margin-top: 12px; }
.escapes-cta { display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; border-radius: 2px; background: #C45A1F; color: #F5EFE3; font-family: 'Montserrat', sans-serif; font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; text-decoration: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.escapes-cta:hover { transform: translateY(-2px); background: #B04D14; }

/* Reserva */
.reserve-section { background: #781725; color: #F5EFE3; }
.reserve-section .section-title { color: #F5EFE3; }
.reserve-section .section-eyebrow { color: #E0A030; }
.reserve-section .section-subtitle { color: #E0A030; }
.reserve-section .reserve-email { color: #F5EFE3; }
.reserve-section .reserve-email a { color: #E0A030; border-bottom-color: #E0A030; }
.reserve-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 56px; }
@media (min-width: 768px) { .reserve-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.reserve-card { padding: 32px; border-radius: 2px; text-decoration: none; position: relative; overflow: hidden; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); display: block; border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.reserve-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.reserve-card:active { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
@media (min-width: 768px) { .reserve-card { padding: 40px; } }
.reserve-card-white { background: #F5EFE3; color: #3D1F0D; }
.reserve-card-dark { background: transparent; color: #F5EFE3; border: 1px solid rgba(224,160,48,0.4); }
.reserve-card-dark:hover { background: rgba(224,160,48,0.08); border-color: #E0A030; }
.reserve-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.reserve-icon-circle { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 16px; transition: all 0.3s; }
.reserve-icon-wa { background: #25D366; color: white; }
.reserve-icon-cal { background: rgba(224,160,48,0.1); color: #E0A030; }
.reserve-card-dark:hover .reserve-icon-cal { background: #E0A030; color: #3D1F0D; }
@media (min-width: 768px) { .reserve-icon-circle { width: 56px; height: 56px; } }
.reserve-arrow { transition: transform 0.3s; }
.reserve-card:hover .reserve-arrow { transform: translateX(4px); }
.reserve-card-white .reserve-arrow { stroke: #3D1F0D; }
.reserve-card-dark .reserve-arrow { stroke: #E0A030; }
.reserve-card-title { font-family: 'Artigo', serif; font-size: 28px; line-height: 1.1; margin-bottom: 8px; font-weight: 500; }
@media (min-width: 768px) { .reserve-card-title { font-size: 32px; } }
.reserve-card-white .reserve-card-title { color: #3D1F0D; }
.reserve-card-dark .reserve-card-title { color: #E0A030; }
.reserve-card-body { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300; }
.reserve-card-white .reserve-card-body { color: rgba(61,31,13,0.6); }
.reserve-card-dark .reserve-card-body { color: rgba(245,239,227,0.7); }
.reserve-email { text-align: center; font-family: 'Montserrat', sans-serif; font-size: 14px; color: rgba(61,31,13,0.7); font-weight: 300; }
.reserve-email a { color: #C45A1F; font-weight: 500; text-decoration: underline; }

/* Cómo llegar */
.how-section { background: #F5EFE3; }
.how-map-wrap { border-radius: 2px; overflow: hidden; margin-bottom: 32px; box-shadow: 0 20px 50px -20px rgba(61,31,13,0.3); }
.how-map-wrap iframe { display: block; border: 0; width: 100%; height: 380px; }
.how-bottom { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 24px; }
@media (min-width: 768px) { .how-bottom { flex-direction: row; align-items: center; } }
.how-address { display: flex; align-items: flex-start; gap: 12px; font-family: 'Montserrat', sans-serif; font-size: 15px; color: #3D1F0D; font-weight: 300; }
.how-address svg { flex-shrink: 0; margin-top: 4px; color: #C45A1F; }
.how-cta { display: inline-flex; align-items: center; gap: 12px; padding: 12px 24px; background: #E0A030; color: #3D1F0D; font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; border-radius: 2px; text-decoration: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); white-space: nowrap; }
.how-cta:hover { transform: translateY(-2px); background: #CD9020; }

/* Footer */
.footer { background: #781725; color: #F5EFE3; padding: 64px 24px; text-align: center; position: relative; z-index: 5; }
@media (min-width: 768px) { .footer { padding: 80px 48px; } }
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo { width: 56px; margin: 0 auto 24px; opacity: 0.9; display: block; }
@media (min-width: 768px) { .footer-logo { width: 64px; } }
.footer-title { font-family: 'Artigo', serif; font-size: 28px; color: #F5EFE3; font-weight: 400; margin-bottom: 8px; }
@media (min-width: 768px) { .footer-title { font-size: 32px; } }
.footer-tagline { font-family: 'Artigo', serif; font-style: italic; font-size: 17px; color: #E0A030; font-weight: 400; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-tagline { font-size: 19px; } }
.footer-socials { display: flex; justify-content: center; align-items: center; gap: 28px; margin-bottom: 40px; }
.footer-socials a { color: rgba(255,255,255,0.7); transition: color 0.3s, transform 0.3s; }
.footer-socials a:hover { color: white; transform: translateY(-2px); }
.footer-divider { height: 1px; width: 96px; margin: 0 auto 32px; background: rgba(224,160,48,0.4); }
.footer-contacts { font-family: 'Montserrat', sans-serif; font-size: 14px; color: rgba(245,239,227,0.7); font-weight: 300; margin-bottom: 32px; }
.footer-contacts a { display: block; color: inherit; text-decoration: none; padding: 4px 0; transition: color 0.3s; }
.footer-contacts a:hover { color: #F5EFE3; }
.footer-rights { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.2em; color: rgba(245,239,227,0.4); font-weight: 300; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(42,20,8,0.95); display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay.active { display: flex; }
.modal-close, .modal-nav { position: absolute; background: transparent; border: none; cursor: pointer; color: rgba(245,239,227,0.8); z-index: 10; transition: color 0.3s, transform 0.3s; }
.modal-close:hover, .modal-nav:hover { color: white; transform: scale(1.05); }
.modal-close { top: 24px; right: 24px; }
.modal-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.modal-next { right: 16px; top: 50%; transform: translateY(-50%); }
@media (min-width: 768px) { .modal-prev { left: 32px; } .modal-next { right: 32px; } }
.modal-content { width: 100%; max-width: 1100px; position: relative; border-radius: 2px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.modal-img { width: 100%; max-height: 85vh; object-fit: contain; display: block; border-radius: 2px; }
.modal-text { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px 24px 20px; text-align: center; background: linear-gradient(180deg, rgba(42,20,8,0) 0%, rgba(42,20,8,0.85) 100%); border-radius: 0 0 2px 2px; pointer-events: none; }
.modal-num { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #E0A030; font-weight: 500; margin-bottom: 8px; }
.modal-desc { font-family: 'Artigo', serif; font-size: 22px; color: #F5EFE3; line-height: 1.2; }
@media (min-width: 768px) { .modal-desc { font-size: 28px; } .modal-num { font-size: 12px; } }

/* ==== CARTA PISCINA ==== */
.menu-page { background: #F5EFE3; min-height: 100vh; padding-bottom: 0; }
.menu-header { text-align: center; padding: 40px 24px 16px; position: relative; }
.menu-header img { width: 100px; margin-bottom: 16px; opacity: 0.9; }
.menu-header h1 { font-family: 'Artigo', serif; font-size: 56px; color: #3D1F0D; font-weight: 600; letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; }
.menu-header p { font-family: 'Montserrat', sans-serif; font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; color: #E0A030; font-weight: 500; }

.menu-lang { position: absolute; top: 16px; right: 24px; display: flex; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; color: rgba(61,31,13,0.5); z-index: 10; }
.menu-lang button { background: none; border: none; padding: 4px; cursor: pointer; color: inherit; transition: color 0.3s; font-family: inherit; font-size: inherit; font-weight: inherit; letter-spacing: inherit; }
.menu-lang button:hover { color: #3D1F0D; }
.menu-lang button.active { color: #3D1F0D; border-bottom: 1px solid #3D1F0D; }

.menu-block { padding: 40px 24px; }
.menu-block-light { background: #F5EFE3; color: #3D1F0D; }
.menu-block-dark { background: #781725; color: #F5EFE3; }
.menu-container { max-width: 600px; margin: 0 auto; }

.menu-section { margin-bottom: 40px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; text-align: center; }
.menu-icon { margin-bottom: 16px; opacity: 1; color: #C45A1F; background: rgba(224,160,48,0.15); padding: 12px; border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.menu-block-dark .menu-icon { background: rgba(224,160,48,0.08); color: #E0A030; }
.menu-icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.menu-section-title { font-family: 'Artigo', serif; font-size: 36px; color: inherit; border-bottom: 1px solid rgba(224,160,48,0.4); padding-bottom: 4px; }

.menu-category { font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #C45A1F; font-weight: 600; margin: 24px 0 12px; }
.menu-category:first-child { margin-top: 0; }

.menu-item { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 10px; gap: 12px; }
.menu-item-text { flex: 1; }
.menu-item-name { font-family: 'Montserrat', sans-serif; font-size: 15px; color: inherit; font-weight: 500; margin-bottom: 0px; }
.menu-item-dots { flex-grow: 1; border-bottom: 1px dotted rgba(61,31,13,0.3); position: relative; top: -6px; margin: 0 8px; }
.menu-block-dark .menu-item-dots { border-bottom-color: rgba(245,239,227,0.3); }
.menu-item-price { font-family: 'Montserrat', sans-serif; font-size: 15px; color: inherit; font-weight: 600; white-space: nowrap; }

.menu-juices-box { background: rgba(224,160,48,0.05); border: 1px solid rgba(224,160,48,0.2); border-radius: 2px; padding: 16px; margin-top: 12px; }
.menu-block-dark .menu-juices-box { background: rgba(224,160,48,0.1); }
.menu-juices-flavors { font-family: 'Artigo', serif; font-style: italic; font-size: 17px; color: inherit; line-height: 1.4; margin-bottom: 12px; text-align: center; }
.menu-juices-prices { display: flex; flex-direction: column; gap: 8px; align-items: center; }
@media (min-width: 480px) { .menu-juices-prices { flex-direction: row; justify-content: space-around; } }
.juice-price-item { text-align: center; }
.juice-size { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #C45A1F; font-weight: 600; margin-bottom: 2px; }

.menu-footer-img { height: 280px; width: 100%; background: url('../assets/banner-decoracion/01_galeria-piscina3.webp') center/cover no-repeat; border-top: 4px solid #E0A030; }
@media (min-width: 768px) { .menu-footer-img { height: 400px; } }

/* PAVOS VOLADORES (Animaciones) */
.peacocks-container {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}
.peacock {
  position: absolute;
  opacity: 0.6; /* Subtly transparent but visible colors */
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

/* Pavo 1: Volando de izq a der arriba */
.pool-pavo-1 {
  top: 15%; left: -150px; width: 120px;
  animation: flyRight 35s linear infinite;
}
/* Pavo 2: Volando de der a izq medio */
.pool-pavo-2 {
  top: 45%; right: -150px; width: 90px;
  animation: flyLeft 45s linear infinite;
}
/* Pavo 3: Volando de izq a der medio-bajo */
.pool-pavo-3 {
  top: 70%; left: -200px; width: 150px;
  animation: flyRight 55s linear infinite 10s;
}
/* Pavo 4: Caminando der a izq abajo */
.pool-pavo-4 {
  bottom: 2%; right: -100px; width: 60px;
  animation: walkLeft 40s linear infinite;
}
/* Pavo 5: Caminando izq a der abajo */
.pool-pavo-5 {
  bottom: 5%; left: -100px; width: 75px;
  animation: walkRight 60s linear infinite 15s;
}


/* Speed up pavos on mobile so they appear faster */
@media (max-width: 767px) {
  .pool-pavo-1 { animation: flyRight 15s linear infinite; }
  .pool-pavo-2 { animation: flyLeft 18s linear infinite 2s; }
  .pool-pavo-3 { animation: flyRight 22s linear infinite 5s; }
  .pool-pavo-4 { animation: walkLeft 16s linear infinite 1s; }
  .pool-pavo-5 { animation: walkRight 25s linear infinite 4s; }
}

@keyframes flyRight {
  0% { transform: translateX(0vw) translateY(0) rotate(5deg); }
  25% { transform: translateX(30vw) translateY(-20px) rotate(0deg); }
  50% { transform: translateX(60vw) translateY(15px) rotate(5deg); }
  75% { transform: translateX(90vw) translateY(-15px) rotate(-5deg); }
  100% { transform: translateX(120vw) translateY(0) rotate(5deg); }
}
@keyframes flyLeft {
  0% { transform: translateX(0vw) translateY(0) scaleX(-1) rotate(5deg); }
  25% { transform: translateX(-30vw) translateY(-20px) scaleX(-1) rotate(0deg); }
  50% { transform: translateX(-60vw) translateY(15px) scaleX(-1) rotate(5deg); }
  75% { transform: translateX(-90vw) translateY(-15px) scaleX(-1) rotate(-5deg); }
  100% { transform: translateX(-120vw) translateY(0) scaleX(-1) rotate(5deg); }
}
@keyframes walkRight {
  0% { transform: translateX(0vw) rotate(0deg); }
  50% { transform: translateX(60vw) rotate(1deg); }
  100% { transform: translateX(120vw) rotate(0deg); }
}
@keyframes walkLeft {
  0% { transform: translateX(0vw) scaleX(-1) rotate(0deg); }
  50% { transform: translateX(-60vw) scaleX(-1) rotate(1deg); }
  100% { transform: translateX(-120vw) scaleX(-1) rotate(0deg); }
}

/* PLANETARIO BANNER */
.planetario-banner {
  padding: 0; 
  background: #0d1214; 
  position: relative; 
  overflow: hidden; 
  margin-top: 56px;
}
.planetario-bg {
  position: absolute; 
  top: 0; left: 0; 
  width: 100%; height: 100%; 
  background-image: url('../planetario/assets/gallery/domo_05.webp'); 
  background-size: cover; 
  background-position: center; 
  opacity: 0.35;
  transition: transform 0.6s ease;
}
.planetario-banner:hover .planetario-bg {
  transform: scale(1.05);
}
.planetario-banner-inner {
  position: relative; 
  z-index: 2; 
  padding: 80px 24px; 
  text-align: center; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
}
.planetario-banner-title {
  color: #F5EFE3; 
  font-family: 'Cormorant Garamond', serif; 
  font-size: clamp(24px, 4vw, 36px); 
  font-weight: 500; 
  margin-bottom: 24px; 
  line-height: 1.2;
}
.btn-planetario {
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  color: #F5EFE3; 
  border: 1px solid rgba(245,239,227,0.4); 
  padding: 12px 28px; 
  border-radius: 4px; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none; 
  transition: all 0.3s ease;
}
.btn-planetario:hover {
  background: #F5EFE3;
  color: #0d1214;
}

/* ==== QR LANDING PAGE ==== */
.qr-page {
  background: #781725;
  color: #F5EFE3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}
.qr-container {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qr-header {
  text-align: center;
  margin-bottom: 56px;
  animation: fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.qr-logo {
  width: 140px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.qr-title {
  font-family: 'Artigo', serif;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 500;
}
.qr-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #E0A030;
  font-weight: 500;
}
.qr-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}
.qr-btn {
  background: transparent;
  border: 1px solid rgba(245,239,227,0.3);
  border-radius: 4px;
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.qr-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(224,160,48,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.qr-btn:hover {
  transform: translateY(-4px);
  border-color: #E0A030;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.qr-btn:hover::before {
  opacity: 1;
}
.qr-btn-es {
  font-family: 'Artigo', serif;
  font-size: 32px;
  color: #F5EFE3;
  position: relative;
  z-index: 2;
}
.qr-btn-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #E0A030;
  position: relative;
  z-index: 2;
}

/* ==== MENU ITEM DESC ==== */
.menu-item-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-style: italic;
  opacity: 0.7;
  margin-top: 2px;
}

/* ==== CUASIMODO THE GOOSE (GANSO) ==== */
.goose-walking {
  position: absolute;
  bottom: 2%;
  left: -200px;
  width: 110px;
  opacity: 0.8;
  animation: walkRight 25s linear infinite;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}
.goose-tail {
  transform-origin: left center;
  animation: goose-tail-wag 0.25s infinite alternate ease-in-out;
}
.goose-mouth-bottom {
  transform-origin: 298px 80px; /* Adjust according to SVG coordinates */
  animation: goose-quack 0.4s infinite alternate ease-in-out;
}
@keyframes goose-tail-wag {
  0% { transform: rotate(-6deg); }
  100% { transform: rotate(15deg); }
}
@keyframes goose-quack {
  0%, 60% { transform: rotate(0deg); }
  100% { transform: rotate(18deg); }
}


.goose-container, .goose-container-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}

@keyframes goose-walk-1 {
  0.0% { transform: translateX(0px) scaleX(1); opacity: 0.85; }
  5.0% { transform: translateX(230px) scaleX(1); opacity: 0.85; }
  8.33% { transform: translateX(230px) scaleX(1); }
  13.33% { transform: translateX(calc(100vw - 50px)) scaleX(1); }
  15.0% { transform: translateX(calc(100vw - 50px)) scaleX(1); }
  15.33% { transform: translateX(calc(100vw - 50px)) scaleX(-1); }
  17.33% { transform: translateX(calc(100vw - 150px)) scaleX(-1); }
  18.66% { transform: translateX(calc(100vw - 150px)) scaleX(-1); }
  19.0% { transform: translateX(calc(100vw - 150px)) scaleX(1); }
  33.33% { transform: translateX(calc(100vw + 300px)) scaleX(1); opacity: 0.85; }
  33.34% { opacity: 0; transform: translateX(calc(100vw + 300px)); }
  100% { opacity: 0; transform: translateX(calc(100vw + 300px)); }
}
@keyframes goose-walk-2 {
  0% { opacity: 0; transform: translateX(calc(100vw + 300px)); }
  33.32% { opacity: 0; transform: translateX(calc(100vw + 300px)); }
  33.33% { transform: translateX(calc(100vw + 300px)) scaleX(-1); opacity: 0.85; }
  38.33% { transform: translateX(calc(100vw - 50px)) scaleX(-1); opacity: 0.85; }
  41.66% { transform: translateX(calc(100vw - 50px)) scaleX(-1); }
  46.66% { transform: translateX(230px) scaleX(-1); }
  48.33% { transform: translateX(230px) scaleX(-1); }
  48.66% { transform: translateX(230px) scaleX(1); }
  50.66% { transform: translateX(330px) scaleX(1); }
  51.99% { transform: translateX(330px) scaleX(1); }
  52.33% { transform: translateX(330px) scaleX(-1); }
  66.66% { transform: translateX(0px) scaleX(-1); opacity: 0.85; }
  66.67% { opacity: 0; transform: translateX(0px); }
  100% { opacity: 0; transform: translateX(0px); }
}
@keyframes goose-walk-3 {
  0% { opacity: 0; transform: translateX(0px); }
  66.65% { opacity: 0; transform: translateX(0px); }
  66.66% { transform: translateX(0px) scaleX(1); opacity: 0.85; }
  71.66% { transform: translateX(230px) scaleX(1); opacity: 0.85; }
  75.0% { transform: translateX(230px) scaleX(1); }
  80.0% { transform: translateX(calc(100vw - 50px)) scaleX(1); }
  81.66% { transform: translateX(calc(100vw - 50px)) scaleX(1); }
  82.0% { transform: translateX(calc(100vw - 50px)) scaleX(-1); }
  84.0% { transform: translateX(calc(100vw - 150px)) scaleX(-1); }
  85.33% { transform: translateX(calc(100vw - 150px)) scaleX(-1); }
  85.66% { transform: translateX(calc(100vw - 150px)) scaleX(1); }
  100.0% { transform: translateX(calc(100vw + 300px)) scaleX(1); opacity: 0.85; }
}

.goose-container, .goose-container-2, .goose-container-3 {
  position: absolute;
  left: 0; right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}
.goose-container { margin-top: -100px; }
.goose-container-2 { margin-top: -50px; }
.goose-container-3 { margin-top: -150px; }

.goose-walking, .goose-walking-2, .goose-walking-3 {
  position: absolute;
  bottom: 0;
  left: -200px;
  width: 150px !important;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}
.goose-walking { animation: goose-walk-1 calc(var(--goose-time) * 3) linear infinite !important; }
.goose-walking-2 { animation: goose-walk-2 calc(var(--goose-time) * 3) linear infinite !important; }
.goose-walking-3 { animation: goose-walk-3 calc(var(--goose-time) * 3) linear infinite !important; }

.back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E0A030;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 100;
  transition: opacity 0.3s ease;
}
.back-btn:hover {
  opacity: 0.7;
}
.back-btn svg {
  width: 20px;
  height: 20px;
}

/* iOS SVG Animation Fixes */
@keyframes goose-walk-leg-1 { 0% { transform: rotate(-15deg); } 100% { transform: rotate(15deg); } }
      @keyframes goose-walk-leg-2 { 0% { transform: rotate(-15deg); } 100% { transform: rotate(15deg); } }
      @keyframes goose-head-bobbing { 
        0%, 100% { transform: rotate(0deg) translate(0px, 0px); } 
        50% { transform: rotate(6deg) translate(8px, 4px); } 
      }
      @keyframes toggle-profile {
        0%, 4.99% { opacity: 1; }
        5.0%, 8.33% { opacity: 0; }
        8.34%, 13.32% { opacity: 1; }
        13.33%, 15.0% { opacity: 0; }
        15.01%, 17.32% { opacity: 1; }
        17.33%, 18.66% { opacity: 0; }
        18.67%, 38.32% { opacity: 1; }
        38.33%, 41.66% { opacity: 0; }
        41.67%, 46.65% { opacity: 1; }
        46.66%, 48.33% { opacity: 0; }
        48.34%, 50.65% { opacity: 1; }
        50.66%, 51.99% { opacity: 0; }
        52.0%, 71.65% { opacity: 1; }
        71.66%, 75.0% { opacity: 0; }
        75.01%, 79.99% { opacity: 1; }
        80.0%, 81.66% { opacity: 0; }
        81.67%, 83.99% { opacity: 1; }
        84.0%, 85.33% { opacity: 0; }
        85.34%, 100% { opacity: 1; }
      }
      @keyframes toggle-frontal {
        0%, 4.99% { opacity: 0; }
        5.0%, 8.33% { opacity: 1; }
        8.34%, 13.32% { opacity: 0; }
        13.33%, 15.0% { opacity: 1; }
        15.01%, 17.32% { opacity: 0; }
        17.33%, 18.66% { opacity: 1; }
        18.67%, 38.32% { opacity: 0; }
        38.33%, 41.66% { opacity: 1; }
        41.67%, 46.65% { opacity: 0; }
        46.66%, 48.33% { opacity: 1; }
        48.34%, 50.65% { opacity: 0; }
        50.66%, 51.99% { opacity: 1; }
        52.0%, 71.65% { opacity: 0; }
        71.66%, 75.0% { opacity: 1; }
        75.01%, 79.99% { opacity: 0; }
        80.0%, 81.66% { opacity: 1; }
        81.67%, 83.99% { opacity: 0; }
        84.0%, 85.33% { opacity: 1; }
        85.34%, 100% { opacity: 0; }
      }
@keyframes goose-tail-wag { 0% { transform: rotate(-5deg); } 100% { transform: rotate(5deg); } }

/* ═══ FIESTAS PATRIAS BANNER & BADGE ═══ */
.hero-fp-badge {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 24px;
  background: rgba(163, 29, 35, 0.4);
  border: 1px solid rgba(224, 160, 48, 0.5);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: badge-pulse 2.5s infinite;
}
.hero-fp-badge:hover {
  background: rgba(163, 29, 35, 0.8);
  transform: translateY(-2px);
  border-color: #E0A030;
  color: #fff;
}
@keyframes badge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(163, 29, 35, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(163, 29, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(163, 29, 35, 0); }
}

.fp-strip-banner {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #8a171d 0%, #c4232b 50%, #8a171d 100%);
  border-bottom: 2px solid #E0A030;
  box-shadow: 0 4px 15px rgba(196, 35, 43, 0.4);
  color: #fff;
  text-decoration: none;
  padding: 20px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition: all 0.3s ease;
}
.fp-strip-banner:hover {
  background: linear-gradient(90deg, #9e1a21 0%, #d62730 50%, #9e1a21 100%);
  box-shadow: 0 6px 20px rgba(196, 35, 43, 0.6);
}
.fp-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.fp-strip-text { font-size: 16px; font-weight: 500; letter-spacing: 0.5px; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.fp-strip-text strong { color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.fp-strip-cta {
  font-size: 15px; font-weight: 700; color: #f5e9d3; background: rgba(0,0,0,0.2); padding: 8px 20px; border-radius: 50px; display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(224, 160, 48, 0.4); transition: all 0.3s;
}
.fp-strip-banner:hover .fp-strip-cta { border-color: #E0A030; background: rgba(0,0,0,0.3); color: #fff; transform: translateX(3px); }

@media (min-width: 768px) {
  .fp-strip-inner { flex-direction: row; gap: 32px; text-align: left; justify-content: center; padding: 0 40px; }
  .fp-strip-text { font-size: 18px; }
  .fp-strip-cta { font-size: 15px; }
}

