/* =====================================================================
   NEGRÓN DIGITAL (NEGRÓN REPAIR) — bespoke static site
   Design: "banco de trabajo" — a precision electronics bench, not a poster.
   Two motifs are lifted straight from their own promo graphics: the
   halftone dot corners, and the thin orange hairline outline around
   rounded boxes (present in all four of their arts). Deliberately built
   on those instead of the flat black/orange billboard look of the sibling
   demos (LAR, JRO), which share a similar palette but a different brand.
   Palette extracted by code (PIL) from logo.jpg:
     black #000000, white #fdfdfd, brand orange #e98a3f.
   Type: Chakra Petch (display — squared, technical, reads "electronics")
   + IBM Plex Sans (body). Unused by any sibling demo.
   NOTE: every line of copy is real — from Negrón Digital's own promo
   graphics: the hook "¿Pantalla rota? No compres otro teléfono... ¡Repara
   el tuyo!", the tagline "Tecnología que vuelve a la vida", the repair
   list, the brands (Apple/Samsung/Motorola/Xiaomi/Huawei), the trust block
   (Diagnóstico Preciso / Servicio Rápido / Garantía en Todos los
   Servicios), "Piezas de calidad · Resultados garantizados", the badges
   Rápido/Seguro/Confiable, the real 5 battery tips, the secondary
   "presencia digital" service (Google Maps / Meta / Artes / Presencia
   Digital Completa) and the hashtag #TuNegocioEnBuenasManos. The imagery
   is their own: the board-repair photo and their illustrated technician.
   Nothing invented — no prices, no hours, no address.
   ===================================================================== */

:root {
  --negro:    #000000;
  --negro-2:  #08080a;
  --panel:    #0f0f12;
  --panel-2:  #16161a;
  --panel-3:  #1e1e24;
  --linea:    rgba(255,255,255,.09);
  --linea-2:  rgba(255,255,255,.05);

  --naranja:      #e98a3f;
  --naranja-hot:  #f7963f;
  --naranja-osc:  #b96426;
  --naranja-tint: rgba(233,138,63,.12);
  --naranja-line: rgba(233,138,63,.42);

  --blanco:  #fdfdfd;
  --humo:    #b4b2b0;
  --humo-2:  #85837f;

  --wa:      #25d366;
  --wa-osc:  #14a94b;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow:      0 30px 70px -26px rgba(0,0,0,.9);
  --shadow-orng: 0 18px 40px -16px rgba(233,138,63,.45);
  --shadow-wa:   0 18px 40px -16px rgba(37,211,102,.42);

  --wrap: 1180px;
  --sp-section: clamp(72px, 9.5vw, 132px);
  --ease: cubic-bezier(.22,.61,.36,1);

  /* the halftone dot motif from their graphics */
  --dots: radial-gradient(circle at center, rgba(233,138,63,.55) 1.1px, transparent 1.2px);
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--humo);
  background: var(--negro);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.08; color: var(--blanco); font-family: "Chakra Petch", sans-serif; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--naranja); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- shared ---------- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.eyebrow {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--naranja);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  max-width: 100%;
}
.eyebrow svg { width: 17px; height: 17px; flex: none; }
.eyebrow--alt { color: var(--humo); }
.eyebrow--alt svg { color: var(--naranja); }

.section-head { max-width: 780px; display: grid; gap: 16px; margin-bottom: clamp(36px, 4.5vw, 58px); }
.section-head--center { margin-inline: auto; text-align: center; justify-items: center; }
.section-head h2, .taller__body h2, .neg__head h2, .cta h2 {
  font-size: clamp(1.95rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -.01em;
}
h2 em, h1 em { font-style: normal; color: var(--naranja); }
.lead { font-size: 1.06rem; }

/* buttons */
.btn {
  --btn-bg: linear-gradient(180deg, var(--naranja-hot), var(--naranja-osc));
  --btn-fg: #14100c;
  display: inline-flex; align-items: center; gap: .55em;
  padding: 14px 24px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-orng); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }

.btn--wa { --btn-bg: linear-gradient(180deg, var(--wa), var(--wa-osc)); --btn-fg: #04240f; }
.btn--wa:hover { box-shadow: var(--shadow-wa); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--blanco);
  border-color: var(--naranja-line);
}
.btn--ghost svg { color: var(--naranja); }
.btn--ghost:hover { background: var(--naranja-tint); box-shadow: none; }

