/* ==========================================================================
   Multiservicios de Lavado y Decoración
   Design tokens derived from the brand logo (teal / aqua / lime)
   ========================================================================== */

:root {
  --ink:        #12363F;
  --teal:       #1B6E85;
  --teal-dark:  #14586B;
  --aqua:       #2BBFB4;
  --lime:       #8CC63F;
  --lime-dark:  #7BB432;

  --bg:         #F7F9F8;
  --bg-soft:    #F2F8F7;
  --bg-mint:    #E7F5F2;
  --white:      #FFFFFF;

  --line:       #E2ECE9;
  --line-2:     #D7E7E3;
  --line-mint:  #C9E8E2;

  --muted:      #3E6069;
  --muted-2:    #5A7C84;
  --on-dark:    #B7CDD2;
  --on-dark-2:  #8FA9AF;

  --font-head:  'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:  'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap:       1240px;
  --radius:     16px;
  --radius-lg:  20px;

  --shadow-sm:  0 4px 14px rgba(18, 54, 63, 0.06);
  --shadow-md:  0 14px 30px rgba(18, 54, 63, 0.10);
  --shadow-lg:  0 24px 60px rgba(0, 0, 0, 0.25);
}

/* --------------------------------------------------------------- base --- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--teal); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--aqua); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

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

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 3px;
  border-radius: 4px;
}

/* .wrap owns the horizontal inset and nothing else may set it. Section
   classes are combined with .wrap on the same element (e.g. "wrap hero-grid"),
   so they must use padding-block only — a `padding` shorthand would silently
   reset the inset to 0 and push content to the screen edge. */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: 48px; }

.section { padding-block: 96px; }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--white); color: var(--ink);
  font-weight: 700; padding: 12px 18px; border-radius: 999px;
  box-shadow: var(--shadow-md); transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ------------------------------------------------------------ buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 19px; height: 19px; flex: none; }

.btn-wa {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(140, 198, 63, 0.28);
}
.btn-wa:hover { background: var(--lime-dark); color: var(--ink); }

.btn-ghost {
  background: var(--white);
  border: 1.5px solid #CFE2E0;
  color: var(--ink);
  padding: 14.5px 26px;
}
.btn-ghost:hover { border-color: var(--aqua); color: var(--ink); }

.btn-sm { font-size: 14.5px; padding: 12px 20px; }
.btn-sm svg { width: 17px; height: 17px; }

.btn-block { display: flex; width: 100%; }

/* ---------------------------------------------------------------- nav --- */

.nav-outer {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav-outer.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 14px rgba(18, 54, 63, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand:hover { color: inherit; }
.brand img { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--teal);
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  color: var(--aqua);
  line-height: 1;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink); }
.nav-links a:hover { color: var(--teal); }

/* -------------------------------------------------------------- hero --- */

.hero {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding-block: 64px 88px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-mint);
  border: 1px solid var(--line-mint);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 22px;
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); flex: none;
}
.pill span:last-child {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--teal);
  text-transform: uppercase;
}

/* Fluid type: scales smoothly between the mobile and desktop sizes so the
   ~900–1300px range doesn't end up cramped between breakpoints. */
.hero h1 {
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--teal); }

.lead {
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.stat-row {
  display: flex;
  gap: clamp(18px, 3.2vw, 40px);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
/* The three stats stay on one row at every width: the headings never break,
   and only the supporting line is allowed to wrap. */
.stat-k {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--teal);
  line-height: 1.2;
  white-space: nowrap;
}
.stat-v { font-size: 14.5px; color: var(--muted-2); line-height: 1.45; }

/* hero visual — brand-panel echoing the four icons in the logo */

.hero-visual { position: relative; }

/* The panel leads with a real work photo in a full-bleed band, then the teal
   brand body underneath. The photo keeps its own aspect so the subject stays
   legible instead of being cropped to fit the column. */
.brand-panel {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(43, 191, 180, 0.20) 0%, rgba(43, 191, 180, 0) 55%),
    linear-gradient(155deg, #1B6E85 0%, #17798C 45%, #2BBFB4 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 44px rgba(18, 54, 63, 0.18);
}
.panel-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  flex: none;
}
.panel-body {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}
.brand-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.22);
  filter: blur(2px);
}

.panel-head { position: relative; z-index: 2; }
.panel-kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.panel-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 27px;
  line-height: 1.2;
  color: var(--white);
  margin-top: 10px;
}

.panel-tiles {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.panel-tile {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 15px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.panel-tile svg { width: 26px; height: 26px; color: var(--white); }
.panel-tile span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--white);
  line-height: 1.25;
}

.panel-person {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.panel-person:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(18, 54, 63, 0.2); }
.panel-person img { height: 36px; width: auto; flex: none; }
.panel-person-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.panel-person-wa { width: 22px; height: 22px; color: #25D366; flex: none; margin-left: auto; }
.float-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.3;
}
.float-role { font-size: 13px; color: var(--muted-2); line-height: 1.35; }

