/* JASTEC — Paleta de marca (verde + amarillo)
   Tomada del logo: verde oscuro corporativo + amarillo eléctrico */
:root {
  --ink: #1c1917;
  --ink-2: #292524;
  --muted: #78716c;
  --line: #e7e5e4;
  --line-2: #d6d3d1;
  --bg: #ffffff;
  --bg-soft: #fafaf9;
  --bg-cream: #f0fdf4;
  --bg-dark: #0f2e1d;

  /* Verde de marca (reemplaza naranja) — versión brillante para mejor visibilidad */
  --orange: #16a34a;
  --orange-dark: #15803d;
  --orange-soft: #bbf7d0;
  --orange-cream: #f0fdf4;

  /* Amarillo de marca (reemplaza amber) */
  --wood: #ca8a04;
  --wood-dark: #713f12;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(28,25,23,.04), 0 1px 1px rgba(28,25,23,.03);
  --shadow-md: 0 8px 24px -8px rgba(28,25,23,.12);
  --shadow-lg: 0 30px 60px -20px rgba(28,25,23,.25);
  --shadow-orange: 0 12px 30px -10px rgba(30,94,58,.4);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ───────────── Top bar ───────────── */
.topbar {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  font-size: 13px;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; padding-bottom: 10px;
  gap: 16px; flex-wrap: wrap;
}
.topbar .info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar .info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .info svg { color: var(--orange); }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--orange); }

/* ───────────── Header ───────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 104px;
}
.brand {
  display: inline-flex; align-items: center;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none;
}
.brand:focus, .brand:focus-visible, .brand:active, .brand:hover {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.brand-logo {
  height: 80px; width: auto;
  display: block;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  transition: opacity .2s;
}
.brand:hover .brand-logo { opacity: .85; }
.site-footer .brand-logo {
  height: 88px;
  /* Invertir colores para visibilidad sobre fondo oscuro */
  filter: brightness(0) invert(1);
  opacity: .92;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > a, .nav-links > .has-dropdown > .dropdown-trigger {
  font-weight: 500; font-size: 15px; color: var(--ink);
  padding: 8px 0; position: relative;
  transition: color .2s;
  background: none; border: 0; cursor: pointer;
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links > a:not(.btn):hover,
.nav-links > .has-dropdown:hover > .dropdown-trigger { color: var(--orange); }
.nav-links > a.active,
.nav-links > .has-dropdown.active > .dropdown-trigger { color: var(--orange); font-weight: 600; }
.nav-links > a.active::after,
.nav-links > .has-dropdown.active > .dropdown-trigger::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--orange); border-radius: 2px;
}
.dropdown-trigger svg { transition: transform .2s; }
.has-dropdown:hover .dropdown-trigger svg { transform: rotate(180deg); }

/* Dropdown menu */
.has-dropdown { position: relative; }
/* Puente invisible para que el hover no se pierda al moverse entre trigger y menú */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%; left: -20px; right: -20px;
  height: 16px;
  pointer-events: none;
}
.has-dropdown:hover::after { pointer-events: auto; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 60;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: "";
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform-origin: center;
  transform: translateX(-50%) rotate(45deg);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  font-size: 14.5px; font-weight: 500;
}
.dropdown-menu a:not(.see-all):hover {
  background: var(--bg-cream);
  color: var(--orange-dark);
}
.dropdown-num {
  font-size: 11px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 1.5px;
  min-width: 22px;
}
.dropdown-menu a:hover .dropdown-num { color: var(--orange-dark); }
.dropdown-divider {
  height: 1px; background: var(--line);
  margin: 8px 4px;
}
.dropdown-menu a.see-all {
  font-size: 13px; font-weight: 700;
  color: var(--orange);
  justify-content: center;
  background: var(--bg-cream);
  margin-top: 4px;
}
.dropdown-menu a.see-all:hover {
  background: var(--orange);
  color: #fff;
}

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink);
  margin: 5px 0; border-radius: 2px; transition: all .25s;
}

