/* ═══════════════════════════════════════════════════════════════
   TAXI TESLA SAN VICENTE — Premium CSS
   Archetype: Editorial Dark Warm
   v=20260527
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1. Custom Properties ─── */
:root {
  --gold:         #B8962E;
  --gold-light:   #D4AF4E;
  --gold-dark:    #8B6F20;
  --gold-subtle:  rgba(184,150,46,.07);
  --gold-border:  rgba(184,150,46,.18);

  --bg:           #09090700;  /* will be #090907 without alpha hack */
  --bg:           #090907;
  --bg-raised:    #131310;
  --bg-card:      #1b1b17;

  --ink:          #F2EDE4;
  --ink-mid:      #A89F8A;
  --ink-muted:    #6A6358;

  --font-head:    'Cinzel', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand:   'Montserrat', 'DM Sans', sans-serif;
  --font-slogan:  'Playfair Display', Georgia, serif;

  --w:            min(1180px, 92vw);
  --section-gap:  clamp(5rem, 10vw, 9rem);
  --ease:         cubic-bezier(.22,1,.36,1);
}

/* ─── 2. Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, #12121e 0%, #0a0a0c 45%, #060605 100%)
    fixed;
}
body {
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Lienzo de estrellas global (detrás de todo) */
#cosmos {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; }

/* ─── 3. Utilities ─── */
.container { width: var(--w); margin-inline: auto; }

.eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.section-header h2 { margin-top: .25rem; }
.section-desc {
  margin-top: .9rem;
  color: var(--ink-mid);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ─── 4. Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
/* Defensive: never hide split-text */
.reveal[data-split] { opacity: 1; transform: none; }

/* ─── 5. Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1.9rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 2px;
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease), box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-icon { width: 17px; height: 17px; flex-shrink: 0; }

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #09090A;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 8px 24px rgba(184,150,46,.25); }

.btn-ghost {
  background: transparent;
  border-color: rgba(242,237,228,.25);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; justify-content: center; padding: .95rem 1.5rem; }

/* ─── 6. Splash ─── */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
#splash.away { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }

.splash-logo {
  width: 52px;
  color: var(--gold);
  animation: sp-pulse 1.6s ease-in-out infinite alternate;
}
@keyframes sp-pulse {
  from { opacity: .5; transform: scale(.93); }
  to   { opacity: 1; transform: scale(1);   }
}

.splash-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-brand);
  letter-spacing: .3em;
  text-transform: uppercase;
}
.sw-main { font-size: clamp(1.1rem, 3vw, 1.7rem); color: var(--ink); font-weight: 800; letter-spacing: .12em; }
.sw-sub  { font-size: clamp(.6rem, 1.5vw, .85rem); color: var(--ink); font-weight: 600; letter-spacing: .42em; }

/* ─── 7. Nav ─── */
#nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 500;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(9,9,7,.93);
  border-color: var(--gold-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  width: var(--w);
  margin-inline: auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-brand);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .88rem;
  letter-spacing: .16em;
  color: var(--ink);
  transition: color .2s;
}
.nav-logo:hover { color: var(--gold); }

.logo-t { width: 20px; color: var(--gold); transition: color .2s; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--gold) !important;
  color: #09090A !important;
  padding: .48rem 1.2rem !important;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: .1em !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: #09090A !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) 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(-6.5px) rotate(-45deg); }

