/* =============================================================
   GOCHI TRAVELS — styles.css
   1. Tokens  2. Reset  3. Utilities  4. Typography
   5. Components  6. Sections  7. Effects  8. Responsive
   9. Reduced motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Brand palette — derived from the Gochi logo, never invented */
  --amber:        #EF9F27;
  --amber-dark:   #BA7517;
  --amber-deep:   #854F0B;
  --terracotta:   #D85A30;
  --terracotta-dark: #993C1D;
  --blue:         #173F80;
  --blue-dark:    #0C2C5C;
  --ink:          #221C15;
  --ink-soft:     #55493A;
  --cream:        #FAF6EE;
  --cream-2:      #F3ECDD;
  --white:        #FFFFFF;

  --bg:           var(--cream);
  --surface:      var(--white);
  --text:         var(--ink);
  --text-soft:    var(--ink-soft);
  --accent:       var(--amber-dark);
  --accent-ink:   var(--amber-deep);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Sora", var(--sans);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 72px);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm: 0 1px 2px rgba(34, 28, 20, 0.06), 0 1px 1px rgba(34, 28, 20, 0.04);
  --shadow-md: 0 8px 24px rgba(34, 28, 20, 0.08), 0 2px 6px rgba(34, 28, 20, 0.05);
  --shadow-lg: 0 20px 48px rgba(34, 28, 20, 0.14);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; background: var(--cream); }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: transparent;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
::selection { background: var(--amber); color: var(--ink); }

/* Scrollbar minimalista con los colores del proyecto */
html { scrollbar-width: thin; scrollbar-color: rgba(186,117,23,0.45) transparent; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(186,117,23,0.45); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: rgba(153,60,29,0.6); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: var(--radius-sm); font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.section { padding-block: clamp(64px, 10vw, 120px); }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 6vw, 56px); }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* Defensive: if JS fails to load or observer never fires, content must still show */
.no-js .reveal,
.reveal[data-split] { opacity: 1; transform: none; }

/* Fade-in suave cuando una imagen termina de cargar (velocidad percibida) */
.fade-img { opacity: 0; transition: opacity .5s var(--ease-soft); }
.fade-img.is-loaded { opacity: 1; }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-soft); }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .2s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--terracotta-dark); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-accent {
  background: var(--amber);
  color: var(--amber-deep);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover { background: var(--amber-dark); color: var(--white); box-shadow: var(--shadow-md); }

/* Cards */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--cream-2);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out);
}
.card:hover .icon-badge { transform: rotate(-6deg) scale(1.06); background: var(--amber); color: var(--amber-deep); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(34, 28, 20, 0.55);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn .35s var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-2);
  font-size: 18px;
}
.modal-close:hover { background: var(--amber); }

/* Fondo propio por servicio dentro del modal */
.servicio-modal { position: relative; overflow: hidden; }
.servicio-modal-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.14;
  z-index: 0;
}
.servicio-modal > *:not(.servicio-modal-bg) { position: relative; z-index: 1; }

.servicio-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber); color: var(--amber-deep);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: 6px 12px; border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.form-field input, .form-field select {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-2);
  background: var(--cream);
  font: inherit;
  transition: border-color .2s var(--ease-out);
}
.form-field input:focus, .form-field select:focus {
  outline: none; border-color: var(--accent);
}

/* Floating buttons */
.floating-stack {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
  z-index: 900;
}
.floating-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease-out), background .2s var(--ease-out), color .2s var(--ease-out);
}
.floating-btn:hover { transform: scale(1.08); }
.floating-btn[data-fab="viaje-rapido"] { background: var(--ink); color: var(--cream); width: 58px; height: 58px; font-size: 24px; }
.floating-btn[data-fab="whatsapp"]:hover { background: #25D366; color: var(--white); }
.floating-btn[data-fab="instagram"]:hover { background: var(--terracotta); color: var(--white); }
.floating-btn[data-fab="tiktok"]:hover { background: var(--ink); color: var(--white); }

/* =============================================================
   6. Sections
   ============================================================= */

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 800;
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34, 28, 20, 0.06);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand-mark { display: flex; align-items: center; gap: 10px; }
.brand-mark img { height: 44px; width: auto; }
.brand-mark span { font-family: var(--display); font-weight: 700; font-size: 18px; }

.main-nav { display: none; align-items: center; gap: 32px; }
.main-nav a { font-size: 15px; font-weight: 500; position: relative; transition: color .2s var(--ease-out); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--accent-ink);
  transition: width .25s var(--ease-out);
}
.main-nav a:hover { color: var(--accent-ink); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: flex; width: 44px; height: 44px; border-radius: var(--radius-sm);
  align-items: center; justify-content: center; font-size: 22px;
  background: var(--cream-2);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--gutter) 20px;
  background: var(--surface);
  border-bottom: 1px solid rgba(34,28,20,0.06);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 8px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover { background: var(--cream-2); }

