/* ============================================
   AMCABI TURISMO — Rediseño 2026
   Paleta: Rosa #fe007a | Amarillo #ffff01 | Blanco #ffffff
   Fuentes: Inter + Playfair Display (Google Fonts)
   ============================================ */

/* ── Variables ── */
:root {
  --pink: #E6007E;
  --pink-dark: #C1006A;
  --pink-light: rgba(230, 0, 126, 0.08);
  --yellow: #FFE100;
  --yellow-dark: #ccb400;
  --dark: #121212;
  --dark-2: #212529;
  --mid: #495057;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --border: rgba(0, 0, 0, 0.05);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 25px;
  --radius-xl: 50px;

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-pink: 0 10px 30px rgba(230, 0, 126, 0.25);

  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-fast: all 0.2s ease;

  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --header-h: 160px;
  /* Altura aproximada header + menú */
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Forzar fuentes sobre skeleton.css y cualquier theme */
body,
body div,
body p,
body span,
body li,
body td,
body input,
body select,
body textarea,
body button,
body label,
#menu li a,
.footer-menu a {
  font-family: var(--font-body) !important;
}

body {
  background: var(--white);
  color: var(--dark-2);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading) !important;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

h1 {
  font-size: clamp(3.5rem, 12vw, 3.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -2px !important;
}

h2 {
  font-size: clamp(2.4rem, 8vw, 3.8rem) !important;
  font-weight: 800 !important;
  margin-bottom: 20px !important;
}

h3 {
  font-size: clamp(1.8rem, 5vw, 2.6rem) !important;
  font-weight: 700 !important;
}

h4 {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
}

p,
body,
li,
td,
span,
div,
a {
  font-size: 1.45rem !important;
  /* Texto base muy legible */
  font-family: var(--font-body) !important;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
#header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

#header-wrapper.scrolled {
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#header {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  height: 105px;
  /* Altura fija para la parte del logo */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo-wrap {
  flex-shrink: 0;
}

.logo {

  max-width: 235px !important;
  display: block;
  transition: var(--transition);
}

#header-wrapper.scrolled .logo {
  height: 34px !important;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: -10px;
}

.header-link {
  display: flex;
  align-items: center;
}

.header-link a {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
  color: var(--dark-2) !important;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 50px;
  transition: var(--transition-fast);
  white-space: nowrap;
  text-decoration: none !important;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  background: var(--white);
}

.header-link a:hover {
  background: var(--pink);
  color: var(--white) !important;
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.header-link a .fa-whatsapp {
  color: #25D366 !important;
  font-size: 1.1rem;
}

.header-link a .fa-phone {
  color: var(--pink) !important;
  font-size: 1rem;
}

.header-link a .fa-user {
  color: var(--mid) !important;
  font-size: 1rem;
}

/* ── Nav / Menu ── */
#menu-wrapper {
  background: var(--yellow) !important;
  position: relative;
  z-index: 100 !important;
  display: block !important;
  visibility: visible !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  height: 70px;
}

.show-menu {
  display: none;
}

#show-menu {
  display: none;
}

/* Override skeleton.css ul styles dentro del menú */
#menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 1250px;
  visibility: visible !important;
}

#menu-wrapper ul#menu li,
#menu li {
  display: block;
  list-style: none !important;
  float: none !important;
}

#menu li a {
  display: block !important;
  color: #121212 !important;
  /* Texto bien oscuro */
  font-family: var(--font-body) !important;
  font-size: 1.3rem !important;
  /* Menú más grande */
  font-weight: 700 !important;
  padding: 18px 24px !important;
  line-height: normal !important;
  text-decoration: none !important;
  text-transform: uppercase;
}

#menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition-fast);
}

#menu-wrapper ul#menu li a:hover,
#menu li a:hover,
#menu li.current_page_item a {
  color: var(--pink) !important;
  background: rgba(0, 0, 0, 0.05) !important;
  border-radius: 8px;
}

#menu li a::after {
  display: none !important;
}

/* Mobile menu */
@media (max-width: 860px) {
  #header {
    height: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .header-contacts {
    width: 100%;
    justify-content: center;
    gap: 4px;
  }

  .header-link a {
    font-size: 0.82rem !important;
    padding: 7px 10px !important;
  }

  .show-menu {
    display: block;
    cursor: pointer;
    color: var(--white);
    padding: 14px 20px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    user-select: none;
  }

  #menu-wrapper ul#menu,
  #menu {
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0 !important;
    gap: 0;
  }

  #show-menu:checked~ul#menu,
  #show-menu:checked~#menu {
    display: flex !important;
  }

  #menu li a {
    padding: 14px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  #menu li a::after {
    display: none !important;
  }
}