/* reveal */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linea);
}
.nav__inner { display: flex; align-items: center; gap: 20px; min-height: 74px; }
.brand { flex: none; }
.brand img { height: 48px; width: auto; }
.nav__links { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav__links > a {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600; font-size: .93rem; letter-spacing: .02em;
  color: var(--humo);
  transition: color .18s var(--ease);
}
.nav__links > a:hover { color: var(--naranja); }
.nav__menu-cta { display: none; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: "Chakra Petch", sans-serif; font-weight: 600; font-size: .93rem;
  color: var(--blanco);
}
.nav__phone svg { width: 17px; height: 17px; color: var(--naranja); }
.nav__phone:hover { color: var(--naranja); }
.nav__toggle {
  display: none;
  background: transparent; border: 1px solid var(--linea); border-radius: var(--r-sm);
  color: var(--blanco); padding: 8px; cursor: pointer;
}
.nav__toggle svg { width: 22px; height: 22px; display: block; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(52px, 7vw, 96px) 0 clamp(60px, 7vw, 100px); }
.hero__dots {
  position: absolute; inset: 0;
  background-image: var(--dots);
  background-size: 13px 13px;
  -webkit-mask-image: radial-gradient(120% 90% at 100% 0%, #000 0%, transparent 62%);
  mask-image: radial-gradient(120% 90% at 100% 0%, #000 0%, transparent 62%);
  opacity: .5;
  pointer-events: none;
}
.hero__glow {
  position: absolute; top: -22%; right: -8%;
  width: min(760px, 78vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(233,138,63,.24), transparent 62%);
  filter: blur(14px);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px, 4.6vw, 66px); align-items: center; }
.hero__lead { display: grid; gap: 22px; justify-items: start; }
.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  font-weight: 700;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.hero__sub { font-size: 1.1rem; max-width: 54ch; }
.hero__sub b { color: var(--blanco); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 9px 15px;
  border: 1px solid var(--naranja-line);
  border-radius: var(--r-pill);
  background: rgba(233,138,63,.06);
  font-size: .87rem; font-weight: 500; color: var(--blanco);
}
.hero__chips svg { width: 16px; height: 16px; color: var(--naranja); flex: none; }

.hero__aside { display: grid; gap: 18px; justify-items: center; }
.photo-card {
  position: relative; margin: 0;
  border: 1px solid var(--naranja-line);
  border-radius: var(--r-lg);
  background: var(--panel);
  padding: 12px;
  box-shadow: var(--shadow);
}
.photo-card img { width: 100%; border-radius: var(--r-md); }
.photo-card__badge {
  position: absolute; top: -13px; left: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: .45em;
  padding: 6px 13px;
  background: var(--naranja); color: #14100c;
  border-radius: var(--r-pill);
  font-family: "Chakra Petch", sans-serif; font-weight: 700; font-size: .74rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.photo-card__badge svg { width: 14px; height: 14px; }
.photo-card figcaption {
  padding: 13px 6px 3px;
  font-size: .84rem; line-height: 1.5; color: var(--humo-2); text-align: center;
}
.hero__tag {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600; font-size: .95rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--humo-2);
}
.hero__tag b { color: var(--naranja); font-weight: 700; }

/* ---------- TRUST STRIP ---------- */
.trust { border-block: 1px solid var(--linea); background: var(--negro-2); }
.trust__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.6vw, 38px);
  padding: clamp(30px, 3.6vw, 46px) 0;
}
.trust__item { display: flex; gap: 13px; align-items: flex-start; }
.trust__item > svg { width: 24px; height: 24px; color: var(--naranja); flex: none; margin-top: 3px; }
.trust__item b {
  display: block; color: var(--blanco);
  font-family: "Chakra Petch", sans-serif; font-weight: 700; font-size: 1.02rem;
  letter-spacing: .01em;
}
.trust__item span { font-size: .88rem; line-height: 1.55; }

/* ---------- SERVICIOS ---------- */
.serv { padding: var(--sp-section) 0; }
.serv__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.serv-card {
  position: relative;
  padding: 30px 26px 32px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--linea);
  border-radius: var(--r-lg);
  display: grid; gap: 12px; align-content: start;
  transition: border-color .22s var(--ease), transform .22s var(--ease), background .22s var(--ease);
}
.serv-card:hover { border-color: var(--naranja-line); transform: translateY(-4px); }
.serv-card__ic {
  width: 52px; height: 52px; display: grid; place-items: center;
  border: 1px solid var(--naranja-line);
  border-radius: var(--r-md);
  background: var(--naranja-tint);
  color: var(--naranja);
  margin-bottom: 4px;
}
.serv-card__ic svg { width: 26px; height: 26px; }
.serv-card h3 { font-size: 1.24rem; font-weight: 700; }
.serv-card p { font-size: .95rem; }
.serv-card--more { background: linear-gradient(180deg, rgba(233,138,63,.1), var(--panel)); border-color: var(--naranja-line); }
.serv-card__link {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: "Chakra Petch", sans-serif; font-weight: 700; font-size: .92rem;
  color: var(--naranja); margin-top: 2px;
}
.serv-card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.serv-card__link:hover svg { transform: translateX(4px); }

