/* =============================================
   JET SKI TARRAGONA — STYLESHEET
   Estética: Joven · Activo · Adrenalina
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean: #0077B6;
  --ocean-light: #00B4D8;
  --yellow: #FFD700;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #222222;
  --white: #FFFFFF;
  --grey: rgba(255,255,255,0.6);
  --grey-2: rgba(255,255,255,0.1);
  --whatsapp: #25D366;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
}

.btn--primary {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.btn--primary:hover {
  background: var(--ocean-light);
  border-color: var(--ocean-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 119, 182, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--ocean);
  border-color: var(--ocean);
}
.btn--outline:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 119, 182, 0.3);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn--nav {
  background: var(--ocean);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.85rem;
}
.btn--nav:hover {
  background: var(--ocean-light);
  box-shadow: 0 4px 20px rgba(0, 119, 182, 0.4);
}

.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: 0.8rem; }

/* ---- SECTION BASE ---- */
.section { padding: 100px 0; }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__header--light .section__title,
.section__header--light .section__desc {
  color: var(--white);
}

.section__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 12px;
  display: block;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- NAV LOGO NAME ---- */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-name span:first-child {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.nav__logo-sub {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--ocean); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- LANGUAGE SELECTOR ---- */
.lang-selector {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.lang-btn {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}

.lang-btn .lang-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.lang-selector.open .lang-btn .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 6px 0;
  min-width: 155px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  padding: 10px 16px;
  font-size: 0.83rem;
  font-family: var(--font-body);
  color: var(--grey);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-dropdown li:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

.lang-dropdown li.active {
  color: var(--ocean-light);
  font-weight: 600;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Reencuadre: subimos la imagen para que la cara quede en la zona alta
     (sobre el sub-título "Tarragona · Costa Daurada") y el título grande
     caiga sobre el jet ski / agua, sin tapar la cara. */
  object-position: center 25%;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@media (max-width: 768px) {
  .hero__img { object-position: center 20%; }
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0, 119, 182, 0.18) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 80px;
}

.hero__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero__title span {
  color: var(--ocean-light);
  display: block;
  -webkit-text-stroke: 2px var(--ocean-light);
  text-shadow: 0 0 60px rgba(0, 180, 216, 0.5);
}

.hero__sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--ocean-light);
}

.stat-num small {
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  transition: color var(--transition);
}
.hero__scroll:hover { color: var(--ocean-light); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

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

/* ---- TICKER ---- */
.ticker {
  background: var(--ocean);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 24px;
  animation: ticker 30s linear infinite;
}

.ticker__track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--white);
  flex-shrink: 0;
}

.ticker__track .sep { color: rgba(255,255,255,0.5); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- SERVICIOS ---- */
.servicios { background: var(--dark); }

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

.ruta__card--featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.ruta__card--featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ruta__card--featured:hover img { transform: scale(1.05); }

.ruta__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.ruta__info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.ruta__info p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

.ruta__badge {
  display: inline-block;
  background: var(--ocean);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.rutas__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ruta__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.ruta__item:hover {
  border-color: rgba(0, 119, 182, 0.35);
  background: var(--dark-4);
  transform: translateX(4px);
}

.ruta__icon { font-size: 1.8rem; flex-shrink: 0; }

.ruta__item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.ruta__item p { font-size: 0.875rem; color: var(--grey); }

/* ---- PRECIOS ---- */
.precios {
  background: var(--dark-2);
}

.precios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.precio__card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.precio__card:hover {
  border-color: rgba(0, 119, 182, 0.45);
  transform: translateY(-4px);
}

.precio__card--featured {
  background: linear-gradient(135deg, var(--dark-4), var(--dark-3));
  border-color: var(--ocean);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 119, 182, 0.22);
}

.precio__card--featured:hover { transform: scale(1.03) translateY(-4px); }

.precio__card--special {
  background: linear-gradient(135deg, #00101a, var(--dark-3));
  border-color: rgba(255, 215, 0, 0.3);
}

.precio__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ocean);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.precio__badge--special { background: var(--yellow); color: var(--dark); }

.precio__tiempo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 1px;
}

.precio__tiempo small {
  font-size: 1.8rem;
  color: var(--grey);
}

