/* Travels On Punta Cana - Diseño moderno y profesional */
:root {
  --sky: #0ea5e9;
  --ocean: #0284c7;
  --deep: #0c4a6e;
  --gold: #f59e0b;
  --sand: #fef3c7;
  --white: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --transition-slow: 0.35s ease;
  --shadow-sm: 0 2px 8px rgba(12, 74, 110, 0.06);
  --shadow-md: 0 8px 24px rgba(12, 74, 110, 0.1);
  --shadow-lg: 0 20px 40px -12px rgba(12, 74, 110, 0.15);
  --header-height: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main {
  padding-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
}

/* ========== HEADER MODERNO ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(224, 242, 254, 0.4) 50%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(12, 74, 110, 0.12), 0 1px 0 rgba(14, 165, 233, 0.2);
  border-bottom: 2px solid rgba(14, 165, 233, 0.25);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header:hover {
  box-shadow: 0 8px 32px rgba(12, 74, 110, 0.15), 0 1px 0 rgba(14, 165, 233, 0.25);
}

.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.75rem;
}

.site-header .header-three {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: calc(var(--header-height) - 0.75rem * 2);
}

.site-header .nav-left { order: 1; flex: 1; justify-content: flex-start; min-width: 0; }
.site-header .logo-center { order: 2; flex: 0 0 auto; }
.site-header .nav-right { order: 3; flex: 1; justify-content: flex-end; min-width: 0; }

.site-header .logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: var(--deep);
  font-weight: 700;
  transition: transform var(--transition), opacity var(--transition);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  overflow: visible;
}

.site-header .logo-center:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.site-header .logo-center:active {
  transform: scale(0.98);
}

.site-header .logo-silueta {
  height: 84px;
  width: auto;
  transform: scale(1.2);
  filter: drop-shadow(2px 2px 3px rgba(12, 74, 110, 0.25))
          drop-shadow(4px 6px 12px rgba(12, 74, 110, 0.2))
          drop-shadow(8px 12px 24px rgba(0, 0, 0, 0.12))
          drop-shadow(-1px -1px 2px rgba(255, 255, 255, 0.4));
  transition: filter var(--transition), transform var(--transition);
}

.site-header .logo-center:hover .logo-silueta {
  filter: drop-shadow(3px 3px 6px rgba(2, 132, 199, 0.3))
          drop-shadow(6px 10px 20px rgba(12, 74, 110, 0.22))
          drop-shadow(10px 14px 28px rgba(0, 0, 0, 0.14))
          drop-shadow(-1px -1px 2px rgba(255, 255, 255, 0.5));
}

.site-header .logo-text {
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--deep);
  background: linear-gradient(135deg, var(--deep) 0%, var(--ocean) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--deep);
  font-weight: 700;
  font-size: 1.35rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-main {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.site-header .nav-main a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header .nav-main a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(2, 132, 199, 0.1));
  opacity: 0;
  transition: opacity var(--transition);
}

.site-header .nav-main a::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean), var(--sky));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  border-radius: 2px;
}

.site-header .nav-main a:hover {
  color: var(--ocean);
}

.site-header .nav-main a:hover::before {
  opacity: 1;
}

.site-header .nav-main a:hover::after {
  transform: scaleX(1);
}

.site-header .nav-main a:active::before {
  background: rgba(14, 165, 233, 0.12);
}

.nav-main a:hover {
  color: var(--ocean);
}

/* Botón hamburguesa: solo visible en móvil */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(12, 74, 110, 0.06);
  border: 1px solid rgba(12, 74, 110, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  order: 0;
  z-index: 1002;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-toggle:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.2);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform var(--transition-slow), opacity var(--transition), background var(--transition);
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.25);
}

.nav-toggle[aria-expanded="true"] span {
  background: var(--ocean);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 74, 110, 0.2);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.open {
  opacity: 1;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -8px 0 40px rgba(12, 74, 110, 0.08), -2px 0 0 rgba(14, 165, 233, 0.06);
  border-left: 1px solid rgba(12, 74, 110, 0.08);
  z-index: 1001;
  padding: calc(var(--header-height) + 1.25rem) 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
}

.nav-drawer a:hover {
  color: var(--ocean);
  background: rgba(14, 165, 233, 0.08);
  padding-left: 1.25rem;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-header .nav-left,
  .site-header .nav-right {
    display: none !important;
  }

  .site-header .header-three {
    gap: 10px;
  }

  .site-header .logo-center {
    flex: 1;
    justify-content: center;
  }

  .nav-overlay,
  .nav-drawer {
    display: flex;
  }
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: white;
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--deep);
  border: 2px solid var(--ocean);
}

.btn-outline:hover {
  background: var(--ocean);
  color: white;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(100, 116, 139, 0.15);
  color: var(--text);
  border: 1px solid rgba(100, 116, 139, 0.3);
}

.btn-secondary:hover {
  background: rgba(100, 116, 139, 0.25);
  border-color: rgba(100, 116, 139, 0.5);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: 1px solid #20bd5a;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  color: white;
  border-color: #1da851;
  transform: translateY(-1px);
}