/* Hero */
.hero {
  position: relative;
  padding-block: clamp(56px, 10vw, 96px) clamp(72px, 12vw, 120px);
  overflow: hidden;
}
.hero .container {
  display: grid;
  gap: clamp(32px, 6vw, 56px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-mascot {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.hero-mascot-glow {
  position: absolute;
  top: 8%; left: 50%;
  width: min(80%, 380px); height: min(80%, 380px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(239,159,39,0.35) 0%, rgba(239,159,39,0.12) 45%, transparent 72%);
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}
.hero-mascot img {
  width: min(100%, 340px);
  animation: float 7s ease-in-out infinite;
  position: relative; z-index: 2;
}
.hero-mascot-shadow {
  width: min(60%, 200px);
  height: 22px;
  margin: -14px auto 0;
  background: radial-gradient(ellipse, rgba(34,28,20,0.28) 0%, transparent 72%);
  animation: shadowPulse 7s ease-in-out infinite;
  position: relative; z-index: 1;
}
@keyframes shadowPulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(0.86); opacity: 0.5; }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  margin-top: 26px; padding: 0;
}
.hero-trust li {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--text-soft);
}
.hero-trust li i { color: var(--accent-ink); font-size: 15px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 40px);
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid rgba(34,28,20,0.08);
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; padding: 2px 4px; border-radius: var(--radius-sm); transition: background .2s var(--ease-out); }
.hero-stat:hover { background: var(--cream-2); }
.hero-stat-valor { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.hero-stat-label { font-size: 12px; color: var(--text-soft); }

/* Carretera muy sutil bajo el Hero, con brillo y un vehículo decorativo */
.hero-road {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: rgba(34, 28, 20, 0.07);
  overflow: visible;
  z-index: 1;
}
.hero-road-shine {
  position: absolute; top: 0; left: -30%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(239,159,39,0.5), transparent);
  animation: roadShine 8s linear infinite;
}
.hero-road-car {
  position: absolute; bottom: 2px; left: -6%;
  font-size: 13px;
  color: var(--accent-ink);
  opacity: 0;
  animation: roadCar 13s ease-in-out infinite;
}
@keyframes roadShine {
  0% { left: -30%; }
  100% { left: 100%; }
}
@keyframes roadCar {
  0%   { left: -6%; opacity: 0; }
  4%   { opacity: 0.55; }
  38%  { left: 104%; opacity: 0.55; }
  42%  { opacity: 0; }
  100% { left: 104%; opacity: 0; }
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(250,246,238,0.94) 0%, rgba(250,246,238,0.88) 55%, var(--cream) 100%),
    radial-gradient(65% 55% at 82% 12%, rgba(239,159,39, var(--hero-glow-opacity, 0.30)), transparent),
    radial-gradient(55% 45% at 8% 95%, rgba(216,90,48, var(--hero-glow-opacity-2, 0.20)), transparent),
    radial-gradient(40% 40% at 50% 45%, rgba(239,159,39,0.08), transparent);
}
.hero-bg::after {
  /* Grano muy sutil — evita que el degradado se vea plano. Desactivable desde config.js. */
  content: "";
  position: absolute; inset: 0;
  opacity: var(--hero-grano-opacidad, 0.035);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

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

/* Servicios */
/* Servicios */
.section-servicios {
  background: linear-gradient(180deg, rgba(239,159,39,0.05) 0%, transparent 100%);
}
.servicios-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.service-card { cursor: pointer; position: relative; }
.card-badge {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--amber); color: var(--amber-deep);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--accent-ink);
  margin-top: 14px;
}

