/* ============================================================
   RutaVibes — Dark Mode · Apple-inspired · Vanguardista
   Paleta oscura: #000 fondo · #1D9E75 verde · #F5F5F7 texto
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #000000;
  color: #F5F5F7;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Variables de color ---------- */
:root {
  --green:        #1D9E75;
  --green-bright: #25C896;
  --green-dim:    #0F6E56;
  --green-glow:   rgba(29, 158, 117, 0.25);
  --green-glow-lg:rgba(29, 158, 117, 0.12);

  --bg:           #000000;
  --bg-2:         #0a0a0a;
  --bg-3:         #111111;
  --bg-card:      #141414;
  --bg-card-hover:#1a1a1a;

  --border:       rgba(255,255,255,0.08);
  --border-green: rgba(29,158,117,0.35);

  --text-1:       #F5F5F7;
  --text-2:       #A1A1A6;
  --text-3:       #6E6E73;

  --radius-sm:    0.5rem;
  --radius-md:    1rem;
  --radius-lg:    1.5rem;
  --radius-xl:    2rem;
}

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: 980px; margin-inline: auto; padding-inline: 1.25rem; }
.container--wide { max-width: 1200px; }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.1; color: var(--text-1); }
h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: 1.125rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 1rem;
}

/* ---------- Gradiente de texto verde ---------- */
.text-gradient {
  background: linear-gradient(135deg, #25C896 0%, #1D9E75 50%, #9FE1CB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Sección genérica ---------- */
.section { padding-block: 5rem; }
.section--alt { background-color: var(--bg-2); }
.section--alt2 { background-color: var(--bg-3); }
.section__header { max-width: 720px; margin-bottom: 3rem; }
.section__header--centered { text-align: center; margin-inline: auto; }
.section__header p { color: var(--text-2); font-size: 1.125rem; margin-top: 0.875rem; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #fff;
  box-shadow: 0 0 24px var(--green-glow), 0 4px 16px rgba(0,0,0,0.4);
}
.btn--primary:hover {
  box-shadow: 0 0 40px rgba(37,200,150,0.45), 0 8px 24px rgba(0,0,0,0.4);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--border-green);
  color: var(--green-bright);
}
.btn--ghost:hover {
  background: rgba(29,158,117,0.12);
  border-color: var(--green-bright);
}

.btn--white {
  background: #fff;
  color: #000;
  font-weight: 700;
}
.btn--white:hover { background: #e8e8e8; }

/* ============================================================
   NAVEGACIÓN
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-1);
  flex-shrink: 0;
  transition: opacity 0.2s;
  z-index: 210;
}
.nav__logo:hover { opacity: 0.75; }

.nav__logo-pin {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
}
.nav__logo-pin svg { width: 28px; height: 28px; }

/* Hamburger CSS-only */
.nav-toggle { display: none; }
.nav-toggle--hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 210;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.nav-burger span:nth-child(2) { width: 70%; margin-left: auto; }

/* Animar burger cuando está abierto */
.nav-toggle:checked ~ .nav__inner .nav-burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle:checked ~ .nav__inner .nav-burger span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle:checked ~ .nav__inner .nav-burger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Links desktop */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }
.nav__link--active { color: var(--green-bright) !important; }

.nav__link--cta {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #fff !important;
  padding: 0.5rem 1.125rem;
  border-radius: 2rem;
  font-weight: 600;
  margin-left: 0.5rem;
  box-shadow: 0 0 16px var(--green-glow);
}
.nav__link--cta:hover {
  box-shadow: 0 0 28px rgba(37,200,150,0.45);
  background: rgba(0,0,0,0) !important;
  background: linear-gradient(135deg, #30e0a8, #1D9E75) !important;
}

.nav__lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.lang-switch__button {
  border: 1px solid rgba(255,255,255,0.16);
  background: transparent;
  color: var(--text-1);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch__button:hover,
.lang-switch__button.active {
  background: rgba(29,158,117,0.16);
  border-color: var(--green-bright);
  color: var(--green-bright);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 4rem;
  overflow: hidden;
  background: #000;
}

/* Fondo con glow radial verde */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(29,158,117,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(29,158,117,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid de puntos decorativo */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(29,158,117,0.12);
  border: 1px solid rgba(29,158,117,0.3);
  color: var(--green-bright);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero__title {
  margin-bottom: 1.25rem;
  color: var(--text-1);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 520px;
  font-weight: 400;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 2.5rem; }

/* Stat chips debajo de los CTA */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.hero__stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.03em;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Botones de tienda */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-1);
  padding: 0.75rem 1.375rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.store-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.store-btn__icon { font-size: 1.5rem; line-height: 1; display: inline-flex; align-items: center; }
.store-btn__icon svg { display: block; }
.store-btn__text { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn__label { font-size: 0.625rem; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.06em; }
.store-btn__name { font-size: 0.9375rem; font-weight: 700; }

.store-btn--icon-only {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.store-btn--icon-only:hover {
  background: transparent;
  border: none;
  box-shadow: none;
  transform: translateY(-3px);
}
.store-btn__svg {
  display: block;
  height: 44px;
  width: auto;
}

/* Video placeholder / mockup */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__phone-frame {
  position: relative;
  width: min(280px, 70vw);
  margin-inline: auto;
}

.hero__phone-screen {
  background: linear-gradient(160deg, #0d1f18 0%, #0a0a0a 40%, #091a13 100%);
  border-radius: 2.5rem;
  border: 1.5px solid rgba(29,158,117,0.3);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 40px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(29,158,117,0.15);
  overflow: hidden;
  aspect-ratio: 9/19;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem;
  gap: 0.75rem;
}

/* Elementos UI dentro del teléfono */
.phone-map {
  flex: 1;
  background: linear-gradient(180deg, #0f2a1e 0%, #071510 100%);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29,158,117,0.2);
}
.phone-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(29,158,117,0.4) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(29,158,117,0.2) 0%, transparent 25%),
    radial-gradient(circle at 50% 20%, rgba(29,158,117,0.15) 0%, transparent 30%);
}
.phone-map-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37,200,150,0.25);
}
.phone-map-pin:nth-child(1) { top: 38%; left: 28%; }
.phone-map-pin:nth-child(2) { top: 55%; left: 65%; }
.phone-map-pin:nth-child(3) { top: 22%; left: 55%; }
.phone-map-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.phone-route {
  width: 100%;
  height: 100%;
}

.phone-card {
  background: rgba(29,158,117,0.12);
  border: 1px solid rgba(29,158,117,0.25);
  border-radius: 0.75rem;
  padding: 0.625rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.phone-card-icon { font-size: 1rem; }
.phone-card-text { flex: 1; }
.phone-card-title {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--green-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phone-card-sub { font-size: 0.5625rem; color: var(--text-3); }

/* Glow orbit alrededor del teléfono */
.hero__phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(29,158,117,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   QUÉ ES
   ============================================================ */
.about { background: var(--bg-2); }

.about__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.about__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.about__card:hover {
  border-color: var(--border-green);
  box-shadow: 0 0 30px var(--green-glow-lg);
}
.about__card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about__card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--text-1); }
.about__card p { font-size: 0.9375rem; color: var(--text-2); margin-bottom: 0; line-height: 1.7; }

/* ============================================================
   CÓMO FUNCIONA — pasos
   ============================================================ */
.steps-wrap {
  display: grid;
  gap: 1.5rem;
  counter-reset: step-counter;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.step:hover {
  border-color: var(--border-green);
  box-shadow: 0 0 40px var(--green-glow-lg);
  transform: translateY(-3px);
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 20px var(--green-glow);
}

.step__body h3 { margin-bottom: 0.375rem; font-size: 1.0625rem; }
.step__body p { color: var(--text-2); font-size: 0.9375rem; margin-bottom: 0; line-height: 1.65; }

/* ============================================================
   FUNCIONALIDADES — grid de tarjetas
   ============================================================ */
.features-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { background: var(--bg-card-hover); }
.feature-card:hover::before { opacity: 1; }

.feature-card__emoji { font-size: 2.25rem; margin-bottom: 1rem; display: block; }
.feature-card__title { font-size: 1rem; font-weight: 700; color: var(--text-1); margin-bottom: 0.5rem; }
.feature-card__desc { font-size: 0.875rem; color: var(--text-2); margin-bottom: 0; line-height: 1.65; }

.gallery-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.gallery-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  min-width: 220px;
  text-align: center;
  font-weight: 600;
  color: var(--text-1);
}

.gallery-highlight strong {
  color: var(--green-bright);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gallery-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-card__content {
  padding: 1.25rem;
}

.gallery-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
}

/* ============================================================
   PARA EMPRESAS
   ============================================================ */
.business { background: var(--bg-2); }
.business__inner { display: grid; gap: 3rem; align-items: center; }

.business__tag {
  display: inline-block;
  background: rgba(29,158,117,0.12);
  border: 1px solid rgba(29,158,117,0.25);
  color: var(--green-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.business__benefits { display: flex; flex-direction: column; gap: 1rem; margin: 1.75rem 0 2rem; }
.business__benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}
.business__benefit-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 0 12px var(--green-glow);
  font-size: 0.625rem;
  color: #fff;
  flex-shrink: 0;
}

.business__panel {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(29,158,117,0.1);
}
.business__panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29,158,117,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.business__panel-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.business__panel h3 { font-size: 1.375rem; margin-bottom: 0.625rem; color: var(--text-1); }
.business__panel p { color: var(--text-2); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0; }
.business__stat {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 2rem;
}
.business__stat-item { display: flex; flex-direction: column; gap: 0.125rem; }
.business__stat-value { font-size: 1.75rem; font-weight: 800; color: var(--green-bright); letter-spacing: -0.03em; }
.business__stat-label { font-size: 0.75rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact__inner { max-width: 620px; margin-inline: auto; }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: 0.375rem; }
.form__label { font-size: 0.8125rem; font-weight: 600; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.06em; }

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-1);
  background-color: var(--bg-card);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-3); }
.form__textarea { min-height: 140px; resize: vertical; }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231D9E75'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form__select option { background: #1a1a1a; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding-block: 4rem 2rem;
}
.footer__inner { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.125rem; margin-bottom: 0.75rem; }
.footer__logo-pin { width: 24px; height: 24px; }
.footer__tagline { font-size: 0.875rem; color: var(--text-3); }

.footer__col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.footer__col-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__col-link { font-size: 0.875rem; color: var(--text-2); transition: color 0.2s; }
.footer__col-link:hover { color: var(--text-1); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-3);
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-link { color: var(--text-3); transition: color 0.2s; }
.footer__bottom-link:hover { color: var(--text-2); }

/* ---------- Nav scroll spy ---------- */
.nav__link--scrollspy {
  color: var(--green-bright) !important;
  background: rgba(29, 158, 117, 0.1);
}

/* ============================================================
   TARJETA "PRÓXIMAMENTE"
   ============================================================ */
.about__card--coming-soon {
  position: relative;
  border-color: rgba(29,158,117,0.3);
  background: linear-gradient(135deg, var(--bg-card) 60%, rgba(29,158,117,0.06) 100%);
}
.about__coming-soon-badge {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  box-shadow: 0 0 12px var(--green-glow);
}

/* ============================================================
   BLOQUE DE CONTACTO
   ============================================================ */
.contact-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-card__intro {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 440px;
}

.contact-card__email-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  background: rgba(29,158,117,0.08);
  border: 1px solid rgba(29,158,117,0.2);
  border-radius: var(--radius-lg);
  padding: 1.125rem 2rem;
  width: 100%;
}