/* ---------- MARCAS ---------- */
.marcas { border-block: 1px solid var(--linea); background: var(--negro-2); }
.marcas__inner { padding: clamp(28px, 3.4vw, 42px) 0; display: grid; gap: 20px; justify-items: center; }
.marcas__label {
  font-family: "Chakra Petch", sans-serif; font-weight: 600; font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--naranja);
  text-align: center;
}
.marcas__list { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 4vw, 54px); }
.marcas__list li {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600; font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: .04em;
  color: var(--humo);
  transition: color .2s var(--ease);
}
.marcas__list li:hover { color: var(--blanco); }

/* ---------- TALLER ---------- */
.taller { padding: var(--sp-section) 0; overflow: hidden; }
.taller__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.taller__media { position: relative; justify-self: center; }
.taller__media img {
  position: relative; z-index: 1;
  width: min(360px, 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--linea);
}
.taller__glow {
  position: absolute; inset: -14% -18%;
  background: radial-gradient(circle at 50% 55%, rgba(233,138,63,.28), transparent 64%);
  filter: blur(10px);
  z-index: 0;
}
.taller__body { display: grid; gap: 20px; justify-items: start; }
.taller__txt b { color: var(--blanco); font-weight: 600; }
.reasons { display: grid; gap: 14px; width: 100%; }
.reasons li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--linea);
  border-radius: var(--r-md);
  background: var(--panel);
}
.reasons__ic {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--naranja-tint);
  border: 1px solid var(--naranja-line);
  color: var(--naranja);
}
.reasons__ic svg { width: 20px; height: 20px; }
.reasons b {
  display: block; color: var(--blanco);
  font-family: "Chakra Petch", sans-serif; font-weight: 700; font-size: 1.02rem;
}
.reasons span { font-size: .9rem; line-height: 1.55; }

/* ---------- TIPS ---------- */
.tips { padding: var(--sp-section) 0; background: var(--negro-2); border-block: 1px solid var(--linea); }
.tips__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tip {
  padding: 24px 20px 26px;
  border: 1px solid var(--linea);
  border-radius: var(--r-md);
  background: var(--panel);
  display: grid; gap: 12px; align-content: start;
  transition: border-color .22s var(--ease);
}
.tip:hover { border-color: var(--naranja-line); }
.tip__n {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--naranja-line); border-radius: var(--r-pill);
  color: var(--naranja);
  font-family: "Chakra Petch", sans-serif; font-weight: 700; font-size: 1rem;
}
.tip p { font-size: .92rem; line-height: 1.55; }
.tip b { color: var(--blanco); font-weight: 600; }