/* ══════════════════════════════════════════
   HERO / SLIDER
══════════════════════════════════════════ */
#wrapper {
  position: relative;
  overflow: hidden;
  margin-top: var(--header-h);
  height: 500px;
  /* Altura máxima de 500px según rediseño */
}

.slider-wrapper {
  height: 500px;
  overflow: hidden;
}

#slider {
  height: 500px !important;
}

#slider img {
  height: 500px !important;
  object-fit: cover !important;
}

#wrapper .slider-wrapper {
  width: 100%;
  height: 500px;
  position: relative;
  z-index: 10;
}

/* Capa de texto encima del slider */
.hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 0, 126, 0.35);
  /* Muy transparente para ver fotos */
  pointer-events: none;
  text-align: center;
}

.hero-text-box {
  max-width: 900px;
  padding: 40px;
  pointer-events: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 0, 122, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Onda decorativa sobre el slider */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 10;
  line-height: 0;
}

/* ══════════════════════════════════════════
   SEARCHBOX (Hacé tu reserva)
══════════════════════════════════════════ */
#searchbox {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 20;
}

.searchbox-inner {
  background: linear-gradient(135deg, var(--pink) 0%, #c4005d 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-pink);
}

.searchbox-inner .row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.searchbox {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
}

.searchbox .fa-arrow-right {
  margin-left: 6px;
  font-size: 0.9rem;
}

#searchbox select,
#searchbox .u-full-width {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

#searchbox select option {
  color: var(--dark-2);
  background: var(--white);
}

#searchbox select:focus,
#searchbox select:hover {
  border-color: var(--yellow);
  outline: none;
  background: rgba(255, 255, 255, 0.22);
}

.btn-reservar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark-2);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255, 255, 0, 0.35);
  letter-spacing: 0.02em;
}

.btn-reservar:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 0, 0.45);
}

/* ══════════════════════════════════════════
   FORMAS DE PAGO
══════════════════════════════════════════ */
.pago {
  padding: 20px 20px !important;
  text-align: center;
}

/* ══════════════════════════════════════════
   CATEGORÍAS / DESTINOS CARDS
══════════════════════════════════════════ */
.section-grid {
  padding: 32px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.section-title h2 {
  color: var(--dark-2);
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  height: 6px;
  width: 80px;
  background: var(--pink);
  border-radius: 10px;
  margin: 12px auto 0;
}

/* Grid de categorías */
.grid-categorias {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.grid-categorias.destacadas {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0 20px;
  margin-bottom: 12px;
}

/* Card de destino / categoría */
.categoria,
.categoria-des {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: transparent !important;
  /* Elimina fondo negro/oscuro */
  cursor: pointer;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  isolation: isolate;
  border: none !important;
}

.categoria:hover,
.categoria-des:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.categoria img,
.categoria-des img {
  width: 100% !important;
  height: 100% !important;
  min-height: 250px;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.9);
  display: block !important;
  border-radius: var(--radius-lg);
}

.categoria:hover img,
.categoria-des:hover img {
  filter: brightness(0.65);
  transform: scale(1.08);
}

/* Overlay de color al hover */
.categoria::after,
.categoria-des::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254, 0, 122, 0.0), rgba(254, 0, 122, 0.0));
  transition: var(--transition);
  border-radius: var(--radius-md);
  pointer-events: none;
  /* Dejar pasar clicks al enlace inferior */
}

.categoria:hover::after,
.categoria-des:hover::after {
  background: linear-gradient(135deg, rgba(254, 0, 122, 0.35), rgba(255, 255, 1, 0.10));
}

/* ── Destino card (destinos.php) ── */
.destino {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

.destino:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.destino img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.destino:hover img {
  transform: scale(1.08);
}

.destino h4 {
  padding: 20px 20px 8px;
  color: var(--dark-2);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
}

.destino span {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 6px 16px;
  background: var(--yellow);
  color: var(--dark-2);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 10px;
  transform: rotate(-1deg);
}

.destino select,
.destino .u-full-width {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--dark-2);
  font-family: var(--font-body);
  font-size: 1.5rem;
  cursor: pointer;
  appearance: none;
  transition: var(--transition-fast);
}

.destino select:focus {
  border-color: var(--pink);
  outline: none;
}

/* ── Page header strip ── */
.header-destino {
  background: var(--pink);
  border-radius: var(--radius-lg);
  padding: 25px 35px 10px 35px;
  margin: 175px 0 35px;
  box-shadow: var(--shadow-pink);
  min-height: 70px;
}

