/* ========================
   ESTEFANY'S TOURS — CSS
   Mobile-first · No framework
   ======================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --deep:    #03045E;
  --ocean:   #0077B6;
  --sea:     #00B4D8;
  --cyan:    #48CAE4;
  --foam:    #EFF8FF;
  --sand:    #F4A261;
  --coral:   #E76F51;
  --white:   #FFFFFF;
  --dark:    #0A1628;
  --text:    #1B2A41;
  --muted:   #5E6E82;
  --border:  #D0E8F5;
  --shadow:  0 4px 24px rgba(0,119,182,.12);
  --shadow-lg: 0 8px 48px rgba(0,119,182,.22);
  --r:       16px;
  --r-sm:    8px;
  --transition: .3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Base ---- */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { position: relative; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--ocean); color: var(--white); }
.btn-primary:hover { background: var(--deep); box-shadow: var(--shadow); }

.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5b; box-shadow: 0 4px 20px rgba(37,211,102,.35); }

.btn-whatsapp-lg {
  background: #25D366; color: var(--white);
  padding: 16px 36px; font-size: 1.1rem;
  box-shadow: 0 6px 30px rgba(37,211,102,.4);
}
.btn-whatsapp-lg:hover { background: #1ebe5b; transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.8);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.15); }

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

.btn-ocean { background: var(--ocean); color: var(--white); }
.btn-ocean:hover { background: var(--deep); }

.btn-white { background: var(--white); color: var(--ocean); }
.btn-white:hover { background: var(--foam); }

.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.7); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

.btn-outline-white-lg {
  background: transparent;
  border: 2px solid rgba(255,255,255,.8);
  color: var(--white);
  padding: 16px 36px;
  font-size: 1.1rem;
}
.btn-outline-white-lg:hover { background: rgba(255,255,255,.15); }

.btn-full { width: 100%; justify-content: center; }


/* ========================
   NAVIGATION
   ======================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--white);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}
#navbar.scrolled .nav-logo img { filter: none; }

.nav-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--deep);
  padding: 80px 24px 32px;
  gap: 4px;
}
.nav-menu.open { display: flex; }

.nav-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--white);
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: background var(--transition);
}
.nav-menu li a:hover { background: rgba(255,255,255,.1); }

.nav-cta {
  background: #25D366 !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  margin-top: 8px;
  display: inline-flex !important;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.nav-cta:hover { background: #1ebe5b !important; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}
#navbar.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ========================
   HERO
   ======================== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrapper video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3,4,94,.55) 0%,
    rgba(0,119,182,.35) 50%,
    rgba(3,4,94,.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 24px 80px;
  max-width: 820px;
}

.hero-logo {
  height: 90px;
  width: auto;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,0,0,.4));
}

.hero-tagline {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}

#hero h1 {
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: 60px; }


/* ========================
   STATS
   ======================== */
#stats {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--r);
  background: var(--foam);
}
.stat i {
  font-size: 1.8rem;
  color: var(--ocean);
  flex-shrink: 0;
}
.stat div { display: flex; flex-direction: column; }
.stat strong { font-size: 1.4rem; font-weight: 700; color: var(--deep); line-height: 1; }
.stat span { font-size: .78rem; color: var(--muted); margin-top: 2px; }


/* ========================
   SECTION HEADER
   ======================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 10px auto 0;
}
.section-header--light h2,
.section-header--light p { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.75); }

.section-badge {
  display: inline-block;
  background: rgba(0,119,182,.1);
  color: var(--ocean);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.section-badge--light {
  background: rgba(255,255,255,.15);
  color: var(--cyan);
}


/* ========================
   TOURS GRID
   ======================== */
#tours { padding: 72px 0; }

.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tour-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.tour-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.05); }