.tips__note {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 22px;
  padding: 26px 28px;
  border: 1px solid var(--naranja-line);
  border-radius: var(--r-lg);
  background: linear-gradient(100deg, rgba(233,138,63,.1), transparent 70%);
}
.tips__note p { max-width: 74ch; font-size: .98rem; }
.tips__note b { color: var(--blanco); font-weight: 600; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; padding: var(--sp-section) 0; text-align: center; }
.cta__dots {
  position: absolute; inset: 0;
  background-image: var(--dots);
  background-size: 13px 13px;
  -webkit-mask-image: radial-gradient(90% 70% at 50% 50%, transparent 34%, #000 100%);
  mask-image: radial-gradient(90% 70% at 50% 50%, transparent 34%, #000 100%);
  opacity: .42;
  pointer-events: none;
}
.cta__inner { position: relative; display: grid; gap: 20px; justify-items: center; }
.cta__sub { max-width: 62ch; font-size: 1.06rem; }
.cta__phone a {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: "Chakra Petch", sans-serif; font-weight: 700;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  letter-spacing: .01em;
  color: var(--blanco);
  transition: color .2s var(--ease);
}
.cta__phone svg { width: .82em; height: .82em; color: var(--wa); }
.cta__phone a:hover { color: var(--naranja); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta__chips { display: flex; flex-wrap: wrap; gap: 26px; justify-content: center; margin-top: 6px; }
.cta__chips li {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: "Chakra Petch", sans-serif; font-weight: 600; font-size: .88rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--humo);
}
.cta__chips svg { width: 17px; height: 17px; color: var(--naranja); }

/* ---------- PRESENCIA DIGITAL (secondary) ---------- */
.neg { padding: var(--sp-section) 0; background: var(--negro-2); border-top: 1px solid var(--linea); }
.neg__head { max-width: 720px; display: grid; gap: 14px; margin-bottom: 34px; }
.neg__head h2 { font-size: clamp(1.5rem, 2.7vw, 2.1rem); }
.neg__sub { font-size: .99rem; max-width: 62ch; }
.neg__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.neg-card {
  padding: 22px 20px 24px;
  border: 1px solid var(--linea);
  border-radius: var(--r-md);
  background: var(--panel);
  display: grid; gap: 9px; align-content: start;
  transition: border-color .22s var(--ease);
}
.neg-card:hover { border-color: var(--naranja-line); }
.neg-card__ic { color: var(--naranja); }
.neg-card__ic svg { width: 24px; height: 24px; }
.neg-card h3 { font-size: 1.02rem; font-weight: 600; }
.neg-card p { font-size: .88rem; line-height: 1.55; }

.neg__foot {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.neg__promise { display: flex; flex-wrap: wrap; gap: 18px; }
.neg__promise li {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .92rem; font-weight: 500; color: var(--blanco);
}
.neg__promise svg { width: 15px; height: 15px; color: var(--naranja); flex: none; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--linea); padding: clamp(48px, 6vw, 72px) 0 30px; background: var(--negro); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(28px, 4vw, 60px); }
.brand--footer img { height: 48px; }
.footer__brand { display: grid; gap: 14px; justify-items: start; }
.footer__brand p { font-size: .92rem; max-width: 46ch; }
.footer__tag {
  font-family: "Chakra Petch", sans-serif; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--naranja);
  font-size: .82rem;
}
.footer h4 {
  font-size: .84rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blanco); margin-bottom: 16px; font-weight: 600;
}
.footer__list { display: grid; gap: 10px; }
.footer__list a, .footer__plain {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .93rem; color: var(--humo);
  transition: color .18s var(--ease);
}
.footer__list a:hover { color: var(--naranja); }
.footer__contact svg, .footer__plain svg { width: 17px; height: 17px; color: var(--naranja); flex: none; }
.footer__bottom {
  margin-top: clamp(34px, 4vw, 52px); padding-top: 22px;
  border-top: 1px solid var(--linea-2);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .82rem; color: var(--humo-2);
}
.footer__hash {
  font-family: "Chakra Petch", sans-serif; font-weight: 600;
  letter-spacing: .06em; color: var(--naranja);
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: .5em;
  padding: 13px 20px;
  background: linear-gradient(180deg, var(--wa), var(--wa-osc));
  color: #04240f;
  border-radius: var(--r-pill);
  font-family: "Chakra Petch", sans-serif; font-weight: 700; font-size: .93rem;
  box-shadow: var(--shadow-wa);
  transition: transform .2s var(--ease);
}
.wa-fab svg { width: 21px; height: 21px; }
.wa-fab:hover { transform: translateY(-2px); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1040px) {
  .serv__grid { grid-template-columns: repeat(2, 1fr); }
  .neg__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .tips__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--negro-2);
    border-bottom: 1px solid var(--linea);
    padding: 8px 20px 18px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a { padding: 13px 2px; border-bottom: 1px solid var(--linea-2); }
  .nav__menu-cta {
    display: inline-flex; align-items: center; gap: .5em;
    margin-top: 14px; padding: 13px 18px !important;
    background: linear-gradient(180deg, var(--wa), var(--wa-osc));
    color: #04240f !important; border: 0 !important;
    border-radius: var(--r-sm);
    justify-content: center;
  }
  .nav__menu-cta svg { width: 19px; height: 19px; }
  .nav__toggle { display: block; }
  .nav__wa { display: none; }
  /* .nav__links goes absolute here, so its margin-left:auto stops pushing
     anything — the buttons need their own auto margin to stay right-aligned. */
  .nav__cta { margin-left: auto; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { order: -1; }
  .photo-card { max-width: 460px; }
  .taller__grid { grid-template-columns: 1fr; }
  .taller__media { order: -1; justify-self: stretch; }
  /* Stacked, the full-height figure ate ~700px of scroll. Reframe it as a
     landscape band — the character stays upright, the crop goes horizontal. */
  .taller__media img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
    object-position: center 6%;
  }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__phone span { display: none; }
  .serv__grid { grid-template-columns: 1fr; }
  .neg__grid { grid-template-columns: 1fr; }
  .tips__grid { grid-template-columns: repeat(2, 1fr); }
  .tips__note { flex-direction: column; align-items: flex-start; }
  .neg__foot { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn, .cta__actions .btn { flex: 1 1 100%; justify-content: center; }
  .wa-fab span { display: none; }
  .wa-fab { padding: 15px; }
}

@media (max-width: 520px) {
  .trust__inner { grid-template-columns: 1fr; }
  .tips__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta__chips { gap: 16px; }
}
