/* ══════════════════════════════════════════════════════
   REYMONT MONTACARGAS — Hoja de estilos
   Sistema: tipografía IBM Plex (Sans + Mono), paleta
   verde/ámbar heredada pero atenuada para un tono
   corporativo. Totalmente responsivo, mobile-first en
   breakpoints clave.
══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta — misma familia de color, tono más sobrio */
  --forest-deep: #123319;   /* verde muy oscuro, header/footer/paneles */
  --forest:      #1B5E20;   /* verde marca */
  --leaf:        #2E7D32;   /* verde medio, acentos */
  --amber:       #C9821E;   /* ámbar atenuado, usado en textos/acentos */
  --amber-soft:  #E7A33F;
  --nav-orange:  #F0972A;   /* naranja de marca para la navbar */
  --lime:        #8BC63F;  /* verde limón, acento decorativo */
  --whatsapp:    #25D366;
  --rust:        #A63A2C;   /* rojo atenuado */
  --ink:         #1A1F1C;   /* texto principal */
  --muted:       #5B665F;   /* texto secundario, verdoso-gris */
  --paper:       #FAFAF8;   /* fondo cálido en vez de blanco puro */
  --white:       #FFFFFF;
  --line:        #E2E0D6;   /* líneas divisorias */
  --line-dark:   rgba(255,255,255,.12);

  --font-display: 'IBM Plex Sans', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --container: 1180px;
}

html { scroll-behavior: smooth; }

.brand-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--nav-orange));
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-size: 15.5px;
  line-height: 1.5;
}

img { max-width: 100%; }

a { color: inherit; }

section { padding: 5.5rem 5vw; }

.section-inner { max-width: var(--container); margin: 0 auto; }