.tour-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ocean);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.tour-badge--featured { background: var(--sand); color: var(--dark); }
.tour-badge--night    { background: #1a1a3e; color: var(--cyan); }
.tour-badge--premium  { background: #7B5EA7; color: var(--white); }

.tour-body {
  padding: 24px;
}
.tour-icon {
  width: 44px; height: 44px;
  background: var(--foam);
  color: var(--ocean);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.tour-body h3 { margin-bottom: 8px; }
.tour-body p  { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }

.tour-highlights {
  margin-bottom: 20px;
}
.tour-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
  padding: 3px 0;
}
.tour-highlights li i { color: var(--sea); font-size: .75rem; flex-shrink: 0; }


/* ========================
   DETAIL SECTIONS (LOS ARCOS / MARIETAS)
   ======================== */
.section-foam { background: var(--foam); }

.section-foam .wave-top,
.section-foam .wave-bottom { line-height: 0; }
.wave-top svg,
.wave-bottom svg { width: 100%; }

#arcos  { padding: 72px 0; }
#marietas { padding: 72px 0; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

/* Image gallery in detail */
.detail-gallery-main {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #eee;
}
.detail-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .25s ease;
}
.detail-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.detail-gallery-thumbs img {
  width: calc(20% - 7px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-sm);
  cursor: pointer;
  opacity: .7;
  transition: opacity var(--transition), transform var(--transition);
}
.detail-gallery-thumbs img:hover { opacity: 1; transform: scale(1.05); }

/* Detail info panel */
.detail-price-box {
  background: var(--deep);
  color: var(--white);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
}
.price-main span { font-size: 1.2rem; }
.price-sub  { font-size: .9rem; color: rgba(255,255,255,.8); margin-top: 6px; }
.price-note { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 4px; }

.detail-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  flex: 1;
  min-width: 130px;
}
.meta-item i { color: var(--ocean); font-size: 1.1rem; }
.meta-item div { display: flex; flex-direction: column; }
.meta-item strong { font-size: .8rem; font-weight: 600; color: var(--text); }
.meta-item span   { font-size: .78rem; color: var(--muted); }

.detail-schedules,
.detail-includes,
.detail-route { margin-bottom: 20px; }

.detail-schedules h4,
.detail-includes h4,
.detail-route h4,
.detail-experiences h4 {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
  color: var(--deep);
}
.detail-schedules h4 i,
.detail-includes h4 i,
.detail-route h4 i,
.detail-experiences h4 i { color: var(--ocean); }

.schedules-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.schedules-grid span {
  background: var(--ocean);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
}

.detail-includes ul,
.detail-route ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-includes li,
.detail-route li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--text);
}
.detail-includes li i { color: #25D366; font-size: .8rem; }
.detail-route li i    { color: var(--sand); font-size: .75rem; }

/* Private options */
.private-options {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.private-options h3 {
  text-align: center;
  margin-bottom: 28px;
}
.private-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.private-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.private-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.private-card i { font-size: 2rem; color: var(--sea); margin-bottom: 10px; }
.private-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.private-card p  { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
.private-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 16px;
}
.private-price span { font-size: 1rem; }
.private-card--featured { border-color: var(--ocean); background: rgba(0,119,182,.04); }
.private-card--extra .private-price { font-size: 1.5rem; }
.private-card--extra { border-style: dashed; }

.private-benefits {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.private-benefits i { color: var(--sea); }

/* Marietas extras */
.marietas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--foam);
  border: 1px solid var(--border);
  color: var(--ocean);
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

.includes-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.exp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--foam);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  font-size: .85rem;
  font-weight: 500;
}
.exp-item i { color: var(--ocean); font-size: .9rem; }

.marietas-extra {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FFF8F0;
  border: 1px solid #F4A261;
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 20px;
  margin-top: 16px;
}
.marietas-extra i { color: var(--sand); margin-top: 2px; flex-shrink: 0; }


/* ========================
   GALLERY
   ======================== */
#galeria {
  background: var(--dark);
  padding: 72px 0;
  overflow: hidden;
}
.wave-top-dark { line-height: 0; margin-bottom: 0; }
.wave-top-dark svg { width: 100%; }

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.filter-btn {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
  transition: background var(--transition), color var(--transition);
}
.filter-btn:hover { background: rgba(255,255,255,.15); color: var(--white); }
.filter-btn.active {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,4,94,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }


/* ========================
   EMBARCACIONES
   ======================== */
#embarcaciones {
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 50%, #004e92 100%);
  padding: 72px 0;
  color: var(--white);
}
.wave-top-ocean { line-height: 0; }
.wave-top-ocean svg { width: 100%; }

.boats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.boat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}
.boat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.13); }
.boat-card--featured { border-color: var(--cyan); }

.boat-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.boat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.boat-card:hover .boat-img img { transform: scale(1.05); }

.boat-body { padding: 24px; }
.boat-size {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--cyan);
  margin-bottom: 4px;
}
.boat-body h3 { color: var(--white); margin-bottom: 8px; }
.boat-capacity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
}
.boat-capacity i { color: var(--cyan); }
.boat-capacity strong { color: var(--white); }
.boat-body p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
  line-height: 1.5;
}