.nav-mobile {
  background: rgba(9,9,7,.97);
  border-top: 1px solid var(--gold-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
}
.nav-mobile.open { display: block; }
.nav-mobile ul {
  width: var(--w);
  margin-inline: auto;
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.nav-mobile a {
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ─── 8. Hero (cósmico) ─── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(110px, 16vh, 170px) 70px;
}

.hero-cosmos { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

/* Nebulosas doradas reutilizables */
.neb { position: absolute; border-radius: 50%; filter: blur(80px); }
.neb-1 {
  width: 48vw; height: 48vw; top: -12%; right: -8%;
  background: radial-gradient(circle, rgba(184,150,46,.30), transparent 65%);
}
.neb-2 {
  width: 40vw; height: 40vw; bottom: -15%; left: -12%;
  background: radial-gradient(circle, rgba(120,95,205,.16), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-eyebrow {
  font-size: .7rem;
  letter-spacing: .45em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.hero-emblem { width: 58px; color: var(--gold); margin-bottom: 1.3rem; }
.hero-emblem svg { width: 100%; height: auto; display: block; }

/* El emblema Tesla hereda el color (dorado) en todas sus ubicaciones */
.splash-logo svg,
.hero-emblem svg,
.sobre-badge svg,
.ctbg-t svg,
.logo-t,
.ft-logo { fill: currentColor; }

.hero-title {
  font-family: var(--font-brand);
  display: flex;
  flex-direction: column;
  margin-bottom: 1.3rem;
  line-height: 1;
}
.ht-main {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
}
.ht-sub {
  font-size: clamp(.95rem, 2.3vw, 1.7rem);
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: .6rem;
}

.hero-slogan {
  font-family: var(--font-slogan);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.3vw, 1.7rem);
  color: var(--gold);
  line-height: 1.4;
  letter-spacing: .01em;
  margin: 1.6rem 0 2rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust {
  display: flex;
  gap: 1.6rem 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
}
.hero-trust li { font-size: .8rem; color: var(--ink-mid); letter-spacing: .03em; }
.hero-trust strong { color: var(--gold); font-family: var(--font-head); font-weight: 600; margin-right: .15rem; }

/* Coche flotante */
.hero-visual { position: relative; will-change: transform; }
.hero-car-float {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 90px -25px rgba(0,0,0,.85), 0 0 70px -8px rgba(184,150,46,.35);
  animation: float-y 7s ease-in-out infinite;
  will-change: transform;
}
.hero-car-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(184,150,46,.35);
  pointer-events: none;
}
.hero-car-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/11;
  display: block;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  font-size: .6rem;
  letter-spacing: .45em;
  color: var(--ink-muted);
  animation: sh-bounce 2.2s ease-in-out infinite;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes sh-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   }
  55%       { transform: translateX(-50%) translateY(9px); }
}

/* ─── 9. Sobre ─── */
#sobre {
  padding-block: var(--section-gap);
  background: var(--bg-raised);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.sobre-visual {
  position: relative;
}
.sobre-img-wrap {
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 3px;
}
.sobre-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.sobre-visual:hover .sobre-img-wrap img { transform: scale(1.04); }

.sobre-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(9,9,7,.88);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(10px);
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  border-radius: 2px;
}
.sobre-badge svg { width: 28px; color: var(--gold); }
.sobre-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--gold);
}
.sobre-badge span {
  display: block;
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--ink-mid);
  margin-top: .15rem;
}

.sobre-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sobre-body h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); line-height: 1.15; }
.sobre-body p  { color: var(--ink-mid); line-height: 1.8; font-size: 1.02rem; }
.sobre-body p strong { color: var(--gold); font-weight: 600; }

.stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
  margin-top: .5rem;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: .2rem; }
.stat-n, .stat-text {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-unit { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); }
.stat-label { font-size: .68rem; letter-spacing: .25em; color: var(--ink-muted); text-transform: uppercase; margin-top: .25rem; }

/* ─── 10. Servicios ─── */
#servicios {
  padding-block: var(--section-gap);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--gold-border);
  background: var(--gold-border);
}

.servicio {
  background: var(--bg);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: background .3s;
}
.servicio:hover { background: var(--gold-subtle); }

.srv-icon { width: 40px; height: 40px; color: var(--gold); }
.srv-icon svg { width: 100%; height: 100%; }

.servicio h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink);
}
.servicio p { color: var(--ink-mid); font-size: .95rem; line-height: 1.7; }

/* ─── 11. Galería ─── */
#galeria {
  padding-block: var(--section-gap);
  background: var(--bg-raised);
}

.galeria-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.gl-item {
  overflow: hidden;
  background: var(--bg-card);
}
.gl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gl-item:hover img { transform: scale(1.04); }

.gl-main {
  grid-row: span 2;
  aspect-ratio: 2/3;
}
.gl-item:not(.gl-main) { aspect-ratio: 4/3; }

.galeria-cta {
  margin-top: 2rem;
  text-align: center;
}
.gc-note {
  font-size: .85rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
}
.gc-note strong { color: var(--ink-mid); }

/* ─── 12. Tarifas ─── */
#tarifas { padding-bottom: var(--section-gap); }