/* ══════════════════════════════════
   UTILIDADES TIPOGRÁFICAS
══════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 500;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--amber);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--amber-soft); }

.sec-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -.2px;
}
.sec-h2 .accent { color: var(--leaf); }
.sec-h2 .amber  { color: var(--amber); }
.sec-h2.on-dark { color: var(--white); }

.sec-lead {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: .9rem;
}

/* ══════════════════════════════════
   TIRA DE SERVICIOS (MARQUEE)
══════════════════════════════════ */
.ticker {
  background: var(--forest-deep);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
  padding: 9px 0;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .3px;
  color: rgba(255,255,255,.8);
  padding: 0 1.6rem;
  white-space: nowrap;
}
.ticker-item .ticker-icon { font-size: 13px; }
.ticker-dot {
  color: var(--amber-soft);
  padding: 0 .2rem;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ══════════════════════════════════
   NAV PRINCIPAL
══════════════════════════════════ */
nav#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--nav-orange);
  border-bottom: 1px solid rgba(0,0,0,.08);
  height: 76px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo-box {
  background: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.brand-logo-box img {
  height: 48px;
  width: auto;
  display: block;
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1.15;
}
.brand-text strong {
  font-family: var(--font-display); font-weight: 700; font-size: 16.5px;
  letter-spacing: .3px; color: #fff;
}
.brand-text span {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.2px;
  color: rgba(255,255,255,.75); text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.1rem;
  flex: 1;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .2px;
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--forest-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0;
}
.nav-whatsapp {
  display: flex; align-items: center; gap: 7px;
  text-decoration: none; color: #fff;
  font-family: var(--font-mono); font-size: 13px;
  white-space: nowrap;
}
.nav-whatsapp svg { flex-shrink: 0; }

.btn-nav {
  background: var(--forest);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3px;
  border: none; border-radius: 4px;
  padding: 11px 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.btn-nav:hover { background: var(--forest-deep); }

/* Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none; border: 1px solid rgba(255,255,255,.5);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 18px; height: 2px; margin: 0 auto;
  background: #fff; transition: transform .25s, opacity .25s;
}
.mob-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-open .hamburger span:nth-child(2) { opacity: 0; }
.mob-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Panel lateral móvil */
.nav-drawer-overlay {
  position: fixed; inset: 0; background: rgba(10,15,12,.5);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
  z-index: 1000;
}
.mob-open .nav-drawer-overlay { opacity: 1; pointer-events: auto; }

@media (max-width: 960px) {
  .nav-links, .nav-whatsapp, .btn-nav { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-inner { gap: 1rem; }

  .nav-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    background: var(--forest-deep);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex; flex-direction: column;
    padding: 1.4rem 1.6rem 2rem;
  }
  .mob-open .nav-drawer { transform: translateX(0); }

  .drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2rem;
  }
  .drawer-close {
    width: 36px; height: 36px; border-radius: 4px;
    border: 1px solid var(--line-dark); background: none;
    color: #fff; font-size: 18px; cursor: pointer;
  }
  .drawer-links {
    list-style: none; display: flex; flex-direction: column; gap: .3rem;
  }
  .drawer-links a {
    display: block; text-decoration: none; color: #fff;
    font-family: var(--font-display); font-weight: 500; font-size: 16px;
    padding: .85rem 0; border-bottom: 1px solid var(--line-dark);
  }
  .drawer-foot { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: .9rem; }
  .drawer-whatsapp {
    display: flex; align-items: center; gap: 8px; text-decoration: none;
    color: var(--amber-soft); font-family: var(--font-mono); font-size: 13.5px;
  }
  .drawer-whatsapp svg { flex-shrink: 0; color: var(--whatsapp); }
  .drawer-foot .btn-nav { text-align: center; }
}
@media (min-width: 961px) {
  .nav-drawer, .nav-drawer-overlay { display: none; }
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#inicio {
  padding: 4.5rem 5vw 5rem;
  background: var(--white);
}
.hero-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem; align-items: center;
}
.hero-rule { width: 46px; height: 2px; background: var(--amber); margin-bottom: 1.3rem; }
.hero-h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.15;
  letter-spacing: -.5px; color: var(--ink);
}
.hero-h1 .accent { color: var(--rust); }
.hero-h1 .accent2 { color: var(--leaf); }
.hero-sub {
  margin: 1.3rem 0 1.6rem; font-size: 15px; color: var(--muted);
  line-height: 1.7; max-width: 460px;
}
.hero-checks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 1.5rem;
  margin-bottom: 2rem;
}
.check-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ink); }
.check-icon { width: 17px; height: 17px; flex-shrink: 0; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--forest); color: #fff;
  font-family: var(--font-display); font-weight: 600;
  font-size: 13.5px; letter-spacing: .3px;
  border: none; border-radius: 4px; padding: 14px 24px;
  cursor: pointer; text-decoration: none; transition: background .2s;
}
.btn-primary:hover { background: var(--forest-deep); }
.btn-wa {
  background: var(--white); color: var(--ink);
  border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600;
  font-size: 13.5px; letter-spacing: .3px;
  border-radius: 4px; padding: 14px 22px;
  cursor: pointer; text-decoration: none;
  display: flex; align-items: center; gap: 9px; transition: border-color .2s, background .2s;
}
.btn-wa:hover { border-color: var(--leaf); background: var(--paper); }
.btn-wa svg { flex-shrink: 0; color: #128C4A; }

.hero-img-box { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line);
}
.hero-img-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; z-index: 2;
  width: 26px; height: 26px;
  border-top: 3px solid var(--lime); border-left: 3px solid var(--lime);
}
.hero-img-wrap::after {
  content: ''; position: absolute; bottom: 0; right: 0; z-index: 2;
  width: 26px; height: 26px;
  border-bottom: 3px solid var(--nav-orange); border-right: 3px solid var(--nav-orange);
}
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hero-stats {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(18,51,25,.88);
  border-radius: 5px; padding: 1rem 1.2rem;
  display: flex; justify-content: space-around;
}
.stat { text-align: center; }
.stat .num { font-family: var(--font-mono); font-weight: 600; font-size: 21px; color: var(--amber-soft); display: block; }
.stat .lbl { font-size: 10px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; display: block; }

