/* Tu Tramitero — Landing styles */

:root {
  /* Brand colors — base navy #132B47 */
  --navy-900: #0E2138;
  --navy-800: #132B47;
  --navy-700: #1C3A5E;
  --navy-600: #27496F;
  --navy-50: #E8EEF4;

  --orange-600: #D86A1E;
  --orange-500: #EE7B2D;
  --orange-400: #FF9551;
  --orange-100: #FFE0CA;

  --logo-blue: #2A8FD8;
  --logo-green: #3FBE5C;

  --cream: #F4EFE7;
  --cream-2: #ECE5D7;
  --paper: #FAF7F1;

  --ink-900: #1A2A3D;
  --ink-700: #324559;
  --ink-500: #5E6F84;
  --ink-400: #8593A8;

  --green: #1FA85A;
  --green-bright: #25D366;

  --line: rgba(255,255,255,0.10);
  --line-dark: rgba(44,72,98,0.10);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-soft: 0 1px 2px rgba(44,72,98,.04), 0 8px 24px rgba(44,72,98,.06);
  --shadow-pop: 0 2px 6px rgba(44,72,98,.06), 0 18px 50px rgba(44,72,98,.14);
  --shadow-orange: 0 12px 28px rgba(238,123,45,.32);

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 600px) { .container { padding: 0 20px; } }

/* ============== Display type ============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
  font-weight: 500;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(238,123,45,.20);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: inherit;
  text-wrap: balance;
}
h2 { font-size: clamp(30px, 4.4vw, 54px); }
h3 { font-size: 22px; letter-spacing: -0.01em; line-height: 1.2; }

p { margin: 0; text-wrap: pretty; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange-500);
  color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-600); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: white;
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }

.btn-light {
  background: white;
  color: var(--navy-800);
  border: 1px solid var(--line-dark);
}
.btn-light:hover { background: var(--paper); }

/* ============== Sections ============== */
section { position: relative; }

.sec-dark { background: var(--navy-800); color: white; }
.sec-cream { background: var(--cream); }
.sec-paper { background: var(--paper); }

.sec-pad { padding: 110px 0; }
@media (max-width: 720px) { .sec-pad { padding: 64px 0; } }

/* ============== Logo ============== */
.logo-mark {
  width: 38px; height: 38px;
  display: block;
  flex-shrink: 0;
}
.logo-mark-lg { width: 96px; height: 96px; }

/* ============== Nav ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: var(--navy-900);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: white; font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: -0.01em;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  color: rgba(255,255,255,.78); font-size: 14px; font-weight: 500;
}
.nav-links a:hover { color: white; }
.nav-links a { transition: color .15s ease; }
@media (max-width: 920px) { .nav-links { display: none; } }
@media (max-width: 540px) {
  .nav .btn-primary { padding: 11px 16px; font-size: 13px; }
  .brand span { font-size: 16px; }
}

/* ============== Hero ============== */
.hero {
  background: var(--navy-800);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0 130px;
}
@media (max-width: 720px) { .hero { padding: 56px 0 100px; } }

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(238,123,45,.18), transparent 60%),
    radial-gradient(600px 600px at 15% 90%, rgba(84,121,160,.5), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 78px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 22px 0 24px;
}
.hero h1 .accent {
  color: var(--orange-500);
  font-style: italic;
  font-weight: 600;
}
.hero-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,.80);
  max-width: 520px;
  line-height: 1.55;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 36px; color: rgba(255,255,255,.72); font-size: 13px;
}
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 30px; height: 30px; border-radius: 999px;
  border: 2px solid var(--navy-800);
  margin-right: -8px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  display: grid; place-items: center; color: white;
}

/* Hero card (right side) */
.hero-card-wrap {
  position: relative;
  padding: 0 8px;
}
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  padding: 26px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
  position: relative;
  z-index: 1;
}
.hero-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 18px;
}
.hero-card-head .title {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.hero-card-head .meta {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.55); letter-spacing: .12em; text-transform: uppercase;
}
.hero-svc-list { display: grid; gap: 8px; }
.hero-svc {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
}
.hero-svc:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  transform: translateX(2px);
}
.hero-svc-ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(238,123,45,.16);
  display: grid; place-items: center;
  color: var(--orange-400);
}
.hero-svc-name {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
}
.hero-svc-sub {
  font-size: 12px; color: rgba(255,255,255,.55);
  margin-top: 2px;
}
.hero-svc-go {
  width: 28px; height: 28px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: all .2s ease;
}
.hero-svc:hover .hero-svc-go {
  background: var(--orange-500); color: white;
}