.tarifas-hero {
  position: relative;
  height: clamp(330px, 46vw, 540px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.tfbg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 68%;
  transform: scale(1.04);
}
.tfbg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,9,7,.8) 0%, rgba(9,9,7,.5) 60%, rgba(9,9,7,.72) 100%);
}
.tfbg-content {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.tfbg-content h2 { font-size: clamp(1.8rem, 5vw, 3.2rem); }
.tf-sub { color: var(--ink-mid); font-size: 1.05rem; margin-top: .5rem; font-style: italic; }

/* Search */
.tf-search-wrap {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.tf-search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.tfs-icon {
  position: absolute;
  left: 1.1rem;
  width: 18px; height: 18px;
  color: var(--gold);
  pointer-events: none;
  flex-shrink: 0;
}
.tf-input {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--gold-border);
  border-radius: 3px;
  padding: .95rem 3rem .95rem 3rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.tf-input::placeholder { color: var(--ink-muted); }
.tf-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,46,.12);
}
.tfs-clear {
  position: absolute;
  right: .9rem;
  background: none;
  border: none;
  color: var(--ink-muted);
  padding: .4rem;
  cursor: pointer;
  transition: color .2s;
}
.tfs-clear:hover { color: var(--gold); }
.tfs-clear svg { width: 16px; height: 16px; display: block; }
.tfs-hint {
  text-align: center;
  font-size: .78rem;
  color: var(--ink-muted);
  margin-top: .6rem;
  letter-spacing: .04em;
}
.tfs-hint strong { color: var(--gold); }

/* Legend */
.tf-legend {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.tf-leg-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--ink-mid);
}
.tf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .15rem .5rem;
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  flex-shrink: 0;
}
.tf-t1 { background: rgba(184,150,46,.18); color: var(--gold-light); border: 1px solid rgba(184,150,46,.3); }
.tf-t2 { background: rgba(100,140,200,.15); color: #90b4e0; border: 1px solid rgba(100,140,200,.25); }
.tf-badge.sm { font-size: .6rem; padding: .1rem .35rem; }

/* Tarifa cards grid */
.tf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-bottom: 3rem;
  min-height: 60px;
}
.tf-card {
  background: var(--bg);
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: background .25s;
}
.tf-card:hover { background: var(--gold-subtle); }
.tf-card-name {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--ink);
  text-transform: uppercase;
}
.tf-card-airport .tf-card-name { color: var(--gold); }
.tf-card-prices {
  display: flex;
  gap: 1rem;
}
.tf-card-p {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
}
.tf-card-amount {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.tf-card-airport .tf-card-amount { color: var(--gold); }
.tf-card-label { font-size: .65rem; letter-spacing: .18em; color: var(--ink-muted); text-transform: uppercase; }

.tf-empty {
  text-align: center;
  padding: 2rem;
  color: var(--ink-muted);
  font-size: .95rem;
}
.tf-empty a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Base tariffs */
.tf-base {
  background: var(--bg-raised);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.tf-base h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.tf-base-grid { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.tf-base-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: .75rem 1rem;
  background: var(--bg-card);
  border-radius: 2px;
}
.tfbr-label { font-size: .85rem; color: var(--ink-mid); }
.tfbr-t1, .tfbr-t2 {
  font-size: .85rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  font-weight: 500;
}
.tf-legal {
  font-size: .72rem;
  color: var(--ink-muted);
  line-height: 1.6;
  font-style: italic;
  letter-spacing: .03em;
}

/* ─── 14. Colaboradores ─── */
#colaboradores {
  padding-block: var(--section-gap);
  overflow: hidden;
}

.marquee-outer {
  width: 100%;
  overflow: hidden;
  padding-block: 2rem;
  border-block: 1px solid var(--gold-border);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee-outer:hover .marquee-track { animation-play-state: paused; }

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

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  min-width: 168px;
  padding: .9rem 1.6rem;
  background: #fbfbf9;
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.partner-logo:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,.45); }

.partner-logo img {
  height: 100%;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}
.partner-logo span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  color: #1a1a17;
}

.colabs-note { margin-top: 2.5rem; text-align: center; }
.cn-text {
  font-size: .9rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
}
.cn-text a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .2s; }
.cn-text a:hover { border-color: var(--gold); }

/* ─── 13. Contacto ─── */
#contacto {
  padding-block: var(--section-gap);
  background: var(--bg-raised);
  position: relative;
  overflow: hidden;
}

.contacto-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.ctbg-t { width: min(500px, 60vw); opacity: .03; color: var(--gold); padding-right: 5%; }
.ctbg-t svg { width: 100%; }

.contacto-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.ct-left h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); line-height: 1.15; margin-bottom: 1rem; }
.ct-left p  { color: var(--ink-mid); line-height: 1.8; font-size: 1.02rem; margin-bottom: 2rem; }