/* ══════════════════════════════════
   NOSOTROS
══════════════════════════════════ */
#nosotros { background: var(--white); border-top: 1px solid var(--line); }
.nos-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.nos-p { font-size: 14.5px; color: var(--muted); line-height: 1.75; margin-bottom: .9rem; }
.nos-values { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1.3rem; }
.val-row { display: flex; gap: 1rem; align-items: flex-start; }
.val-icon {
  width: 38px; height: 38px; border-radius: 4px;
  border: 1px solid var(--line); border-left: 3px solid var(--lime); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.val-row:nth-child(2) .val-icon { border-left-color: var(--nav-orange); }
.val-row:nth-child(3) .val-icon { border-left-color: var(--lime); }
.val-row h4 { font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.val-row p  { font-size: 13px; color: var(--muted); line-height: 1.55; }
.nos-right  { position: relative; }
.nos-img    { width: 100%; height: 420px; object-fit: cover; border-radius: 6px; display: block; border: 1px solid var(--line); }
.nos-right::before {
  content: ''; position: absolute; top: 0; left: 0; z-index: 2;
  width: 26px; height: 26px;
  border-top: 3px solid var(--nav-orange); border-left: 3px solid var(--nav-orange);
}
.nos-right::after {
  content: ''; position: absolute; bottom: 0; right: 0; z-index: 2;
  width: 26px; height: 26px;
  border-bottom: 3px solid var(--lime); border-right: 3px solid var(--lime);
}
.nos-badge  {
  position: absolute; bottom: 1.3rem; left: 1.3rem;
  background: var(--forest-deep); color: #fff;
  border-radius: 5px; padding: 1rem 1.4rem;
}
.nos-badge .num { font-family: var(--font-mono); font-weight: 600; font-size: 30px; color: var(--amber-soft); display: block; line-height: 1; }
.nos-badge .lbl { font-size: 11.5px; color: rgba(255,255,255,.7); margin-top: 3px; display: block; }

/* ══════════════════════════════════
   SERVICIOS
══════════════════════════════════ */
#servicios { background: var(--paper); border-top: 1px solid var(--line); }
.srv-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.srv-header .sec-lead { max-width: 100%; margin-left: auto; margin-right: auto; }
.srv-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.srv-card {
  background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.srv-card::before {
  content: ''; position: absolute; top: 0; left: 0; z-index: 3;
  width: 16px; height: 16px;
  border-top: 2px solid var(--lime); border-left: 2px solid var(--lime);
}
.srv-card::after {
  content: ''; position: absolute; bottom: 0; right: 0; z-index: 3;
  width: 16px; height: 16px;
  border-bottom: 2px solid var(--nav-orange); border-right: 2px solid var(--nav-orange);
}
.srv-card:hover { box-shadow: 0 12px 28px rgba(18,51,25,.1); transform: translateY(-3px); }

.car-wrap { position: relative; height: 190px; overflow: hidden; border-bottom: 1px solid var(--line); }
.car-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.car-slide.active { opacity: 1; }
.car-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.car-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 2;
}
.car-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5); transition: background .3s;
}
.car-dot.on { background: #fff; }

.card-body { padding: 1.4rem 1.4rem 1.7rem; }
.card-icon {
  width: 36px; height: 36px; border-radius: 4px;
  border: 1px solid var(--line); background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: .8rem;
}
.card-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: .4rem; }
.card-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 1.1rem; }
.card-link  {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; letter-spacing: .5px; text-transform: uppercase;
  color: var(--leaf); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px; transition: gap .2s;
}
.card-link:hover { gap: 9px; }