.hero-float {
  position: absolute;
  z-index: 2;
  background: white;
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,.30);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px;
}
.hero-float-1 { top: 14%; left: -8px; }
.hero-float-2 { bottom: 6%; right: -4px; }
@media (max-width: 1100px) { .hero-float-1, .hero-float-2 { display: none; } }

.hero-float .ic {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--orange-100); color: var(--orange-600);
  flex-shrink: 0;
}
.hero-float .ic.green { background: rgba(63,190,92,.14); color: var(--logo-green); }
.hero-float .small { font-size: 11px; color: var(--ink-500); font-weight: 500; }

/* ============== Stats strip ============== */
.stats {
  position: relative; z-index: 3;
  margin-top: -56px;
}
.stats-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pop);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .stats-card { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 480px) { .stats-card { padding: 24px 20px; } }
.stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 12px;
  border-left: 1px solid var(--line-dark);
}
.stat:first-child { border-left: none; }
@media (max-width: 880px) {
  .stat { border-left: none; padding: 0; }
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-800);
  line-height: 1;
}
.stat-num .accent { color: var(--orange-500); }
.stat-lbl {
  font-size: 13px; color: var(--ink-500); margin-top: 6px;
  line-height: 1.35;
}

/* ============== Services grid ============== */
.svc-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 56px;
}
@media (max-width: 760px) {
  .svc-head { flex-direction: column; align-items: start; gap: 20px; margin-bottom: 40px; }
}
.svc-head p { color: var(--ink-500); max-width: 460px; font-size: 16px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .svc-card { padding: 12px 11px; min-height: 0; border-radius: 12px; }
  .svc-card .ic-wrap { width: 32px; height: 32px; border-radius: 8px; margin-bottom: 8px; }
  .svc-card .ic-wrap svg { width: 16px; height: 16px; }
  .svc-card h3 { font-size: 13px; margin-bottom: 3px; line-height: 1.2; }
  .svc-card p { font-size: 11.5px; line-height: 1.35; }
  .svc-card .arrow { display: none; }
  .svc-head { margin-bottom: 24px; }
  .svc-head h2 { font-size: 28px; }
  .svc-head p { font-size: 14px; }
}

.svc-card {
  background: white;
  border: 1px solid var(--line-dark);  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop);
  border-color: rgba(238,123,45,.30);
}
.svc-card .ic-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--navy-800);
  margin-bottom: 22px;
  transition: all .25s ease;
}
.svc-card:hover .ic-wrap { background: var(--orange-500); color: white; }
.svc-card h3 { color: var(--navy-900); margin-bottom: 8px; }
.svc-card p { color: var(--ink-500); font-size: 14.5px; }
.svc-card .arrow {
  margin-top: auto;
  padding-top: 22px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--orange-500);
  letter-spacing: -0.005em;
}
.svc-card .arrow svg { transition: transform .2s ease; }
.svc-card:hover .arrow svg { transform: translateX(4px); }

.svc-card.featured {
  background: var(--navy-800);
  color: white;
  border-color: var(--navy-800);
}
.svc-card.featured .ic-wrap { background: rgba(255,255,255,.10); color: white; }
.svc-card.featured:hover .ic-wrap { background: var(--orange-500); }
.svc-card.featured h3 { color: white; }
.svc-card.featured p { color: rgba(255,255,255,.72); }
.svc-card.featured:hover { transform: translateY(-3px); border-color: var(--orange-500); }

/* ============== How it works ============== */
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .how { grid-template-columns: 1fr; gap: 40px; } }

.how-steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line-dark);
  transition: all .2s ease;
}
.step:hover {
  border-color: rgba(238,123,45,.4);
  transform: translateX(4px);
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--navy-800);
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px;
  display: grid; place-items: center;
  letter-spacing: -0.02em;
}
.step:nth-child(2) .step-num { background: var(--orange-100); color: var(--orange-600); }
.step:nth-child(3) .step-num { background: rgba(63,190,92,.14); color: var(--logo-green); }
.step h3 { color: var(--navy-900); margin-bottom: 4px; }
.step p { color: var(--ink-500); font-size: 14.5px; }

.about-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--navy-800);
}
.about-pill .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--logo-green); }