.ct-features {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.ct-features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--ink-mid);
}
.ct-features svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.ct-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: clamp(2rem, 3vw, 2.8rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.ct-phone {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
}
.ct-sub {
  font-size: .8rem;
  color: var(--ink-muted);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.ct-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
}

/* ─── 14. Footer ─── */
#footer {
  padding-block: 3rem 2rem;
  border-top: 1px solid var(--gold-border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gold-border);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ft-logo { width: 26px; color: var(--gold); }
.footer-brand strong { display: block; font-family: var(--font-brand); font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: .14em; }
.footer-brand span   { display: block; font-size: .72rem; color: var(--ink-muted); letter-spacing: .15em; margin-top: .2rem; }

.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: .4rem; text-align: right; }
.fc-phone {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--ink);
  transition: color .2s;
}
.fc-phone:hover { color: var(--gold); }
.fc-wa {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity .2s;
}
.fc-wa:hover { opacity: .7; }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .7rem; color: var(--ink-muted); letter-spacing: .08em; }

/* ─── 14b. Alojamiento · Las Portillas ─── */
#alojamiento {
  padding-block: var(--section-gap);
  background: var(--bg);
  position: relative;
}

/* Showcase: imagen + texto */
.port-showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.port-visual { position: relative; }
.port-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
}
.port-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.port-visual:hover .port-img-wrap img { transform: scale(1.04); }

.port-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(9,9,7,.88);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: .8rem 1.4rem;
  border-radius: 2px;
  text-align: center;
}
.port-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.port-badge span {
  display: block;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: .3rem;
}

.port-body { display: flex; flex-direction: column; gap: 1.2rem; }
.port-body h3 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
}
.port-body p { color: var(--ink-mid); line-height: 1.8; font-size: 1.02rem; }

.port-stats { gap: 2rem; }

.port-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }
.port-web { font-size: .9rem; color: var(--ink-muted); margin-top: .3rem; }
.port-web a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .2s; }
.port-web a:hover { border-color: var(--gold); }

/* Características */
.port-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--gold-border);
  background: var(--gold-border);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.port-feat {
  background: var(--bg);
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: background .3s;
}
.port-feat:hover { background: var(--gold-subtle); }
.port-feat svg { width: 34px; height: 34px; color: var(--gold); }
.port-feat h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--ink);
}
.port-feat p { color: var(--ink-mid); font-size: .9rem; line-height: 1.6; }

/* Galería villa */
.port-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.pg-item {
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4/3;
}
.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.pg-item:hover img { transform: scale(1.05); }

/* Distancias */
.port-dist {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--bg-raised);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: clamp(1.8rem, 3.5vw, 3rem);
}
.pd-head { margin-bottom: 1.8rem; }
.pd-head h3 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--ink);
  margin-top: .15rem;
}
.pd-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  overflow: hidden;
}
.pd-list li {
  background: var(--bg-card);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: baseline;
  gap: .9rem;
}
.pd-min {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 3.4rem;
}
.pd-place { font-size: .9rem; color: var(--ink-mid); line-height: 1.4; }
.pd-taxi {
  margin-top: 1.8rem;
  font-size: .92rem;
  color: var(--ink-mid);
  line-height: 1.7;
  letter-spacing: .02em;
}
.pd-taxi a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.pd-taxi a:hover { border-color: var(--gold); }

/* ─── 14c. Cosmos: secciones translúcidas ─── */
/* Dejan ver el campo de estrellas global de forma sutil y uniforme */
#sobre         { background: rgba(19,19,16,.88); }
#servicios     { background: rgba(9,9,7,.80); }
#tarifas       { background: rgba(9,9,7,.80); }
#galeria       { background: rgba(19,19,16,.88); }
#alojamiento   { background: rgba(9,9,7,.80); }
#colaboradores { background: rgba(9,9,7,.78); }
#contacto      { background: rgba(19,19,16,.90); }
#footer        { background: rgba(6,6,5,.78); }

/* ─── 14d. En los medios (vídeos) ─── */
#medios {
  padding-block: var(--section-gap);
  background: rgba(9,9,7,.80);
}
.medios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
.video-card { display: flex; flex-direction: column; gap: 1rem; }

.vc-thumb {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  box-shadow: 0 24px 55px -28px rgba(0,0,0,.85);
}
.vc-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .6s var(--ease), opacity .3s;
}
.vc-thumb:hover img,
.vc-thumb:focus-visible img { transform: scale(1.05); opacity: 1; }