/* ══════════════════════════════════
   POR QUÉ
══════════════════════════════════ */
#porque { background: var(--forest-deep); }
.pq-header { text-align: center; margin-bottom: 3rem; max-width: var(--container); margin-left: auto; margin-right: auto; }
.pq-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.pq-card {
  background: rgba(255,255,255,.04); border-radius: 6px;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(255,255,255,.09);
  border-top: 3px solid var(--lime);
}
.pq-card:nth-child(2n) { border-top-color: var(--nav-orange); }
.pq-icon {
  width: 40px; height: 40px; border-radius: 4px;
  background: rgba(231,163,63,.14); border: 1px solid rgba(231,163,63,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 1.1rem;
}
.pq-num  { font-family: var(--font-mono); font-weight: 600; font-size: 28px; color: var(--amber-soft); display: block; line-height: 1; }
.pq-sub  { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: 1.2px; text-transform: uppercase; margin: .5rem 0 .9rem; display: block; }
.pq-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: #fff; margin-bottom: .4rem; }
.pq-card p  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ══════════════════════════════════
   CLIENTES
══════════════════════════════════ */
#clientes { background: var(--white); border-top: 1px solid var(--line); text-align: center; }
.cli-head { max-width: var(--container); margin: 0 auto; }
.cli-grid {
  max-width: var(--container); margin: 2.6rem auto 1.6rem;
  display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap;
}
.cli-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px; padding: 1.9rem 1.7rem; min-width: 180px;
}
.cli-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 14px; height: 14px;
  border-top: 2px solid var(--lime); border-left: 2px solid var(--lime);
}
.cli-card::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 14px; height: 14px;
  border-bottom: 2px solid var(--nav-orange); border-right: 2px solid var(--nav-orange);
}
.cli-init {
  width: 48px; height: 48px; border-radius: 4px; border: 1px solid var(--line);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--forest);
}
.cli-name   { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; margin-bottom: 3px; }
.cli-sector { font-size: 11.5px; color: var(--muted); font-family: var(--font-mono); letter-spacing: .3px; }
.cli-desc   { max-width: 520px; margin: 0 auto; font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════
   GALERÍA
══════════════════════════════════ */
#galeria { background: var(--paper); border-top: 1px solid var(--line); }
.gal-header { text-align: center; margin-bottom: 2.5rem; max-width: var(--container); margin-left: auto; margin-right: auto; }
.gal-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
}
.gal-item { overflow: hidden; border-radius: 5px; border: 1px solid var(--line); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gal-item:hover img { transform: scale(1.04); }
.gal-item:nth-child(1) { grid-row: 1 / 3; }

/* ══════════════════════════════════
   CONTACTO
══════════════════════════════════ */

#contacto { background: var(--forest-deep); position: relative; overflow: hidden; }
.con-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
  position: relative; z-index: 1;
}
.con-h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 3vw, 38px); letter-spacing: -.3px;
  color: #fff; line-height: 1.2; margin-bottom: .6rem;
}
.con-h2 span { color: var(--amber-soft); }
.con-by { font-size: 13.5px; color: rgba(255,255,255,.65); margin-bottom: 2rem; }
.con-by strong { color: #fff; }
.con-info { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.con-row { display: flex; align-items: center; gap: .9rem; }
.con-ico {
  width: 34px; height: 34px; border-radius: 4px; flex-shrink: 0;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.con-lbl { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; }
.con-val { font-size: 13.5px; font-weight: 500; color: #fff; }
.con-val a { color: var(--amber-soft); text-decoration: none; }
.btn-wa-big {
  width: 100%; background: #128C4A; color: #fff;
  font-family: var(--font-display); font-weight: 600;
  font-size: 14.5px; letter-spacing: .3px;
  border: none; border-radius: 5px; padding: 14px;
  cursor: pointer; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: background .2s;
}
.btn-wa-big:hover { background: #0f7a3f; }

.con-form {
  background: #fff; border-radius: 8px; padding: 2.3rem;
  position: relative;
}
.con-form::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 20px; height: 20px;
  border-top: 3px solid var(--lime); border-left: 3px solid var(--lime);
  border-radius: 3px 0 0 0;
}
.con-form::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 20px; height: 20px;
  border-bottom: 3px solid var(--nav-orange); border-right: 3px solid var(--nav-orange);
  border-radius: 0 0 3px 0;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: .95rem; }
.f-group label { font-size: 12px; font-weight: 600; color: var(--ink); }
.f-group label span { color: var(--rust); }
.f-group input,
.f-group textarea {
  border: 1px solid var(--line); border-radius: 4px;
  padding: 11px 13px; font-size: 14px;
  font-family: var(--font-body); color: var(--ink);
  outline: none; transition: border-color .2s;
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: #b7b7ae; }
.f-group input:focus,
.f-group textarea:focus { border-color: var(--leaf); }
.f-group textarea { resize: vertical; min-height: 96px; }
.btn-send {
  width: 100%; background: var(--forest); color: #fff;
  font-family: var(--font-display); font-weight: 600;
  font-size: 14.5px; letter-spacing: .3px;
  border: none; border-radius: 5px; padding: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s;
}
.btn-send:hover { background: #143d16; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: #0F1A12; color: rgba(255,255,255,.55);
  padding: 1.6rem 5vw; text-align: center;
  font-size: 12.5px; font-family: var(--font-mono);
}
footer span { color: var(--amber-soft); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 960px) {
  section { padding: 3.5rem 6vw; }
  .hero-grid, .nos-grid { grid-template-columns: 1fr; }
  #inicio { padding-top: 3rem; }
  .hero-img-wrap img { height: 280px; }
  .nos-img { height: 300px; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .pq-grid { grid-template-columns: 1fr 1fr; }
  .con-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  section { padding: 3rem 5vw; }
  .ticker-item { font-size: 11px; padding: 0 1.1rem; }
  .hero-checks { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { justify-content: center; }
  .hero-stats { flex-direction: column; gap: .8rem; }
  .srv-grid { grid-template-columns: 1fr; }
  .pq-grid { grid-template-columns: 1fr; }
  .cli-grid { gap: 1rem; }
  .cli-card { min-width: 140px; flex: 1 1 140px; padding: 1.4rem 1rem; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 150px 150px 150px; }
  .gal-item:nth-child(1) { grid-row: span 1; }
  .f-row { grid-template-columns: 1fr; }
  .con-form { padding: 1.6rem; }
  .nav-inner { padding: 0 5vw; }
  .brand-text span { display: none; }
}