/* ============== About ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background:
    repeating-linear-gradient(135deg,
      rgba(238,123,45,.10) 0 14px,
      rgba(238,123,45,.04) 14px 28px),
    var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line-dark);
  overflow: hidden;
}
.about-photo .ph {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-500);
  padding: 10px 16px;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  letter-spacing: .04em;
}
.about-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 14px;
}
.about-badge .ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--navy-800); color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.about-badge h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--navy-900); margin: 0 0 2px;
}
.about-badge p { font-size: 12px; color: var(--ink-500); margin: 0; }

.about h2 { color: var(--navy-900); margin-bottom: 20px; }
.about p.lede { font-size: 17px; color: var(--ink-700); margin-bottom: 24px; line-height: 1.6; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }

/* ============== Coverage ============== */
.cov {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .cov { grid-template-columns: 1fr; gap: 40px; } }
.cov-map {
  aspect-ratio: 1.1/1;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}

/* ============== Instagram-style gallery ============== */
.gallery-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; margin-bottom: 40px;
}
@media (max-width: 720px) {
  .gallery-head { flex-direction: column; align-items: start; }
}
.gallery-handle {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: white;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  color: var(--navy-800);
  transition: all .2s ease;
}
.gallery-handle:hover {
  background: var(--orange-500); color: white; border-color: var(--orange-500);
  transform: translateY(-2px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.ig-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line-dark);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ig-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); }
.ig-tile .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg,
      rgba(44,72,98,.06) 0 12px,
      rgba(44,72,98,.02) 12px 24px),
    var(--cream);
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-500);
  text-align: center;
  padding: 16px;
  letter-spacing: .02em;
  line-height: 1.5;
}
.ig-tile .ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.65) 100%);
  display: flex; align-items: end;
  padding: 14px;
  opacity: 0;
  transition: opacity .25s ease;
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-tile .ig-meta {
  color: white;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
}
.ig-tile .ig-meta span { display: inline-flex; align-items: center; gap: 5px; }
.ig-tile .ig-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 10px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 500;
  color: var(--navy-800);
}

/* ============== FAQ ============== */
.faq-list { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: all .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-soft); border-color: rgba(238,123,45,.25); }
.faq-item summary {
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px; font-weight: 400;
  color: var(--orange-500);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 12px;
  color: var(--ink-500); font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 560px) {
  .faq-item { padding: 18px 20px; }
  .faq-item summary { font-size: 15px; }
}

/* ============== Final CTA ============== */
.final-cta {
  background: var(--navy-900);
  color: white;
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 20% 0%, rgba(238,123,45,.20), transparent 60%),
    radial-gradient(500px 300px at 80% 100%, rgba(84,121,160,.4), transparent 60%);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: white; margin-bottom: 16px; }
.final-cta p {
  font-size: 17px; color: rgba(255,255,255,.78);
  max-width: 560px; margin: 0 auto 32px;
}
.final-cta-row {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 720px) { .final-cta { padding: 56px 24px; } }

/* ============== Footer ============== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer h5 {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.5);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a:hover { color: white; }
.footer ul a { transition: color .15s ease; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12px; color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
  color: rgba(255,255,255,.7);
  transition: all .2s ease;
}
.footer-socials a:hover {
  background: var(--orange-500); color: white; transform: translateY(-2px);
}

/* ============== WhatsApp FAB — fixed properly ============== */
.wa-fab-wrap {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 100;
  pointer-events: none;
}
.wa-fab {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px 14px 16px;
  background: var(--green-bright);
  color: white;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37,211,102,.40), 0 4px 10px rgba(0,0,0,.18);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.02); }
.wa-fab::after {
  content: '';
  position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid var(--green-bright);
  animation: pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.wa-fab-text { display: inline; }
@media (max-width: 600px) {
  .wa-fab-text { display: none; }
  .wa-fab { padding: 14px; }
  .wa-fab-wrap { bottom: 16px; right: 16px; }
}

/* ============== Helpers ============== */
.muted { color: var(--ink-500); }
.section-head { display: grid; gap: 12px; margin-bottom: 56px; }
.section-head.center { text-align: center; justify-items: center; }
.section-head h2 { color: var(--navy-900); }
.sec-dark .section-head h2 { color: white; }
.section-head p { color: var(--ink-500); max-width: 520px; font-size: 16px; }
.sec-dark .section-head p { color: rgba(255,255,255,.7); }
@media (max-width: 720px) { .section-head { margin-bottom: 36px; } }