/* Confianza */
.confianza {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  margin-inline: var(--gutter);
  overflow: hidden;
}
.confianza .container { max-width: none; padding: 0; }
.confianza-inner {
  display: grid;
  gap: 0;
}
.confianza-media { position: relative; min-height: 260px; }
.confianza-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.confianza-content { padding: clamp(32px, 6vw, 56px); }
.confianza-content h2 { color: var(--cream); }
.confianza-points { display: grid; gap: 16px; margin-top: 28px; }
.confianza-point { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.confianza-point i { color: var(--amber); font-size: 20px; flex-shrink: 0; }

.testimonios-viewport { margin-top: 36px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.testimonios-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: testimoniosScroll 32s linear infinite;
}
.testimonios-viewport:hover .testimonios-track { animation-play-state: paused; }
.testimonio {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 14px;
  width: 260px;
  flex-shrink: 0;
  color: rgba(250,246,238,0.85);
}
.testimonio strong { display: block; color: var(--cream); margin-top: 8px; font-size: 13px; }
@keyframes testimoniosScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Nosotros */
.nosotros .container {
  display: grid;
  gap: clamp(32px, 6vw, 56px);
  align-items: center;
}
.nosotros-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.nosotros-media img { width: 100%; height: 100%; object-fit: cover; }

/* CTA principal */
.cta-principal {
  background: linear-gradient(135deg, var(--amber) 0%, var(--terracotta) 100%);
  border-radius: var(--radius-lg);
  margin-inline: var(--gutter);
  padding: clamp(40px, 8vw, 72px);
  text-align: center;
  color: var(--white);
}
.cta-principal h2 { color: var(--white); }
.cta-principal .lede { color: rgba(255,255,255,0.9); margin-top: 12px; }
.cta-principal .btn-primary { margin-top: 28px; background: var(--ink); }
.cta-principal .btn-primary:hover { background: var(--white); color: var(--ink); }

/* Reservas / booking */
.booking-card { margin-bottom: 28px; }
.booking-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 20px;
}
.booking-confirm { text-align: center; padding: 12px 0; }
.booking-confirm .icon-badge { margin: 0 auto 16px; background: var(--amber); color: var(--amber-deep); font-size: 28px; }

/* Ubicación / mapa */
.map-card { display: flex; flex-direction: column; gap: 20px; padding: 20px; }
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-2);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-card .btn { align-self: flex-start; }

/* Footer */
.site-footer {
  padding-block: clamp(56px, 8vw, 88px) 28px;
  color: var(--cream);
  background: var(--ink);
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(250,246,238,0.12);
}
.footer-grid h3 { color: var(--cream); font-size: 15px; margin-bottom: 14px; }
.footer-grid p, .footer-grid li { font-size: 14px; color: rgba(250,246,238,0.72); line-height: 1.8; }
.footer-grid li { display: flex; align-items: center; gap: 8px; }
.footer-grid li i { color: var(--amber); font-size: 15px; flex-shrink: 0; }
.footer-grid li a { display: flex; align-items: center; gap: 8px; }
.footer-brand img { height: 40px; margin-bottom: 12px; }
.footer-bottom {
  padding-top: 20px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: 13px; color: rgba(250,246,238,0.55);
}

/* =============================================================
   7. Effects
   ============================================================= */
.icon-tabler { line-height: 1; }

/* Fondo ambiental — imagen muy suavizada + overlay, controlado desde config.js */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.site-bg-image {
  position: absolute;
  inset: -60px; /* overscan: esconde el borde duro que deja el blur */
  background-size: cover;
  background-position: center;
  filter: blur(var(--bg-blur, 0px));
  opacity: var(--bg-opacity, 0);
  transform: translateY(var(--bg-parallax, 0px));
  transition: opacity .6s var(--ease-soft);
  will-change: transform;
}
.site-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-overlay, transparent);
}

/* Cursor premium — solo escritorio con puntero fino; se autodesactiva
   en móvil/táctil y respeta prefers-reduced-motion. Ver cfg.cursor.habilitado. */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent-ink); }
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--accent-ink);
  opacity: 0.5;
  transition: width .2s var(--ease-out), height .2s var(--ease-out), opacity .2s var(--ease-out);
}
.has-custom-cursor, .has-custom-cursor * { cursor: none !important; }
.has-custom-cursor input[type="date"]::-webkit-calendar-picker-indicator,
.has-custom-cursor input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: none !important;
}
.cursor-ring.is-active { width: 44px; height: 44px; opacity: 0.9; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .confianza-inner { grid-template-columns: 1fr 1fr; }
  .nosotros .container { grid-template-columns: 1fr 1fr; }
  .nosotros .container.reverse { direction: rtl; }
  .nosotros .container.reverse > * { direction: ltr; }
}
@media (min-width: 880px) {
  .hero .container { grid-template-columns: 1.1fr 0.9fr; }
}
@media (min-width: 960px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
}
@media (min-width: 1280px) {
  .hero .container { grid-template-columns: 1fr 0.85fr; }
}

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (max-width: 480px) {
  .confianza-content h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .confianza-content { overflow: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mascot img { animation: none; }
  html { scroll-behavior: auto; }
  .site-bg-image { transform: none !important; transition: none; }
  .cursor-dot, .cursor-ring { display: none; }
  .has-custom-cursor, .has-custom-cursor a, .has-custom-cursor button { cursor: auto; }
  .hero-road-shine, .hero-road-car { animation: none; display: none; }
  .hero-mascot-shadow { animation: none; }
  .reveal-stagger { transition-delay: 0ms !important; }
  .testimonios-track { animation: none; overflow-x: auto; }
}