.vc-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 66px; height: 66px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,150,46,.94);
  color: #09090A;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(184,150,46,.45);
  transition: transform .25s var(--ease), background .25s;
}
.vc-play svg { width: 26px; height: 26px; margin-left: 3px; }
.vc-thumb:hover .vc-play,
.vc-thumb:focus-visible .vc-play { transform: scale(1.12); background: var(--gold-light); }

.vc-dur {
  position: absolute;
  bottom: .7rem; right: .7rem;
  background: rgba(9,9,7,.82);
  border: 1px solid var(--gold-border);
  color: var(--ink-mid);
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .22rem .55rem;
  border-radius: 2px;
}

.vc-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.vc-meta { display: flex; flex-direction: column; gap: .4rem; }
.vc-channel {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.vc-meta h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

/* ─── 14e. Galería ampliada ─── */
.galeria-more {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 3px;
}
.galeria-more .gl-item { aspect-ratio: 4/3; }

/* ─── 14f. Referido Tesla ─── */
#tu-tesla {
  position: relative;
  padding-block: var(--section-gap);
  overflow: hidden;
  text-align: center;
}
.tesla-cosmos { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.neb-3 {
  width: 65vw; height: 65vw;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184,150,46,.20), transparent 60%);
  filter: blur(90px);
}
.tesla-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.tesla-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
}
.tesla-inner > p {
  color: var(--ink-mid);
  line-height: 1.8;
  font-size: 1.05rem;
}
.tesla-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}
.tesla-note {
  font-size: .82rem;
  color: var(--ink-muted);
  font-style: italic;
  max-width: 540px;
  margin-top: .3rem;
}

/* ─── 14g. Reseñas (carrusel) ─── */
#resenas {
  padding-block: var(--section-gap);
  background: rgba(19,19,16,.86);
}
.rev-rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--ink-mid);
  font-size: 1rem;
}
.rev-rating strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold); }
.rev-stars-inline { color: var(--gold); letter-spacing: .08em; }

.rev-carousel { position: relative; max-width: 820px; margin-inline: auto; }
.rev-viewport { overflow: hidden; }
.rev-track { display: flex; transition: transform .6s var(--ease); }
.rev-slide { flex: 0 0 100%; min-width: 100%; padding: .5rem; }

.rev-card {
  background: rgba(27,27,23,.65);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  min-height: 250px;
  justify-content: center;
}
.rev-quote { width: 38px; height: 38px; color: var(--gold); opacity: .55; }
.rev-text {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  max-width: 620px;
}
.rev-stars { color: var(--gold); letter-spacing: .15em; font-size: 1.05rem; }
.rev-author {
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--ink-mid);
}

.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(9,9,7,.7);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  z-index: 2;
}
.rev-arrow:hover { background: var(--gold-subtle); border-color: var(--gold); }
.rev-prev { left: -12px; }
.rev-next { right: -12px; }

.rev-dots { display: flex; justify-content: center; gap: .55rem; margin-top: 1.6rem; }
.rev-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ink-muted);
  border: 0; padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.rev-dot.active { background: var(--gold); transform: scale(1.3); }

.rev-cta { text-align: center; margin-top: 2rem; }

/* ─── 14h. Galería de lugares ─── */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.gphoto {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4/3;
}
.gphoto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gphoto:hover img { transform: scale(1.06); }
.gphoto figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem .9rem .75rem;
  background: linear-gradient(to top, rgba(9,9,7,.92), rgba(9,9,7,.35) 60%, transparent);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.3;
}
.gphoto figcaption::before {
  content: '';
  display: inline-block;
  width: 14px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .5rem;
}

/* ─── 14i. Futurista / interactivo ─── */

/* Barra de progreso de scroll */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 50%, var(--gold-light));
  z-index: 600;
  pointer-events: none;
}

/* Estela de luz que sigue al cursor */
#cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  margin: -240px 0 0 -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,46,.16), transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .35s;
  z-index: 400;
  will-change: transform;
}

/* Tilt 3D: suavizado al volver a posición */
.vc-thumb, .gphoto, .rev-card { will-change: transform; }

/* ─── 14i. Servicio Camino (ancho completo) ─── */
.servicio-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
}
.servicio-wide .srv-wide-body { display: flex; flex-direction: column; gap: .55rem; }
.servicio p strong { color: var(--ink); font-weight: 600; }
.servicio a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
  white-space: nowrap;
}
.servicio a:hover { border-color: var(--gold); }