.safety-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.safety-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
}
.safety-item i { color: var(--cyan); font-size: 1.1rem; flex-shrink: 0; }


/* ========================
   LOCATION
   ======================== */
#ubicacion { padding: 72px 0; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-address,
.location-phone,
.location-schedule {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--foam);
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.location-address i,
.location-phone i,
.location-schedule i {
  font-size: 1.4rem;
  color: var(--ocean);
  flex-shrink: 0;
}
.location-address div,
.location-phone div,
.location-schedule div { display: flex; flex-direction: column; }
.location-address strong,
.location-phone strong,
.location-schedule strong { font-size: .9rem; font-weight: 600; }
.location-address span,
.location-schedule span { font-size: .82rem; color: var(--muted); }
.location-phone a { font-size: 1.1rem; font-weight: 600; color: var(--ocean); }

.location-links { display: flex; gap: 10px; flex-wrap: wrap; }

.location-map {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.location-map iframe { display: block; }


/* ========================
   CTA SECTION
   ======================== */
#contacto {
  background: linear-gradient(135deg, var(--deep) 0%, var(--ocean) 60%, var(--sea) 100%);
  padding: 80px 0 72px;
  color: var(--white);
  text-align: center;
  position: relative;
}
.cta-wave-top { line-height: 0; position: absolute; top: 0; left: 0; right: 0; }
.cta-wave-top svg { width: 100%; }

.cta-content { padding-top: 20px; }
.cta-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,0,0,.3));
}
#contacto h2 { color: var(--white); margin-bottom: 12px; }
#contacto p  { color: rgba(255,255,255,.8); max-width: 460px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ========================
   FOOTER
   ======================== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--ocean); color: var(--white); }