.header-destino h2 {
  color: #ffffff;
  font-family: var(--font-heading);
  margin: 0;
}

/* ══════════════════════════════════════════
   DESTINO DETALLE (destino.php)
══════════════════════════════════════════ */
.imagen-destino {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.imagen-destino img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.destino-data {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--pink);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.destino-data .precio {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8em!important;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 4px;
}

.destino-data .personas {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.destino-data .fecha {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-2);
  font-weight: 500;
  margin: 5px 0 6px;
  font-size: 0.9rem;
}

.destino-data .fecha .fa {
  color: var(--pink);
}

.cambio-salida select,
.destino-data .u-full-width {
  width: 100%;
  padding: 5px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--dark-2);
  font-family: var(--font-body);
  font-size: 1.2rem;
  cursor: pointer;
  appearance: none;
  transition: var(--transition-fast);
  margin-bottom: 10px;
}

.cambio-salida select:focus,
.destino-data select:focus {
  border-color: var(--pink);
  outline: none;
}

/* Botón de reserva */
.bot-reserva,
.boton-contenedor .bot-reserva {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--pink) 0%, #c4005d 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 20px;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 25px;
  transition: var(--transition);
  box-shadow: var(--shadow-pink);
  letter-spacing: 0.03em;
}

.bot-reserva:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(254, 0, 122, 0.45);
}

/* Button generic */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink) 0%, #c4005d 100%);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
  color: var(--white) !important;
}

/* ══════════════════════════════════════════
   HOTEL SECTION
══════════════════════════════════════════ */
.nine.columns h2,
.four.columns h2 {
  color: var(--dark-2);
  margin-bottom: 16px;
}

.slider-wrapper {
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════
   SEPARADOR
══════════════════════════════════════════ */
.separador {
  height: 48px;
}

/* ══════════════════════════════════════════
   QUIÉNES SOMOS
══════════════════════════════════════════ */
#contacto.row {
  padding: 40px 0;
  margin: 0;
}

#contacto .center {
  text-align: center;
  padding: 20px;
}

#contacto .center h3 {
  color: var(--pink);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#contacto .center h3 .fa {
  display: block;
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 8px;
}

#contacto .contenido {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  padding: 20px 24px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer-wave-wrap {
  line-height: 0;
  background: var(--white);
}

#footer {
  background: #fe007a;
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 32px;
  position: relative;
}

#footer h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 18px;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--pink);
  padding-left: 4px;
}

.footer-menu.grande li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Bloque de Pase dentro del footer */
.footer-pase {
  background: var(--pink);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  overflow: hidden;
  box-shadow: var(--shadow-pink);
}

.footer-pase a img {
  border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════
   WHATSAPP FLOTANTE
══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  text-decoration: none;
  animation: waPulse 2.5s ease infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.60);
  animation: none;
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.whatsapp-label {
  background: var(--dark-2);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 36px rgba(37, 211, 102, 0.70), 0 0 0 8px rgba(37, 211, 102, 0.10);
  }
}

/* ══════════════════════════════════════════
   ANIMACIONES GENERALES
══════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes waveFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.animate-fadein {
  animation: fadeIn 0.7s ease both;
}

.animate-fadeinup {
  animation: fadeInUp 0.7s ease both;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

/* Reveal al hacer scroll (clase añadida por JS) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   CONTACTO (mapa)
══════════════════════════════════════════ */
#contacto-page iframe {
  border-radius: var(--radius-md);
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
}

/* ══════════════════════════════════════════
   FORMS (confirmar-reserva, etc.)
══════════════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  font-family: var(--font-body);
  font-size: 1.2rem;
  padding: 11px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  width: 100%;
  transition: var(--transition-fast);
  background: var(--off-white);
  color: var(--dark-2);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(254, 0, 122, 0.08);
}

label {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 5px;
}

input[type="submit"],
button[type="submit"] {
  background: linear-gradient(135deg, var(--pink) 0%, #c4005d 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-pink);
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(254, 0, 122, 0.45);
}

/* ══════════════════════════════════════════
   SKELETON GRID OVERRIDE
   (mantener compatibilidad con el framework existente)
══════════════════════════════════════════ */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .imagen-destino img {
    height: 280px;
  }

  .destino-data {
    position: static;
  }
}

@media (max-width: 600px) {
  .searchbox-inner .row {
    flex-direction: column;
    gap: 12px;
  }

  .searchbox {
    font-size: 1rem;
  }

  #footer .row {
    flex-direction: column;
    gap: 24px;
  }

  .footer-pase {
    flex-direction: column;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .imagen-destino img {
    height: 220px;
  }

  .grid-categorias {
    grid-template-columns: 1fr;
  }
}