/* ───────────── Buttons ───────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 6px;
  font-weight: 600; font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-arrow::after {
  content: "→"; margin-left: 4px;
  transition: transform .2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ───────────── Hero — Full-bleed image ───────────── */
.hero {
  position: relative;
  min-height: 720px;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background-color: #111;
  background-image: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=2400&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,.85) 0%, rgba(17,17,17,.65) 45%, rgba(17,17,17,.3) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 30%, rgba(0,0,0,.45) 100%);
}
.hero .container { position: relative; z-index: 1; padding-top: 100px; padding-bottom: 100px; width: 100%; }
.hero-content { max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(30,94,58,.18);
  color: #bbf7d0;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(30,94,58,.4);
  backdrop-filter: blur(8px);
}
.hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero .lead {
  font-size: 19px; color: rgba(255,255,255,.85);
  max-width: 580px; margin: 0 0 36px;
  line-height: 1.6;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Floating stat cards over hero */
.hero-floats {
  position: absolute; bottom: 40px; right: 40px;
  display: grid; gap: 12px;
  z-index: 2;
  max-width: 340px;
}
.float-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.float-card .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--orange-cream); color: var(--orange);
  display: grid; place-items: center; flex-shrink: 0;
}
.float-card strong { display: block; font-size: 15px; color: var(--ink); }
.float-card span { font-size: 13px; color: var(--muted); }

/* ───────────── Stats strip ───────────── */
.stats {
  background: var(--ink);
  color: #fff;
  padding: 56px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat .num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat .label {
  font-size: 14px; color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* ───────────── Section base ───────────── */
section { padding: 96px 0; }
.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: 1.8px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin: 0 0 16px;
  font-weight: 800; letter-spacing: -.025em;
  color: var(--ink);
  line-height: 1.1;
}
.section-head p { color: var(--muted); font-size: 17.5px; margin: 0; }

/* ───────────── Servicios numerados (01-07) ───────────── */
.services-numbered {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  transition: all .3s;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--orange-soft); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-size: 13px; font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--orange-cream); color: var(--orange);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.svc-card h3 {
  font-size: 22px; margin: 0 0 12px;
  font-weight: 700; color: var(--ink);
  letter-spacing: -.01em;
}
.svc-card p { color: var(--muted); margin: 0 0 22px; font-size: 15px; flex-grow: 1; }
.svc-link {
  font-size: 14px; font-weight: 600;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.svc-link:hover { gap: 10px; }

/* ───────────── About / por qué ───────────── */
.about {
  background: var(--bg-cream);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.about h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; letter-spacing: -.025em;
  margin: 14px 0 16px;
  color: var(--ink);
  line-height: 1.1;
}
.about > .container > .about-grid > div > p {
  color: var(--muted); font-size: 17px;
}
.features { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 18px; }
.features li {
  display: flex; gap: 16px; align-items: flex-start;
}
.features .check {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.features strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 2px; }
.features span { color: var(--muted); font-size: 14.5px; }

.about-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-image: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?w=1200&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.about-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45) 100%);
}
.about-visual .badge-overlay {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.about-visual .badge-overlay .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.about-visual .badge-overlay strong { display: block; font-size: 15px; color: var(--ink); }
.about-visual .badge-overlay span { font-size: 13px; color: var(--muted); }

/* ───────────── Galería de proyectos (con fotos) ───────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  display: block;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.85) 100%);
  pointer-events: none;
}
.gallery-caption {
  position: absolute; bottom: 20px; left: 22px; right: 22px;
  color: #fff;
  z-index: 1;
}
.gallery-caption .tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: #bbf7d0; letter-spacing: 1.8px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.gallery-caption strong {
  display: block;
  font-size: 17px; font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.25;
}

/* ───────────── Marcas ───────────── */
.brands { padding: 72px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brands-title {
  text-align: center;
  font-size: 13px; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 1.8px;
  margin: 0 0 32px;
}
.brands-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
  align-items: center;
}
.brand-logo {
  height: 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  color: var(--muted);
  letter-spacing: .5px;
  transition: all .2s;
}
.brand-logo:hover { color: var(--ink); border-color: var(--orange-soft); }

/* ───────────── CTA banner ───────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--wood-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  color: #fff;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; right: -120px; bottom: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,94,58,.4), transparent 70%);
}
.cta-banner h2 {
  font-size: clamp(28px, 3.8vw, 38px);
  margin: 0 0 14px; line-height: 1.15;
  font-weight: 800; letter-spacing: -.02em;
  position: relative; z-index: 1;
}
.cta-banner p { margin: 0; color: rgba(255,255,255,.8); font-size: 16.5px; position: relative; z-index: 1; }
.cta-banner .cta-row { justify-content: flex-end; position: relative; z-index: 1; }

/* ───────────── Service page hero (interior con foto) ───────────── */
.svc-hero {
  color: #fff;
  padding: 120px 0 120px;
  position: relative; overflow: hidden;
  background-color: #1c1917;
  background-size: cover;
  background-position: center;
}
.svc-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,.88) 0%, rgba(17,17,17,.7) 50%, rgba(17,17,17,.4) 100%),
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, transparent 30%, rgba(0,0,0,.4) 100%);
}
.svc-hero > .container { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 14px; color: rgba(255,255,255,.6);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--orange); }
.svc-hero .num-large {
  font-size: 14px; font-weight: 700;
  color: var(--orange); letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.svc-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; letter-spacing: -.025em;
  margin: 0 0 18px;
  line-height: 1.05;
  max-width: 820px;
  position: relative; z-index: 1;
}
.svc-hero p.lead {
  font-size: 19px; color: rgba(255,255,255,.8);
  max-width: 680px; margin: 0 0 32px;
  position: relative; z-index: 1;
}