.precio__precio {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--ocean-light);
  letter-spacing: 2px;
}

.precio__card--special .precio__precio { color: var(--yellow); }

.precio__desc {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.6;
}

.precios__nota {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ---- GALERÍA CARRUSEL ---- */
.galeria { background: var(--dark); padding-bottom: 0; }
.galeria .container { padding-bottom: 0; }

.galeria__carousel {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.galeria__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.galeria__slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .galeria__slide { flex: 0 0 50%; }
}

@media (min-width: 1024px) {
  .galeria__slide { flex: 0 0 33.333%; }
}

.galeria__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.galeria__slide:hover img { transform: scale(1.05); }

.galeria__hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 119, 182, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.galeria__slide:hover .galeria__hover { opacity: 1; }

.galeria__hover span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

.galeria__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: white;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.galeria__btn:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  transform: translateY(-50%) scale(1.08);
}

.galeria__btn--prev { left: 12px; }
.galeria__btn--next { right: 12px; }

.galeria__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 24px;
  background: var(--dark);
}

.galeria__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.galeria__dot.active {
  background: var(--ocean-light);
  transform: scale(1.4);
}

/* ---- INFO BOX (deposits, notes) ---- */
.info-box {
  background: rgba(0, 119, 182, 0.1);
  border: 1px solid rgba(0, 119, 182, 0.3);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-box__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 4px;
}

.info-box__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.info-box__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.4;
}

/* ---- CÓMO FUNCIONA ---- */
.como-funciona { background: var(--dark-2); }

.pasos__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.paso {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.paso__num {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 2px;
  pointer-events: none;
}

.paso__icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: block;
}

.paso h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}

.paso p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.7;
}

.paso__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--ocean), rgba(0,119,182,0.2));
  align-self: center;
  margin-top: -20px;
  flex-shrink: 0;
}

/* ---- POR QUÉ NOSOTROS ---- */
.porque { background: var(--dark); }

.porque__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.porque__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.porque__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.porque__badge-float {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--ocean);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 119, 182, 0.45);
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.porque__content .section__title { margin-bottom: 32px; }

.porque__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.porque__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.porque__check {
  width: 28px;
  height: 28px;
  background: var(--ocean);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.porque__list strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.porque__list p { font-size: 0.875rem; color: var(--grey); }

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.4);
  transform: scale(1.05);
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,119,182,0.42), rgba(0,0,0,0.8));
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.cta-banner__content h2 span { color: var(--ocean-light); }

.cta-banner__content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- CONTACTO ---- */
.contacto { background: var(--dark-2); }

.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contacto__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contacto__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contacto__icon { font-size: 1.8rem; flex-shrink: 0; }

.contacto__item h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 6px;
}

.contacto__item a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.contacto__item a:hover { color: var(--ocean-light); }

.contacto__item p { color: var(--grey); }

.contacto__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contacto__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.contacto__map iframe { display: block; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 280px;
}

.footer__links h5,
.footer__contact h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 20px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }

.footer__links a,
.footer__contact a:not(.btn) {
  font-size: 0.9rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contact p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 12px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ---- ANIMATIONS (scroll-triggered) ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---- FLOATING WHATSAPP BUTTON ---- */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}

.float-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: white;
}


/* ══════════════════════════════════════════════
   ACTIVITY NAV  ·  bottom tab bar (mobile)
                    sidebar pills (desktop)
   ══════════════════════════════════════════════ */

/* ── Shared base ─────────────────────────────── */
.float-nav-btns {
  position: fixed;
  z-index: 90;
  display: flex;
}

.float-nav-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: filter 0.2s;
  white-space: nowrap;
}
.float-nav-btn:hover { filter: brightness(1.15); }
.float-nav-btn:active { filter: brightness(0.85); }