/* Focus visible para accesibilidad */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 2px;
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--sky) 0%, var(--ocean) 40%, var(--deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  pointer-events: none;
}

.hero .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.hero-cta {
  margin-top: 1.5rem;
}

.hero-cta .btn {
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.hero-visual img,
.hero-visual .hero-media-video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero .inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    order: -1;
  }
}

/* Destinos & Aventuras */
.section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sección Destinos: fondo con video de playa real + logo y olas */
.section-destinos {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.4) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(224, 242, 254, 0.3) 100%);
}

.section-destinos-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Video de playa: cubre toda la sección, realista */
.section-destinos-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Overlay para que el texto sea legible sobre el video (semi-transparente para ver el video) */
.section-destinos-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.65) 40%, rgba(224, 242, 254, 0.6) 100%);
  z-index: 1;
}

.section-destinos-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(55vw, 420px);
  height: auto;
  opacity: 0.12;
  object-fit: contain;
  animation: section-destinos-float 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes section-destinos-float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.03); }
}

.section-destinos-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  overflow: hidden;
  z-index: 2;
}

.section-destinos .section-title,
.section-destinos .destinos-grid {
  position: relative;
  z-index: 1;
}

/* Olas animadas (formas con gradiente) */
.wave {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: 50% 100%;
  opacity: 0.2;
}

.wave-1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0 60 Q300 0 600 60 T1200 60 V120 H0 Z' fill='%230284c7'/%3E%3C/svg%3E");
  animation: wave-move 12s linear infinite;
  opacity: 0.15;
}

.wave-2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0 80 Q300 20 600 80 T1200 80 V120 H0 Z' fill='%230ea5e9'/%3E%3C/svg%3E");
  animation: wave-move 10s linear infinite reverse;
  animation-delay: -2s;
  opacity: 0.12;
}

.wave-3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0 40 Q400 100 600 40 T1200 40 V120 H0 Z' fill='%230c4a6e'/%3E%3C/svg%3E");
  animation: wave-move 14s linear infinite;
  animation-delay: -5s;
  opacity: 0.1;
}

@keyframes wave-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--deep);
  margin-bottom: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.destino-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  position: relative;
}

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

.destino-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(12, 74, 110, 0.2) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 1;
}

.destino-card:hover::before {
  opacity: 1;
}

.destino-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.destino-card:hover img {
  transform: scale(1.06);
}

.destino-card .content {
  padding: 1.25rem;
}

.destino-card h3 {
  margin: 0 0 0.5rem;
  color: var(--deep);
  font-size: 1.2rem;
}

.destino-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.destino-card .link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--ocean);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.destino-card .link:hover {
  color: var(--deep);
  transform: translateX(4px);
}

.destino-card .link:hover {
  text-decoration: underline;
}

/* Servicios destacados (Lujo, Diversión, Atención) */
.servicios-strip {
  background: linear-gradient(90deg, rgba(14,165,233,0.08) 0%, rgba(2,132,199,0.12) 50%, rgba(12,74,110,0.1) 100%);
  padding: 4rem 1.5rem;
}

.servicios-strip .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.servicios-strip .inner > div {
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.servicios-strip .inner > div:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.8);
  box-shadow: var(--shadow-md);
}

.servicio-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  transition: transform var(--transition);
}

.servicios-strip .inner > div:hover .servicio-icon {
  transform: scale(1.08);
}

.servicio-icon span {
  font-size: 2rem;
}

.servicios-strip h3 {
  margin: 0 0 0.5rem;
  color: var(--deep);
  font-size: 1.15rem;
  font-weight: 700;
}

.servicios-strip p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CTA bloque */
.cta-block {
  background: linear-gradient(135deg, var(--deep) 0%, #0a3d5c 100%);
  color: white;
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(14,165,233,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-block h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  font-weight: 800;
}

.cta-block p {
  margin: 0 0 1.5rem;
  opacity: 0.95;
  position: relative;
}

.cta-block .btn-primary {
  background: linear-gradient(135deg, var(--gold), #d97706);
  position: relative;
}

/* ========== PÁGINA EXCURSIONES (fondo video) ========== */
.section-excursiones {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 4rem;
  min-height: 42vh;
}

.excursiones-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.excursiones-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.excursiones-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(224, 242, 254, 0.55) 100%);
  z-index: 1;
}

.section-excursiones .section-title,
.section-excursiones p,
.section-excursiones .destinos-grid {
  position: relative;
  z-index: 2;
}

/* ========== PÁGINA CONTACTO ========== */
.section-contacto {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.contacto-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.contacto-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.contacto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(224, 242, 254, 0.8) 100%);
  z-index: 1;
}

.section-contacto .contacto-header,
.section-contacto .contacto-alert,
.section-contacto .contacto-grid {
  position: relative;
  z-index: 2;
}

.contacto-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contacto-header .section-title {
  margin-bottom: 0.5rem;
}