/* ---------------------------------------------------------- trust bar --- */

.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-block: 26px;
}
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { width: 26px; height: 26px; color: var(--teal); flex: none; }
.trust-item strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  display: block;
  line-height: 1.3;
}
.trust-item span { font-size: 14.5px; color: var(--muted-2); line-height: 1.4; }

/* --------------------------------------------------------- section hd --- */

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 {
  font-weight: 800;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.1;
  margin: 12px 0 16px;
}
.section-head p { font-size: 18px; line-height: 1.6; color: var(--muted); }

/* ----------------------------------------------------------- services --- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.svc:hover {
  border-color: var(--aqua);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.svc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-icon svg { width: 24px; height: 24px; color: var(--white); }
.svc-icon.teal { background: var(--teal); }
.svc-icon.aqua { background: var(--aqua); }
.svc-icon.lime { background: var(--lime); }

.svc h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.svc p { font-size: 15.5px; line-height: 1.6; color: var(--muted-2); }

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.svc-tags li {
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: var(--bg-mint);
  border: 1px solid var(--line-mint);
  border-radius: 999px;
  padding: 5px 11px;
}

.svc-cta-1 { grid-column: span 1 !important; }

.svc-cta {
  grid-column: span 2;
  background: var(--teal);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.svc-cta p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
  color: var(--white);
}
.svc-cta .btn { align-self: flex-start; }

/* ------------------------------------------------------------ tapetes --- */

.wrap-tapetes { padding-block: 0 96px; }

.tapetes {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.tapetes::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(43, 191, 180, 0.16);
}
.tapetes > * { position: relative; z-index: 1; }
.tapetes .eyebrow { color: var(--lime); }
.tapetes h2 {
  font-weight: 800;
  font-size: clamp(27px, 2.5vw, 34px);
  line-height: 1.15;
  color: var(--white);
  margin: 12px 0 14px;
}
.tapetes p { font-size: 17.5px; line-height: 1.6; color: var(--on-dark); }

.tapetes-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}
.tapetes-photo img { width: 100%; height: auto; }

.tapetes-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 26px 0;
}
.tapetes-step { display: flex; align-items: flex-start; gap: 13px; }
.tapetes-step .n {
  width: 27px; height: 27px; flex: none;
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.18);
  border: 1px solid rgba(140, 198, 63, 0.5);
  color: var(--lime);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.tapetes-step span:last-child { font-size: 16px; color: #E6F0F2; line-height: 1.5; }

/* ----------------------------------------------------------- trabajos --- */

/* Trabajos and Proceso share the page background, so this section carries the
   rule that separates them. */
.trabajos { border-bottom: 1px solid var(--line); }

.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.foto {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}
.foto img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .45s ease;
}
.foto:hover img { transform: scale(1.045); }

.foto figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  background: linear-gradient(180deg, rgba(18, 54, 63, 0) 0%, rgba(18, 54, 63, 0.86) 62%);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--white);
}

.galeria-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}
.galeria-cta p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}

/* ------------------------------------------------------------ proceso --- */

/* alternating band so Lavado and Decoración read as two distinct blocks */
.band-white {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proceso { border-bottom: 1px solid var(--line); }

.pasos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: paso;
}
.paso {
  border-top: 3px solid var(--line);
  padding-top: 22px;
  transition: border-color .18s ease;
}
.paso:hover { border-top-color: var(--aqua); }
.paso .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--aqua);
  margin-bottom: 10px;
}
.paso h3 { font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.paso p { font-size: 15.5px; line-height: 1.6; color: var(--muted-2); }

/* ---------------------------------------------------------------- faq --- */

.faq-list { display: grid; gap: 12px; max-width: 880px; }

.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .18s ease, background .18s ease;
}
.faq-item:hover { border-color: var(--line-mint); }
.faq-item[open] { border-color: var(--aqua); background: var(--white); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17.5px;
  line-height: 1.35;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal); }

/* chevron */
.faq-item summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-right: 2.2px solid var(--teal);
  border-bottom: 2.2px solid var(--teal);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 9px; }

.faq-answer {
  padding: 0 22px 20px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted-2);
  max-width: 72ch;
}

@media (max-width: 760px) {
  .faq-item summary { font-size: 16px; padding: 16px 18px; gap: 14px; }
  .faq-answer { padding: 0 18px 18px; font-size: 15.5px; }
}

/* ----------------------------------------------------------- contacto --- */

.contacto { background: var(--ink); }
.contacto .eyebrow { color: var(--lime); }

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.contacto h2 {
  font-weight: 800;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.1;
  color: var(--white);
  margin: 12px 0 18px;
}
.contacto-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--on-dark);
  max-width: 490px;
  margin-bottom: 30px;
}