.footer-tours h4,
.footer-contact h4 {
  color: var(--white);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-tours ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-tours li a,
.footer-contact li {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-tours li a:hover { color: var(--cyan); }
.footer-contact li a { color: rgba(255,255,255,.55); }
.footer-contact li a:hover { color: var(--cyan); }
.footer-contact li i { color: var(--sea); font-size: .8rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }


/* ========================
   WHATSAPP FLOAT
   ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 900;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  font-weight: 700;
  font-size: .9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float i { font-size: 1.4rem; }
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}
.whatsapp-float__text { display: none; }


/* ========================
   LIGHTBOX
   ======================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3,4,94,.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--r-sm);
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
  z-index: 10;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.3); }

.lightbox-close { top: 16px; right: 16px; font-size: 1.4rem; font-weight: 300; }
.lightbox-prev  { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 12px; top: 50%; transform: translateY(-50%); }


/* ========================
   ANIMATIONS
   ======================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible { opacity: 1; transform: none; }


/* ========================
   PRELOADER
   ======================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(145deg, #03045E 0%, #0077B6 55%, #00B4D8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .65s ease, transform .65s ease;
}
#preloader.hidden {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.preloader-logo {
  width: min(280px, 72vw);
  filter: brightness(0) invert(1) drop-shadow(0 6px 32px rgba(0,0,0,.35));
  animation: preloader-float 2.8s ease-in-out infinite;
}

@keyframes preloader-float {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-16px); }
}

.preloader-dots {
  display: flex;
  gap: 10px;
}
.preloader-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  animation: preloader-dot 1s ease-in-out infinite;
}
.preloader-dots span:nth-child(2) { animation-delay: .18s; }
.preloader-dots span:nth-child(3) { animation-delay: .36s; }

@keyframes preloader-dot {
  0%, 80%, 100% { transform: scale(.45); opacity: .25; }
  40%           { transform: scale(1);   opacity: 1;   }
}

.preloader-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  animation: preloader-wave-move 6s linear infinite;
  width: 200%;
}
.preloader-wave svg { width: 100%; }

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

/* ========================
   RESPONSIVE — tablet (≥ 640px)
   ======================== */
@media (min-width: 640px) {
  .stats-container { grid-template-columns: repeat(4, 1fr); }

  .tours-grid { grid-template-columns: repeat(2, 1fr); }

  .private-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .safety-bar { grid-template-columns: repeat(4, 1fr); }

  .whatsapp-float__text { display: inline; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ========================
   RESPONSIVE — desktop (≥ 1024px)
   ======================== */
@media (min-width: 1024px) {
  /* Nav */
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    align-items: center;
    gap: 0;
  }
  .nav-menu li a {
    color: rgba(255,255,255,.9);
    padding: 8px 12px;
    font-size: .9rem;
  }
  #navbar.scrolled .nav-menu li a { color: var(--text); }
  .nav-cta {
    color: var(--white) !important;
    margin-top: 0 !important;
    padding: 8px 18px !important;
  }

  /* Detail grids */
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid--reverse > *:first-child { order: 2; }
  .detail-grid--reverse > *:last-child  { order: 1; }

  /* Tours */
  .tours-grid { grid-template-columns: repeat(3, 1fr); }

  /* Boats */
  .boats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }

  /* Location */
  .location-grid { grid-template-columns: 1fr 1fr; }

  /* Private grid */
  .private-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ========================
   NUESTRA HISTORIA (video)
   ======================== */
#historia { padding: 72px 0; }
.historia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--dark);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.historia-text h3 { color: var(--deep); margin-bottom: 12px; }
.historia-text > p { color: var(--muted); margin-bottom: 18px; }
.historia-points { display: grid; gap: 12px; margin-bottom: 24px; }
.historia-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
}
.historia-points li i {
  color: var(--sea);
  font-size: 1.05rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ========================
   FLOTA — precios / video
   ======================== */
.boat-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.boat-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 6px 0 2px;
  color: var(--white);
}
.boat-price__from { font-size: .8rem; opacity: .8; }
.boat-price strong { font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.boat-price__unit { font-size: .85rem; opacity: .85; }
.boat-min {
  font-size: .85rem;
  opacity: .85;
  margin-bottom: 14px !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.boat-card:not(.boat-card--featured) .boat-price,
.boat-card:not(.boat-card--featured) .boat-min { color: var(--white); }

/* ========================
   TESTIMONIOS
   ======================== */
.reviews-rating { text-align: center; margin-bottom: 32px; }
.reviews-stars { color: #FFC107; font-size: 1.4rem; letter-spacing: 3px; margin-bottom: 6px; }
.reviews-rating p { color: var(--muted); }
.reviews-rating .fab.fa-google { color: var(--ocean); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-stars { color: #FFC107; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { color: var(--text); font-style: italic; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .9rem; }
.review-author i { font-size: 1.6rem; color: var(--cyan); }

/* ========================
   REDES SOCIALES
   ======================== */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r);
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: transform var(--transition), background var(--transition);
}
.social-link i { font-size: 1.3rem; }
.social-link:hover { transform: translateY(-3px); background: rgba(255,255,255,.28); }

/* ========================
   RESERVACIONES (form)
   ======================== */
#reservaciones { padding-bottom: 0; }
.reserva-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.reserva-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.reserva-form input,
.reserva-form select {
  font: inherit;
  font-weight: 400;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--foam);
  color: var(--text);
  transition: border var(--transition), box-shadow var(--transition);
}
.reserva-form input:focus,
.reserva-form select:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(0,180,216,.15);
}

/* ========================
   RESPONSIVE (nuevas secciones)
   ======================== */
@media (min-width: 768px) {
  .historia-grid { grid-template-columns: 1.1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .socials-grid { grid-template-columns: repeat(4, 1fr); max-width: none; }
  .form-row { grid-template-columns: 1fr 1fr; }
}


/* ========================
   MULTI-PAGE — páginas interiores
   ======================== */

/* Hero de páginas interiores */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img,
.page-hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(3,4,94,.6) 0%, rgba(0,119,182,.4) 55%, rgba(3,4,94,.8) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 92px;
  max-width: 820px;
}
.page-hero__content h1 { text-shadow: 0 2px 20px rgba(0,0,0,.4); margin-bottom: 14px; }
.page-hero__content .hero-sub { margin-bottom: 26px; }

/* Breadcrumb */
.breadcrumb { background: var(--foam); border-bottom: 1px solid var(--border); }
.breadcrumb ol {
  max-width: 1200px; margin: 0 auto;
  padding: 12px 20px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: .82rem; color: var(--muted);
}
.breadcrumb a { color: var(--ocean); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--sea); }
.breadcrumb li[aria-current] { color: var(--text); }

/* Section helper */
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }

/* Nav active link */
.nav-menu a.active { color: var(--cyan) !important; }
#navbar.scrolled .nav-menu a.active { color: var(--ocean) !important; }