.contact-card__email-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

.contact-card__email-address {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--green-bright);
  letter-spacing: -0.01em;
  transition: color 0.2s;
  white-space: nowrap;
}
.contact-card__email-address:hover { color: var(--text-1); }

.contact-card__btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

.contact-card__note {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================================
   PÁGINAS LEGALES
   ============================================================ */
.legal-page { padding-top: 6rem; padding-bottom: 5rem; min-height: 80vh; }

.legal-page__header {
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-page__header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
.legal-page__date { font-size: 0.875rem; color: var(--text-3); }

.legal-content h2 {
  font-size: 1.25rem;
  color: var(--text-1);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h3 { font-size: 1rem; color: var(--green-bright); margin-top: 2rem; margin-bottom: 0.5rem; }
.legal-content p { font-size: 0.9375rem; color: var(--text-2); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.9375rem; color: var(--text-2); line-height: 1.8; margin-bottom: 0.375rem; }
.legal-content a { color: var(--green-bright); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--text-1); }
.legal-content strong { color: var(--text-1); }

/* ============================================================
   RESPONSIVE — mobile first
   ============================================================ */

/* Mobile: hamburger visible */
@media (max-width: 759px) {
  .nav-burger { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 205;
  }
  .nav-toggle:checked ~ .nav__inner .nav__links {
    opacity: 1;
    pointer-events: all;
  }
  .nav__link { font-size: 1.25rem; padding: 0.875rem 1.5rem; width: 100%; text-align: center; }
  .nav__link--cta { border-radius: var(--radius-md); margin-left: 0; }

  .hero__stat-value { font-size: 1.25rem; }
}

/* Tablet: 600px */
@media (min-width: 600px) {
  .about__grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Desktop: 760px */
@media (min-width: 760px) {
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero__subtitle { max-width: 100%; }

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

  .business__inner { grid-template-columns: 1fr 1fr; }

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

/* Preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