/* ─── 14j. Email + formulario de contacto ─── */
.ct-email {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: .9rem;
  letter-spacing: .03em;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--gold-border);
  transition: color .2s, border-color .2s;
  word-break: break-word;
}
.ct-email:hover { color: var(--gold); border-color: var(--gold); }

.ct-form {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--gold-border);
}
.ctf-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.ctf-field { display: flex; flex-direction: column; gap: .45rem; }
.ctf-field label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.ctf-field label span { color: var(--ink-muted); letter-spacing: .04em; text-transform: none; }
.ct-form input,
.ct-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--gold-border);
  border-radius: 3px;
  padding: .8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.ct-form input::placeholder,
.ct-form textarea::placeholder { color: var(--ink-muted); }
.ct-form input:focus,
.ct-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,46,.12);
}
.ct-form textarea { resize: vertical; min-height: 110px; }
.ctf-foot { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.2rem; }
.ctf-note { font-size: .78rem; color: var(--ink-muted); max-width: 430px; line-height: 1.5; }

/* Honeypot anti-spam (oculto a usuarios) */
.ctf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Mensaje de estado del envío */
.ctf-status {
  display: none;
  margin-top: 1.1rem;
  padding: .85rem 1.1rem;
  border-radius: 3px;
  font-size: .92rem;
  line-height: 1.5;
}
.ctf-status.ok    { display: block; background: rgba(120,170,90,.12);  border: 1px solid rgba(120,170,90,.45);  color: #c2e0aa; }
.ctf-status.error { display: block; background: rgba(200,90,80,.12);   border: 1px solid rgba(200,90,80,.45);   color: #eaa9a1; }

/* ─── 15. Responsive ─── */
@media (max-width: 1024px) {
  .servicios-grid { grid-template-columns: repeat(2, 1fr); }

  .galeria-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gl-main { grid-row: span 1; aspect-ratio: 4/3; }
  .gl-item:not(.gl-main) { aspect-ratio: 4/3; }

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

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

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  .hero-visual  { max-width: 560px; }
  .medios-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .tf-base-row { grid-template-columns: 1fr; gap: .5rem; }
  .tfbr-t1, .tfbr-t2 { font-size: .8rem; }
}

@media (max-width: 768px) {
  :root { --section-gap: clamp(4rem, 8vw, 6rem); }
  .tf-grid { grid-template-columns: repeat(2, 1fr); }
  .tf-legend { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .tarifas-hero { height: clamp(240px, 62vw, 380px); }


  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .sobre-grid,
  .contacto-inner,
  .port-showcase { grid-template-columns: 1fr; }
  .sobre-visual,
  .port-visual    { order: -1; }
  .sobre-img-wrap { aspect-ratio: 5/4; }

  .servicios-grid { grid-template-columns: 1fr; }
  .servicio-wide  { flex-direction: column; align-items: flex-start; }
  .servicio a     { white-space: normal; }
  .ctf-row        { grid-template-columns: 1fr; }

  .galeria-layout { grid-template-columns: 1fr; }
  .gl-main        { aspect-ratio: 16/9; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .footer-inner  { flex-direction: column; align-items: flex-start; }
  .footer-contact { text-align: left; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats { gap: 1.8rem; }
  .partner-logo { padding-inline: 2rem; }
  .tf-grid { grid-template-columns: 1fr; }
  .tf-input { font-size: .9rem; }

  .port-features { grid-template-columns: 1fr; }
  .port-gallery  { grid-template-columns: 1fr; }
  .port-stats    { gap: 1.5rem; }

  .galeria-more  { grid-template-columns: 1fr; }
  .galeria-grid  { grid-template-columns: repeat(2, 1fr); }
  .gphoto figcaption { font-size: .62rem; padding: 1.2rem .7rem .6rem; }
  .hero-slogan   { font-size: 1.1rem; }

  .rev-prev { left: -4px; }
  .rev-next { right: -4px; }
  .rev-arrow { width: 40px; height: 40px; font-size: 1.5rem; }
}

/* ─── 17. Movimiento reducido ─── */
@media (prefers-reduced-motion: reduce) {
  .hero-car-float,
  .hero-scroll-hint,
  .marquee-track,
  .splash-logo { animation: none !important; }
  .rev-track { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ─── 16. Print / reduced-motion (only intrusive effects) ─── */
@media print {
  #splash, #nav, .hero-scroll-hint { display: none; }
  body { background: white; color: black; }
}