.contacto-intro {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.contacto-alert {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
}

.contacto-alert-success {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.contacto-alert-error {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.25);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.contacto-directo {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(2, 132, 199, 0.06) 100%);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contacto-subtitle {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep);
}

.contacto-directo-text {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contacto-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contacto-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
}

.contacto-btn-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.contacto-btn-icon svg {
  width: 24px;
  height: 24px;
}

.contacto-btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.contacto-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

.contacto-btn-fb {
  background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.3);
}

.contacto-btn-fb:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
  color: white;
}

.contacto-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(12, 74, 110, 0.08);
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contacto-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.contacto-field input,
.contacto-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contacto-field input:focus,
.contacto-field textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.contacto-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contacto-submit {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .contacto-grid {
    grid-template-columns: 1fr;
  }

  .contacto-directo {
    order: 1;
  }

  .contacto-form-card {
    order: 2;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0c4a6e 100%);
  color: #94a3b8;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 700;
  font-size: 1.15rem;
  transition: opacity var(--transition);
  background: transparent;
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: transparent;
  /* Sombra suave para que el logo transparente se lea bien sobre fondo oscuro */
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
}

.footer-logo-text {
  letter-spacing: 0.02em;
}

.footer-tagline {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
  padding-left: 4.25rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.footer-icon svg {
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-nav a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold);
}

@media (max-width: 600px) {
  .site-footer .inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

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

  .footer-tagline {
    padding-left: 0;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

/* Chatbot flotante */
.chat-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #ffffff !important;
  background-image: none !important;
  border: 2px solid #0c4a6e;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.chat-toggle .chat-toggle-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}


.chat-window {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 380px;
  max-width: calc(100vw - 2rem);
  height: 480px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 998;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.92) translateY(10px);
  transform-origin: bottom right;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.chat-window.open {
  display: flex;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.chat-header {
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  color: white;
  padding: 1rem 1.25rem;
  font-weight: 600;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-msg {
  max-width: 85%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.chat-msg.bot {
  background: #f1f5f9;
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--ocean);
  color: white;
  align-self: flex-end;
}

.chat-input-wrap {
  padding: 0.75rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 0.5rem;
}

.chat-input-wrap input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.chat-input-wrap input:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
  outline: none;
}

.chat-input-wrap button {
  padding: 0.65rem 1rem;
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.chat-input-wrap button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

/* ========== PÁGINA RESERVA ========== */
.reserva-section {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
/* Layout: imagen + galería a la izquierda (más pequeño), formulario al lado */
.reserva-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .reserva-layout {
    grid-template-columns: 1fr;
  }
}
.reserva-excursion-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}
@media (max-width: 768px) {
  .reserva-excursion-card { position: static; }
}
.reserva-excursion-imagen {
  position: relative;
  width: 100%;
  height: 260px;
  min-height: 260px;
  background: #f1f5f9;
  overflow: hidden;
}
.reserva-excursion-imagen img,
.reserva-excursion-imagen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reserva-excursion-galeria {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}
.reserva-galeria-prev,
.reserva-galeria-next {
  width: 32px;
  height: 32px;
  border: 1px solid #e2e8f0;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text);
  flex-shrink: 0;
}
.reserva-galeria-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}
.reserva-galeria-thumb {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
  position: relative;
  flex-shrink: 0;
}
.reserva-galeria-thumb.active {
  border-color: var(--ocean);
}
.reserva-galeria-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reserva-galeria-thumb-video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: white;
  font-size: 0.9rem;
}
.reserva-galeria-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reserva-excursion-info {
  padding: 0 1.25rem 1.25rem;
}
.reserva-excursion-titulo {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--deep);
  line-height: 1.3;
}
.reserva-excursion-desc { margin: 0 0 0.4rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.4; }
.reserva-excursion-duracion { margin: 0 0 0.4rem; font-size: 0.85rem; color: var(--text-muted); }
.reserva-excursion-precios { margin: 0; font-weight: 600; font-size: 1rem; color: var(--ocean); }
.reserva-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}
.reserva-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .reserva-form-grid { grid-template-columns: 1fr; }
}
.reserva-form .form-group { margin-bottom: 1rem; }
.reserva-form label { display: block; margin-bottom: 0.35rem; font-weight: 600; font-size: 0.9rem; }
.reserva-form input[type="text"],
.reserva-form input[type="email"],
.reserva-form input[type="tel"],
.reserva-form input[type="number"],
.reserva-form input[type="date"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 1rem;
}
.reserva-opciones { margin: 1rem 0; }
.reserva-opciones-title { margin: 0 0 0.5rem; font-weight: 600; }
.reserva-opcion-check { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; cursor: pointer; }
.reserva-total-wrap { margin: 1.25rem 0; padding-top: 1rem; border-top: 1px solid #e2e8f0; }
.reserva-total-label { margin: 0 0 0.25rem; font-size: 0.9rem; color: var(--text-muted); }
.reserva-total { margin: 0; font-size: 1.5rem; font-weight: 700; color: var(--ocean); }
.reserva-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.reserva-buttons .btn { min-width: 140px; }

/* Utilidades */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