/* ───────────── Service body ───────────── */
.svc-body {
  max-width: 820px;
  margin: 0 auto;
}
.svc-body h2 {
  font-size: 28px; font-weight: 800;
  margin: 0 0 16px; color: var(--ink);
  letter-spacing: -.02em;
}
.svc-body h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; color: var(--ink); }
.svc-body p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.svc-body ul.checks { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 12px; }
.svc-body ul.checks li {
  display: flex; gap: 12px; align-items: flex-start;
  padding-left: 0;
}
.svc-body ul.checks li::before {
  content: "✓";
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--orange-cream); color: var(--orange);
  font-weight: 700; display: grid; place-items: center;
  flex-shrink: 0; font-size: 13px;
}

.svc-aside {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 32px; height: max-content;
  position: sticky; top: 100px;
}
.svc-aside h4 { font-size: 18px; font-weight: 700; margin: 0 0 14px; color: var(--ink); }
.svc-aside p { font-size: 14.5px; color: var(--muted); margin: 0 0 20px; }
.svc-aside .brand-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.svc-aside .pill {
  font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-2);
  color: var(--ink-2);
}

/* ───────────── Otros servicios ───────────── */
.related {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 40px;
}
.related-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .25s;
}
.related-card:hover { border-color: var(--orange-soft); box-shadow: var(--shadow-md); }
.related-card .num { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; }
.related-card h3 { margin: 0 0 6px; font-size: 17px; color: var(--ink); font-weight: 700; }
.related-card p { margin: 0; font-size: 13.5px; color: var(--muted); }

/* ───────────── Contacto page ───────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(28px, 4vw, 40px); margin: 16px 0 16px;
  font-weight: 800; color: var(--ink); letter-spacing: -.025em; line-height: 1.1;
}
.contact-info > p { color: var(--muted); font-size: 17px; margin: 0 0 36px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.contact-list li {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 20px;
  background: var(--bg-cream);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all .2s;
}
.contact-list li:hover { border-color: var(--orange-soft); }
.contact-list .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: #fff; color: var(--orange);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-list strong { display: block; font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 1px; }
.contact-list span { font-size: 16px; color: var(--ink); font-weight: 500; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin: 0 0 6px; font-size: 24px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.contact-form > p { color: var(--muted); margin: 0 0 28px; font-size: 14.5px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 6px; color: var(--ink);
}
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit;
  background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(30,94,58,.15);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ───────────── Footer ───────────── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.site-footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 1.2px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 5px 0; }
.site-footer a { color: rgba(255,255,255,.7); font-size: 14.5px; transition: color .2s; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 12px;
}

/* ───────────── FAQ acordeón ───────────── */
.faq-section { background: var(--bg-soft); border-top: 1px solid var(--line); }
.faq-list {
  max-width: 820px;
  display: grid; gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--orange-soft);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px; font-weight: 300;
  color: var(--orange);
  transition: transform .25s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--orange-dark); }
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-item p { padding: 0 18px 18px; font-size: 14.5px; }
}