/* ── MOBILE: full-width bottom bar ──────────── */
.float-nav-btns {
  bottom: 0;
  left: 0;
  right: 0;
  flex-direction: row;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.float-nav-btn {
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  height: 56px;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  align-items: center;
}

.float-nav-thumb {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

.float-nav-btn--barcos .float-nav-thumb { background: linear-gradient(145deg, #0EA5E9, #0284C7); box-shadow: inset 0 2px 6px rgba(255,255,255,0.25), inset 0 -3px 8px rgba(0,0,0,0.3), 0 0 12px rgba(14,165,233,0.45); }
.float-nav-btn--motos  .float-nav-thumb { background: linear-gradient(145deg, #F5C800, #D4A800); box-shadow: inset 0 2px 6px rgba(255,255,255,0.3), inset 0 -3px 8px rgba(0,0,0,0.25), 0 0 12px rgba(245,200,0,0.45); }
.float-nav-btn--quads  .float-nav-thumb { background: linear-gradient(145deg, #FF8C1A, #E85D00); box-shadow: inset 0 2px 6px rgba(255,255,255,0.3), inset 0 -3px 8px rgba(0,0,0,0.3), 0 0 14px rgba(255,140,26,0.6); }

.float-nav-label {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* ── DESKTOP: vertical pills left side ──────── */
@media (min-width: 769px) {
  .float-nav-btns {
    bottom: 100px;
    left: 0;
    right: auto;
    flex-direction: column;
    background: none;
    backdrop-filter: none;
    border-top: none;
    padding-bottom: 0;
    gap: 8px;
  }

  .float-nav-btn {
    flex: none;
    flex-direction: row;
    align-items: center;
    width: 152px;
    height: 48px;
    padding: 0;
    gap: 0;
    border-radius: 0 28px 28px 0;
    overflow: hidden;
    box-shadow: 2px 4px 24px rgba(0, 0, 0, 0.5);
    transform: translateX(-12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
  }

  .float-nav-btn:hover {
    transform: translateX(0);
    filter: none;
    box-shadow: 4px 6px 28px rgba(0, 0, 0, 0.6);
  }

  .float-nav-thumb {
    width: 48px;
    height: 48px;
    border-radius: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .float-nav-btn--barcos .float-nav-thumb { background: linear-gradient(145deg, #0EA5E9, #0284C7); box-shadow: inset 0 2px 6px rgba(255,255,255,0.25), inset 0 -3px 8px rgba(0,0,0,0.3), 0 0 12px rgba(14,165,233,0.45); }
  .float-nav-btn--motos  .float-nav-thumb { background: linear-gradient(145deg, #F5C800, #D4A800); box-shadow: inset 0 2px 6px rgba(255,255,255,0.3), inset 0 -3px 8px rgba(0,0,0,0.25), 0 0 12px rgba(245,200,0,0.45); }
  .float-nav-btn--quads  .float-nav-thumb { background: linear-gradient(145deg, #FF8C1A, #E85D00); box-shadow: inset 0 2px 6px rgba(255,255,255,0.3), inset 0 -3px 8px rgba(0,0,0,0.3), 0 0 14px rgba(255,140,26,0.6); }

  .float-nav-label {
    flex: 1;
    padding: 0 12px;
    background: rgba(10, 10, 10, 0.88);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
  }
}


@media (max-width: 480px) {

  /* Body padding for bottom nav bar */
  body { padding-bottom: 56px; }

  /* Move WhatsApp button above bottom bar */
  .float-whatsapp { bottom: 68px !important; }

  .hero__title { font-size: 4rem; }
  .cta-banner__content h2 { font-size: 3.5rem; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .contacto__btns { flex-direction: column; }
  .btn--lg { padding: 16px 28px; }
  .float-nav-btns { gap: 10px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}


/* =============================================
   LEGAL PAGES (privacidad, aviso legal, cookies)
   ============================================= */
.legal-page {
  padding: 140px 0 100px;
  background: var(--dark);
  min-height: 100vh;
}
.legal-page .container { max-width: 880px; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: var(--ocean-light);
  margin: 36px 0 14px;
}
.legal-page h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 22px 0 10px;
}
.legal-page p, .legal-page li {
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 10px;
}
.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-page ul li { margin-bottom: 6px; }
.legal-page a {
  color: var(--ocean-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page a:hover { color: var(--yellow); }
.legal-page strong { color: var(--white); }
.legal-updated {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-bottom: 24px;
  font-style: italic;
}
.legal-back {
  display: inline-block;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.legal-back:hover { color: var(--yellow); text-decoration: none; }
.legal-note {
  background: rgba(255,215,0,0.06);
  border-left: 3px solid var(--yellow);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.7) !important;
  margin: 16px 0 24px !important;
}
.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 26px;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  overflow: hidden;
}
.cookies-table th, .cookies-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}
.cookies-table th {
  background: rgba(0,180,216,0.1);
  color: var(--ocean-light);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}
.cookies-table td { color: rgba(255,255,255,0.75); }
.cookies-table tbody tr:last-child td { border-bottom: none; }
@media (max-width: 700px) {
  .legal-page { padding: 110px 0 60px; }
  .legal-page h1 { font-size: 2.5rem; }
  .legal-page h2 { font-size: 1.3rem; margin-top: 28px; }
  .cookies-table { font-size: 0.78rem; display: block; overflow-x: auto; }
}


/* =============================================
   COOKIE CONSENT BANNER + MODAL
   ============================================= */
#cc-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
  font-family: var(--font-body);
}
#cc-banner.cc-show { transform: translateY(0); }
.cc-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cc-banner__text { flex: 1 1 360px; min-width: 0; }
.cc-banner__text strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.cc-banner__text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.55;
}
.cc-banner__text a { color: var(--ocean-light); text-decoration: underline; }
.cc-banner__text a:hover { color: var(--yellow); }
.cc-banner__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cc-btn {
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.cc-btn--primary { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.cc-btn--primary:hover { background: var(--ocean-light); border-color: var(--ocean-light); transform: translateY(-1px); }
.cc-btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.cc-btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.cc-btn--ghost { background: transparent; color: rgba(255,255,255,0.7); border-color: transparent; }
.cc-btn--ghost:hover { color: var(--white); background: rgba(255,255,255,0.05); }

#cc-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 20px;
}
#cc-modal.cc-show { opacity: 1; }
.cc-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}
.cc-modal__content {
  position: relative;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px 24px;
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.cc-modal__close {
  position: absolute;
  top: 10px; right: 14px;
  background: transparent; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.8rem; line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  transition: color var(--transition);
}
.cc-modal__close:hover { color: var(--white); }
.cc-modal__content h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 6px;
}
.cc-modal__intro {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-bottom: 18px;
  line-height: 1.55;
}
.cc-row {
  display: block;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cc-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.cc-row__title {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.cc-row__desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  line-height: 1.5;
}
.cc-pill {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.cc-switch {
  position: relative;
  display: inline-block;
  width: 42px; height: 22px;
  flex-shrink: 0;
}
.cc-switch input { opacity: 0; width: 0; height: 0; }
.cc-slider {
  position: absolute; cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 22px;
  transition: background var(--transition);
}
.cc-slider::before {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}
.cc-switch input:checked + .cc-slider { background: var(--ocean); }
.cc-switch input:checked + .cc-slider::before { transform: translateX(20px); }
.cc-modal__btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .cc-banner__inner { flex-direction: column; align-items: stretch; }
  .cc-banner__btns { justify-content: stretch; }
  .cc-banner__btns .cc-btn { flex: 1 1 auto; text-align: center; }
  .cc-modal__content { padding: 22px 18px 18px; }
  .cc-modal__btns { flex-direction: column-reverse; }
  .cc-modal__btns .cc-btn { width: 100%; text-align: center; }
}


/* =============================================
   AVISO AGOSTO — suplemento +10€ en tarifas
   ============================================= */
.agosto-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(255,215,0,0.18), rgba(255,165,0,0.12));
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 14px;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.5;
}
.agosto-notice__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.5));
}
.agosto-notice strong { color: var(--yellow); }
@media (max-width: 600px) {
  .agosto-notice { font-size: 0.88rem; padding: 12px 16px; gap: 10px; margin-bottom: 24px; }
  .agosto-notice__icon { font-size: 1.4rem; }
}


/* =============================================
   RESPONSIVE FIX — MÓVIL ≤ 768 px
   Bloque completo de adaptación móvil
   ============================================= */
@media (max-width: 768px) {

  /* SECCIONES — menos padding vertical */
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section__header { margin-bottom: 36px; }
  .section__title { font-size: clamp(2rem, 8vw, 3rem); letter-spacing: 1px; }

  /* NAV — burger menu visible, lista desplegable */
  .nav { padding: 12px 0; }
  .nav.scrolled { padding: 8px 0; }
  .nav__inner { padding: 0 16px; gap: 12px; }
  .nav__logo img { height: 40px; }
  .nav__logo-name span:first-child { font-size: 0.9rem; letter-spacing: 1.5px; }
  .nav__logo-sub { font-size: 0.6rem; letter-spacing: 3px; }

  .nav__burger { display: flex; order: 3; }

  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .nav__links.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .nav__links a { font-size: 1.1rem; letter-spacing: 2px; }

  /* LANG SELECTOR — más compacto */
  .lang-selector { order: 2; }
  .lang-btn { padding: 6px 10px; font-size: 0.72rem; }

  /* HERO — más vertical y sin desbordamiento */
  .hero { min-height: 100svh; }
  .hero__content { padding: 0 16px; padding-top: 70px; }
  .hero__title { font-size: clamp(3rem, 14vw, 5rem); letter-spacing: 1.5px; margin-bottom: 22px; }
  .hero__title span { -webkit-text-stroke: 1.5px var(--ocean-light); }
  .hero__sub { font-size: 0.92rem; margin-bottom: 28px; padding: 0 6px; line-height: 1.5; }
  .hero__ctas { gap: 10px; margin-bottom: 40px; }
  .hero__ctas .btn { padding: 12px 22px; font-size: 0.85rem; }
  .hero__stats { gap: 24px; }
  .hero__stat .stat-num { font-size: 2rem; }
  .hero__stat .stat-label { font-size: 0.7rem; letter-spacing: 1.5px; }
  .hero__label { font-size: 0.72rem; letter-spacing: 3px; margin-bottom: 14px; }
  .hero__scroll { display: none; }

  /* TICKER — texto más pequeño */
  .ticker { padding: 14px 0; }
  .ticker__track span { font-size: 0.78rem; letter-spacing: 1px; }

  /* RUTAS — 1 columna */
  .rutas__grid { grid-template-columns: 1fr; gap: 22px; }
  .ruta__card--featured { min-height: 280px; }

  /* PRECIOS — 1 columna en móvil pequeño, 2 en tablet */
  .precios__grid { grid-template-columns: 1fr; gap: 22px; }
  .precio__card { padding: 28px 22px; }
  .precio__card--featured { transform: none; }
  .precio__card--featured:hover { transform: translateY(-4px); }
  .precio__tiempo { font-size: 2.6rem; }
  .precio__tiempo small { font-size: 1.2rem; }
  .precio__precio { font-size: 2.2rem; }

  /* INFO BOX — más compacto */
  .info-box { padding: 22px 18px; margin-top: 28px; }
  .info-box__item { font-size: 0.85rem; gap: 10px; }
  .info-box__icon { font-size: 1.4rem; }

  /* CÓMO FUNCIONA — 1 columna sin conectores */
  .pasos__grid { grid-template-columns: 1fr; gap: 22px; }
  .paso__connector { display: none; }
  .paso { padding: 24px 18px; }
  .paso__num { font-size: 2.4rem; }

  /* POR QUÉ NOSOTROS — 1 columna, imagen primero */
  .porque__inner { grid-template-columns: 1fr; gap: 28px; }
  .porque__img { order: 1; }
  .porque__content { order: 2; }
  .porque__list li { font-size: 0.92rem; gap: 12px; }
  .porque__check { width: 28px; height: 28px; font-size: 0.9rem; flex-shrink: 0; }

  /* CTA BANNER */
  .cta-banner { padding: 70px 0; }
  .cta-banner__content h2 { font-size: clamp(2.2rem, 9vw, 3.5rem); letter-spacing: 1.5px; }
  .cta-banner__content p { font-size: 0.95rem; padding: 0 8px; }
  .cta-banner__btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-banner__btns .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.88rem; }

  /* CONTACTO — 1 columna, mapa abajo */
  .contacto__grid { grid-template-columns: 1fr; gap: 28px; }
  .contacto__item { gap: 12px; }
  .contacto__icon { font-size: 1.6rem; flex-shrink: 0; }
  .contacto__map iframe { height: 260px; }
  .contacto__btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .contacto__btns .btn { width: 100%; justify-content: center; }

  /* FOOTER — 1 columna */
  .footer { padding: 50px 0 80px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer__brand img { margin-left: auto; margin-right: auto; }
  .footer__links ul { padding-left: 0; }
  .footer__contact a { display: inline-block; }

  /* GALERÍA — botones más pequeños */
  .galeria__btn { width: 40px; height: 40px; font-size: 1.3rem; }
  .galeria__btn--prev { left: 8px; }
  .galeria__btn--next { right: 8px; }

  /* WHATSAPP FLOTANTE */
  .float-whatsapp { width: 52px; height: 52px; right: 14px; bottom: 80px; }
  .float-whatsapp svg { width: 28px; height: 28px; }
}

/* Tablets: 2 columnas en precios y rutas */
@media (min-width: 600px) and (max-width: 768px) {
  .precios__grid { grid-template-columns: 1fr 1fr; }
}

/* Móvil muy pequeño */
@media (max-width: 380px) {
  .hero__title { font-size: 2.6rem; letter-spacing: 1px; }
  .hero__sub { font-size: 0.85rem; }
  .hero__stats { gap: 18px; }
  .hero__stat .stat-num { font-size: 1.7rem; }
  .precio__tiempo { font-size: 2.2rem; }
  .precio__precio { font-size: 1.9rem; }
}


/* =============================================
   MOBILE OVERFLOW FIX — eliminar scroll horizontal
   y margen negro en móvil (iOS / Android)
   ============================================= */

/* 1) html + body: bloqueo total de scroll horizontal */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

/* 2) Asegurar que ningún elemento de bloque puede desbordar */
img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}
iframe { display: block; }

/* 3) Hero — el zoom de la imagen no debe provocar overflow */
.hero { overflow: hidden; max-width: 100vw; }
.hero__bg { overflow: hidden; }

/* 4) Ticker — el track con animación translateX no puede salir */
.ticker { max-width: 100vw; overflow: hidden; }

/* 5) Galería — siempre clipped */
.galeria, .galeria__carousel { max-width: 100vw; overflow: hidden; }

/* 6) Container — nunca excede el viewport */
.container { max-width: 100%; }

/* 7) Nav fija — limitar ancho pero PERMITIR overflow visible
   (necesario para que el dropdown del selector de idioma se vea completo) */
.nav { max-width: 100vw; }
.nav__inner { max-width: 100%; }

/* 8) Footer y secciones — clipping defensivo */
.section, .footer, .cta-banner { max-width: 100vw; overflow: hidden; }

/* 9) En móvil, asegurar que padding no fuerza expansión */
@media (max-width: 768px) {
  body { padding-left: 0 !important; padding-right: 0 !important; }
  .container { padding-left: 16px !important; padding-right: 16px !important; }

  /* Cualquier elemento con margin negativo accidental */
  .nav__inner { width: 100%; max-width: 100vw; }

  /* Botones flotantes fixed: que no causen scroll */
  .float-whatsapp, .float-nav-btns { max-width: 100vw; }

  /* Cookie banner — si aparece, que no desborde */
  #cc-banner, #cc-modal { max-width: 100vw; overflow-x: hidden; }
}


/* =============================================
   FIX FORZADO LANG-DROPDOWN — máxima especificidad
   Sobreescribe cualquier regla previa que pueda
   ocultar o recortar el dropdown del selector.
   ============================================= */
.nav, .nav__inner, .nav.scrolled {
  overflow: visible !important;
}
.lang-selector {
  position: relative !important;
  z-index: 1000 !important;
  overflow: visible !important;
}
.lang-dropdown {
  z-index: 9999 !important;
  pointer-events: auto;
}
.lang-selector.open .lang-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: block !important;
}
.lang-dropdown li {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 16px !important;
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.85rem !important;
  white-space: nowrap !important;
  min-height: auto !important;
  height: auto !important;
  line-height: 1.4 !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.lang-dropdown li .fi {
  display: inline-block !important;
  width: 1.33em !important;
  height: 1em !important;
  flex-shrink: 0 !important;
}