/* Lista "no incluye" */
.detail-excludes ul { display: flex; flex-direction: column; gap: 6px; }
.detail-excludes li {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; color: var(--text);
}
.detail-excludes li i { color: var(--coral); font-size: .8rem; }

/* Nota informativa reutilizable */
.info-note {
  display: flex; align-items: flex-start; gap: 10px;
  background: #FFF8F0; border: 1px solid var(--sand);
  border-radius: var(--r-sm); padding: 12px 16px;
  font-size: .88rem; color: var(--text);
  margin: 16px 0 20px;
}
.info-note i { color: var(--sand); margin-top: 2px; flex-shrink: 0; }

/* Timeline de recorrido */
.itinerary { display: flex; flex-direction: column; gap: 0; margin: 8px 0 4px; }
.itinerary li {
  position: relative;
  padding: 0 0 22px 30px;
  color: var(--text);
  font-size: .92rem;
}
.itinerary li::before {
  content: '';
  position: absolute; left: 6px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--sea); box-shadow: 0 0 0 4px rgba(0,180,216,.18);
}
.itinerary li:not(:last-child)::after {
  content: '';
  position: absolute; left: 11px; top: 16px; bottom: 0;
  width: 2px; background: var(--border);
}
.itinerary li strong { display: block; color: var(--deep); font-size: .95rem; margin-bottom: 2px; }
.itinerary li span { color: var(--muted); font-size: .85rem; }

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 18px;
  font-weight: 600; color: var(--deep); text-align: left;
}
.faq-q i { transition: transform var(--transition); color: var(--ocean); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 18px 16px; color: var(--muted); font-size: .9rem; }

/* Related tours */
.related { border-top: 1px solid var(--border); margin-top: 56px; padding-top: 48px; }

/* Tours page: filtros claros */
.tour-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 36px;
}
.tour-filters .filter-btn {
  background: var(--foam); color: var(--muted);
  border: 1px solid var(--border);
}
.tour-filters .filter-btn:hover { background: var(--border); color: var(--text); }
.tour-filters .filter-btn.active { background: var(--ocean); color: var(--white); border-color: var(--ocean); }

/* Precio en tarjeta de tour (footer) */
.tour-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 14px; color: var(--deep);
}
.tour-price strong { font-family: 'Playfair Display', serif; font-size: 1.35rem; }
.tour-price span { font-size: .8rem; color: var(--muted); }
.tour-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.tour-actions .btn { flex: 1; justify-content: center; }

/* Fila de mini-datos (duración / salida / grupo) */
.quick-facts {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin: 0 auto 40px; max-width: 720px;
}
.quick-facts .qf {
  display: flex; align-items: center; gap: 12px;
  background: var(--foam); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 18px;
}
.quick-facts .qf i { font-size: 1.4rem; color: var(--ocean); flex-shrink: 0; }
.quick-facts .qf strong { display: block; font-size: .95rem; color: var(--deep); }
.quick-facts .qf span { font-size: .8rem; color: var(--muted); }

@media (min-width: 640px) {
  .quick-facts { grid-template-columns: repeat(4, 1fr); }
}


/* ========================
   BLOG
   ======================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card__img { aspect-ratio: 16 / 9; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__tag {
  align-self: flex-start;
  background: rgba(0,119,182,.1); color: var(--ocean);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
}
.post-card__body h3 { margin-bottom: 8px; }
.post-card__body p { color: var(--muted); font-size: .9rem; margin-bottom: 16px; flex: 1; }
.post-card__meta { font-size: .78rem; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.post-card__meta i { color: var(--sea); }

@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* Artículo (post individual) */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0 8px;
}
.article__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-size: .82rem; color: var(--muted); margin-bottom: 24px;
}
.article__meta .chip {
  background: rgba(0,119,182,.1); color: var(--ocean);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  font-size: .72rem; padding: 4px 12px; border-radius: 50px;
}
.article__lead { font-size: 1.1rem; color: var(--text); font-weight: 500; margin-bottom: 24px; }
.article h2 { color: var(--deep); margin: 32px 0 12px; }
.article h3 { color: var(--deep); margin: 24px 0 10px; }
.article p { color: var(--text); margin-bottom: 16px; }
.article ul, .article ol { margin: 0 0 18px 22px; display: flex; flex-direction: column; gap: 8px; }
.article ul li { list-style: disc; color: var(--text); }
.article ol li { list-style: decimal; color: var(--text); }
.article a { color: var(--ocean); font-weight: 600; text-decoration: underline; }
.article a:hover { color: var(--deep); }
.article img { border-radius: var(--r); margin: 20px 0; box-shadow: var(--shadow); }
.article blockquote {
  border-left: 4px solid var(--sea);
  background: var(--foam);
  padding: 14px 18px; border-radius: var(--r-sm);
  color: var(--text); font-style: italic; margin: 0 0 18px;
}
.article-cta {
  background: var(--foam);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  margin: 32px 0 8px;
}
.article-cta h3 { color: var(--deep); margin-bottom: 8px; }
.article-cta p { color: var(--muted); margin-bottom: 16px; }