/* ───────────── WhatsApp flotante ───────────── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 4px 12px rgba(0,0,0,.15);
  z-index: 100;
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37,211,102,.55), 0 4px 14px rgba(0,0,0,.18);
  color: #fff;
}
.wa-float::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 640px) {
  .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
}

/* ───────────── Responsive ───────────── */
@media (max-width: 1000px) {
  .hero { min-height: 560px; }
  .hero-floats { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-numbered { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-banner { grid-template-columns: 1fr; padding: 44px; text-align: center; }
  .cta-banner .cta-row { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  /* Header compacto en mobile */
  .nav { height: 72px; }
  .brand-logo { height: 44px; }
  .topbar { font-size: 11.5px; }
  .topbar .container {
    flex-direction: column; gap: 4px;
    padding-top: 8px; padding-bottom: 8px;
  }
  .topbar .info { gap: 14px; }
  .topbar .info svg { display: none; }

  section { padding: 56px 0; }
  .hero { padding: 0; min-height: 520px; }
  .hero .container { padding-top: 64px; padding-bottom: 64px; }
  .hero h1 { font-size: 34px; line-height: 1.1; }
  .hero .lead { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .services-numbered { grid-template-columns: 1fr; }
  .svc-card { padding: 28px 24px; }
  .related-grid { grid-template-columns: 1fr; }

  /* Menu hamburguesa */
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; left: 0; right: 0; top: 72px;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 20px 20px; align-items: stretch;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
    max-height: calc(100vh - 72px); overflow-y: auto;
    box-shadow: 0 12px 24px -8px rgba(0,0,0,.1);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links > a,
  .nav-links > .has-dropdown > .dropdown-trigger {
    padding: 16px 4px; border-bottom: 1px solid var(--line);
    width: 100%; justify-content: space-between;
    font-size: 16px;
  }
  .nav-links > .btn {
    margin-top: 14px; padding: 14px 22px;
    justify-content: center; text-align: center;
    border-bottom: 0;
  }

  /* Dropdown en mobile — inline, full width, sin posición absoluta */
  .has-dropdown {
    width: 100% !important;
    position: relative !important;
    display: block !important;
  }
  .has-dropdown::after,
  .has-dropdown::before { display: none !important; }
  .has-dropdown > .dropdown-trigger {
    width: 100% !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .nav-links .dropdown-menu,
  .has-dropdown .dropdown-menu,
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    position: static !important;
    top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
    inset: auto !important;
    transform: none !important;
    opacity: 1 !important; visibility: visible !important;
    pointer-events: auto !important;
    min-width: 0 !important; width: 100% !important;
    max-width: 100% !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 4px 0 8px 12px !important;
    margin: 0 !important;
    background: var(--bg-cream) !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    display: none !important;
    box-sizing: border-box !important;
  }
  .nav-links .dropdown-menu::before { display: none !important; }
  .has-dropdown.open .dropdown-menu,
  .nav-links .has-dropdown.open .dropdown-menu {
    display: block !important;
  }
  .dropdown-menu a {
    padding: 12px 8px !important;
    font-size: 15px !important;
    white-space: normal !important;
    width: 100% !important;
    text-align: left !important;
    display: block !important;
  }

  /* Botón WhatsApp más chico */
  .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }

  /* Otros ajustes mobile */
  .cta-banner { padding: 28px; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-hero { padding: 64px 0 64px; }
  .svc-hero h1 { font-size: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { padding: 32px; }
  .contact-form { padding: 28px; }
  .svc-aside { padding: 24px; }
}