.facts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.fact { display: flex; align-items: center; gap: 12px; }
.fact .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--aqua); flex: none;
}
.fact span:last-child { font-size: 16.5px; color: #E6F0F2; }
.fact strong { color: var(--white); }

/* auto-fit: one number fills the row, a second one splits it — no CSS change
   needed when the client adds his other WhatsApp line */
.people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 500px;
}
.person {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #24505A;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .18s ease, background .18s ease;
}
.person:hover { border-color: var(--aqua); background: rgba(255, 255, 255, 0.08); color: inherit; }
.person .role {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
.person .name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.25;
}
.person .tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 600; color: var(--lime);
  margin-top: 4px;
}
.person .tel svg { width: 16px; height: 16px; flex: none; }
.person:hover .tel { color: #A6DB5E; }

.cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}
.cta-card > img {
  width: 100%;
  max-width: 290px;
  height: auto;
  margin: 0 auto 26px;
}
.cta-note {
  text-align: center;
  font-size: 14.5px;
  color: var(--muted-2);
  margin-top: 16px;
}
.cta-list {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-row { display: flex; align-items: center; gap: 12px; }
.cta-row svg { width: 20px; height: 20px; color: var(--teal); flex: none; }
.cta-row .k {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  line-height: 1.3;
}
.cta-row .v {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  word-break: break-word;
}
.cta-row a.v { color: var(--teal); }
.cta-row a.v:hover { color: var(--aqua); }

.pagos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 20px;
}
/* label sits on its own line so the chips below always read as one group */
.pagos-label {
  flex-basis: 100%;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2px;
}
.pagos-chip {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--teal);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 5px 9px;
  background: var(--bg-soft);
}

/* ------------------------------------------------------------- footer --- */

.footer {
  border-top: 1px solid #24505A;
  padding-block: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer span, .footer p { font-size: 14px; color: var(--on-dark-2); }
.footer a { color: var(--on-dark); font-weight: 600; }
.footer a:hover { color: var(--aqua); }

.social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--on-dark);
}
.social svg { width: 18px; height: 18px; flex: none; }
.social:hover { color: var(--aqua); }

.sinpagina { display: inline-flex; align-items: center; gap: 6px; }
.sinpagina a {
  color: var(--lime);
  border-bottom: 1px solid rgba(140, 198, 63, 0.4);
  padding-bottom: 1px;
}
.sinpagina a:hover { color: #A6DB5E; border-bottom-color: #A6DB5E; }

/* ---------------------------------------------------------- float WA --- */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.38);
  transition: transform .18s ease, background .18s ease;
}
.wa-float:hover { background: #1EBE5B; color: #FFFFFF; transform: translateY(-2px); }
.wa-float svg { width: 22px; height: 22px; flex: none; }

/* Hidden once the contact section is on screen — that block carries the real
   WhatsApp button, so the floating one would just duplicate it. */
.wa-float {
  transition: background .18s ease, transform .25s ease, opacity .25s ease, visibility .25s ease;
}
.wa-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
}

/* -------------------------------------------------------- responsive --- */

@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pasos { grid-template-columns: 1fr; gap: 20px; }
  .tapetes { grid-template-columns: 1fr; gap: 30px; }
  .tapetes-photo { order: -1; }
  .contacto-grid { grid-template-columns: 1fr; gap: 44px; }
  .cta-card { max-width: 520px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-block: 44px 64px; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .galeria { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .wrap { padding-inline: 20px; }
  .section { padding-block: 60px; }

  /* buttons go full-width here, so let long labels wrap instead of
     forcing the page wider than the viewport on narrow phones */
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding-left: 20px;
    padding-right: 20px;
  }
  .pill { padding: 7px 13px; }
  .pill span:last-child { font-size: 12px; }
  .nav { padding-block: 14px; }
  /* the fixed WhatsApp button covers the CTA on small screens */
  .nav-links { display: none; }
  .brand img { height: 38px; }
  .brand-name { font-size: 15px; }
  .brand-sub { font-size: 9.5px; letter-spacing: 0.11em; }

  .hero-actions .btn { width: 100%; }
  .stat-row { flex-direction: column; gap: 16px; }

  .panel-body { padding: 22px 22px 24px; }
  .panel-title { font-size: 22px; }
  .panel-tiles { gap: 10px; }
  .panel-tile { padding: 15px 13px; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc-cta { grid-column: span 1; align-items: stretch; }
  .svc-cta .btn { align-self: stretch; }

  .wrap-tapetes { padding-block: 0 60px; }
  .tapetes { padding: 30px 24px; }
  .tapetes-body > .btn { width: 100%; }

  .galeria { gap: 12px; }
  .foto figcaption { padding: 28px 12px 11px; font-size: 13px; }
  .galeria-cta { flex-direction: column; gap: 16px; text-align: center; }
  .galeria-cta .btn { width: 100%; }

  .people { grid-template-columns: 1fr; }
  .cta-card { padding: 28px 22px; }

  .footer { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* No floating button on phones — the hero and contact CTAs cover it there
     and it otherwise sits on top of the content. */
  .wa-float { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .btn:hover, .svc:hover, .wa-float:hover { transform: none; }
}

@media print {
  .wa-float, .nav-outer { display: none; }
  body { background: #FFF; }
}