/* ========================
   NAV SUBMENÚS (dropdown)
   ======================== */
.submenu-caret { display: none; }

/* Móvil: el submenú se muestra indentado dentro del overlay */
.nav-menu .submenu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 2px 0 6px;
}
.nav-menu .submenu li a {
  padding: 8px 16px 8px 34px;
  font-size: .88rem;
  color: rgba(255,255,255,.72);
}
.nav-menu .submenu li a:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* Permite scroll si el menú móvil queda largo */
.nav-menu.open { max-height: 100vh; overflow-y: auto; }

/* Anclas de la flota, para que no queden bajo el navbar fijo */
.boat-card { scroll-margin-top: 90px; }

@media (min-width: 1024px) {
  .submenu-caret {
    display: inline-block;
    font-size: .62rem;
    margin-left: 5px;
    opacity: .8;
    transition: transform var(--transition);
  }
  .has-submenu { position: relative; }
  .has-submenu:hover .submenu-caret { transform: rotate(180deg); }

  .nav-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
    min-width: 250px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin: 0;
    display: none;
  }
  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu { display: flex; }

  .nav-menu .submenu li a {
    color: var(--text) !important;
    padding: 9px 14px;
    border-radius: var(--r-sm);
    font-size: .88rem;
    white-space: nowrap;
  }
  .nav-menu .submenu li a:hover { background: var(--foam); color: var(--ocean) !important; }
}


/* ========================
   SWITCHER DE IDIOMA (ES / EN)
   ======================== */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
}
.nav-lang .lang-opt {
  display: inline-flex !important;
  align-items: center;
  padding: 4px 8px !important;
  font-size: .82rem !important;
  font-weight: 700;
  letter-spacing: .3px;
  color: rgba(255,255,255,.75) !important;
  border-radius: var(--r-sm);
  line-height: 1;
}
.nav-lang .lang-opt:hover { color: var(--white) !important; background: rgba(255,255,255,.12); }
.nav-lang .lang-opt.active {
  color: var(--white) !important;
  background: var(--sea);
}
.nav-lang .lang-sep { color: rgba(255,255,255,.4); font-size: .8rem; }

/* Estado con scroll: nav blanco → texto oscuro */
#navbar.scrolled .nav-lang .lang-opt { color: var(--muted) !important; }
#navbar.scrolled .nav-lang .lang-opt:hover { color: var(--ocean) !important; background: var(--foam); }
#navbar.scrolled .nav-lang .lang-opt.active { color: var(--white) !important; background: var(--ocean); }
#navbar.scrolled .nav-lang .lang-sep { color: var(--border); }

/* En móvil el switcher se centra como una fila más del menú */
@media (max-width: 1023px) {
  .nav-lang { justify-content: center; margin: 10px 0 4px; }
  .nav-lang .lang-opt { font-size: 1rem !important; padding: 8px 16px !important; }
}

/* Switcher en el footer */
.footer-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .9rem;
}
.footer-lang i { opacity: .7; }
.footer-lang .lang-opt { color: rgba(255,255,255,.7); font-weight: 500; }
.footer-lang .lang-opt:hover { color: var(--white); text-decoration: underline; }
.footer-lang .lang-opt.active { color: var(--cyan); font-weight: 700; }
.footer-lang .lang-sep { color: rgba(255,255,255,.35); }

/* ===== Widgets de reseñas (Google + TripAdvisor) ===== */
.reviews-widgets-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:32px;
  align-items:start;
  margin-top:32px;
}
.reviews-widget{min-width:0;}
.reviews-widget iframe,.reviews-widget .ti-widget{max-width:100%;}
