/* ============================================================
   Classy Touch Detailing - single page
   Palette: neutral near-blacks + brand blue #41afe6
   Type: Raleway (display) / Source Sans 3 (body) / Montserrat (wordmark)
   ============================================================ */

:root {
  --bg: #0a0c0f;
  --surface: #10141a;
  --surface-2: #161b23;
  --ink: #edf1f5;
  --muted: #97a1ac;
  --accent: #41afe6;
  --accent-strong: #6cc4f2;
  --whatsapp: #22c15e;
  --line: rgba(237, 241, 245, 0.09);
  --radius: 10px;
  --wrap: 1200px;
  --nav-h: 72px;
  --space-section: clamp(3.5rem, 8vw, 6.5rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-nav: 40;
  --z-menu: 50;
  --z-float: 60;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "lnum" 1;
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Raleway', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.08;
  text-wrap: balance;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }

::selection { background: rgba(65, 175, 230, 0.35); color: var(--ink); }

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

.wrap {
  width: min(100% - 3rem, var(--wrap));
  margin-inline: auto;
}
.wrap-narrow { max-width: 760px; }

.section { padding-block: var(--space-section); }
.section[id] { scroll-margin-top: var(--nav-h); }

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-head { max-width: 640px; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section-head p { color: var(--muted); margin-top: 0.9rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Raleway', 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background-color 0.2s, border-color 0.2s, color 0.2s;
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn .ico { width: 1.15em; height: 1.15em; flex: none; }

.btn-whatsapp { background: var(--whatsapp); color: #06130a; }
.btn-whatsapp:hover { background: #2bd66e; color: #06130a; }

.btn-ghost {
  border-color: rgba(237, 241, 245, 0.22);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--ink); }

.btn-small { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn-large { padding: 1.05rem 2rem; font-size: 1.05rem; justify-content: center; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 12, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: min(100% - 3rem, var(--wrap));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo { display: inline-flex; align-items: center; gap: 0.75rem; line-height: 1; }
.logo-mark { height: 38px; width: auto; }
.logo-text { display: inline-flex; flex-direction: column; }
.logo-word {
  font-family: 'Montserrat', 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo-word em { font-style: normal; color: var(--accent); }
.logo-sub {
  font-family: 'Montserrat', 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav-links > a:not(.btn) {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links > a:not(.btn):hover { opacity: 1; color: var(--accent-strong); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 12, 15, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; }
  .nav-links > a:not(.btn) { font-size: 1.5rem; font-weight: 600; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-scene { position: absolute; inset: 0; }

.hero-scene video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* reduced motion: a still frame instead of the video */
.hero.no-motion .hero-scene {
  background: url('../img/hero-fallback.jpg') center / cover no-repeat;
}
.hero.no-motion .hero-scene video { display: none; }

.hero::after {
  /* readability vignette over the scene */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 12, 15, 0.82) 0%, rgba(10, 12, 15, 0.35) 46%, rgba(10, 12, 15, 0.05) 70%),
    linear-gradient(rgba(10, 12, 15, 0.5) 0%, transparent 22%);
  pointer-events: none;
}

@media (max-width: 640px) {
  /* portrait: the subject sits behind the copy, so the scrim goes vertical */
  .hero::after {
    background: linear-gradient(180deg, rgba(10, 12, 15, 0.6) 0%, rgba(10, 12, 15, 0.42) 45%, rgba(10, 12, 15, 0.78) 100%);
  }
}

.hero-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 22vh;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 3rem, var(--wrap));
  margin-inline: auto;
  padding-top: var(--nav-h);
  max-width: none;
}

.hero-title {
  font-size: clamp(2.05rem, 8.5vw, 5.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.0;
  max-width: 15ch;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }

.hero-sub {
  margin-top: 1.4rem;
  max-width: 44ch;
  color: #c3ccd5;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }

.hero-meta {
  margin-top: 2.6rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ---------- Services ---------- */

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}

.service-list { list-style: none; margin: 0; padding: 0; }

.service-row { border-top: 1px solid var(--line); }
.service-row:last-child { border-bottom: 1px solid var(--line); }

.service-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name price" "desc price";
  align-items: center;
  column-gap: 1.5rem;
  padding: 1.5rem 0.25rem;
  color: var(--ink);
  transition: padding-left 0.4s var(--ease-out), background-color 0.3s;
}
.service-link:hover, .service-row.is-active .service-link { padding-left: 1rem; color: var(--ink); }

.service-name {
  grid-area: name;
  font-family: 'Raleway', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.service-link:hover .service-name, .service-row.is-active .service-name { color: var(--accent-strong); }

.service-desc {
  grid-area: desc;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.35rem;
  max-width: 46ch;
}

.service-price {
  grid-area: price;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.service-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: var(--surface);
}
.service-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s var(--ease-out), transform 0.8s var(--ease-out);
}

@media (max-width: 860px) {
  .services-layout { grid-template-columns: 1fr; }
  .service-preview { display: none; }
  .service-link { grid-template-areas: "name name" "desc price"; align-items: end; }
}

/* ---------- Why ---------- */

.why { background: var(--surface); }

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.why-figure { margin: 0; border-radius: var(--radius); overflow: hidden; }
.why-figure img { width: 100%; height: 100%; object-fit: cover; }

.why-copy h2 { margin-bottom: 2rem; }

.why-list { margin: 0; display: grid; gap: 1.6rem; }
@media (min-width: 861px) {
  .why-list { grid-template-columns: 1fr 1fr; gap: 1.8rem 2.25rem; }
}
.why-item dt { font-weight: 650; font-size: 1.1rem; margin-bottom: 0.3rem; }
.why-item dd { margin: 0; color: var(--muted); max-width: 52ch; }

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-figure { order: 2; }
}

/* ---------- Gallery ---------- */

.gallery { padding-bottom: calc(var(--space-section) * 0.75); }

.marquee { overflow: hidden; margin-top: 1.1rem; }
.marquee:first-of-type { margin-top: 0; }

.marquee-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: marquee-left 58s linear infinite;
}
.marquee[data-direction="right"] .marquee-track { animation-name: marquee-right; }
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track img {
  height: clamp(180px, 26vw, 300px);
  width: auto;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
  flex: none;
}

@keyframes marquee-left { to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .marquee-track { animation: none !important; }
}

/* ---------- Pricing ---------- */

.pricing { background: var(--surface); }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem;
  width: fit-content;
}
.tab {
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, background-color 0.25s;
  min-height: 44px;
}
.tab:hover { color: var(--ink); }
.tab.is-active { background: var(--accent); color: #04141f; }

.tab-panel[hidden] { display: none; }

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  border-block: 1px solid var(--line);
}

.package {
  padding: 2rem 1.75rem 2.25rem;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.package:first-child { border-left: 0; }

.package h3 {
  font-size: 1.15rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  min-height: 2.6em;
}
.package > p { color: var(--muted); font-size: 0.92rem; margin-top: 0.7rem; }

.package p.package-from { margin-top: auto; padding-top: 1.4rem; color: var(--muted); font-size: 0.92rem; }
.package-from strong { color: var(--ink); font-size: 1.65rem; font-weight: 700; margin-left: 0.15rem; }

.size-grid {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.size-grid li {
  background: var(--surface);
  text-align: center;
  font-size: 0.82rem;
  padding: 0.5rem 0.2rem;
  color: var(--ink);
}
.size-grid li span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.package-cta {
  margin-top: 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}
.package-cta:hover { text-decoration: underline; text-underline-offset: 4px; }

.package.is-popular { background: var(--surface-2); }
.package p.package-badge {
  position: absolute;
  top: -0.8em;
  left: 1.75rem;
  background: var(--accent);
  color: #04141f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: 999px;
  margin: 0;
}

.plan-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
  display: grid;
  gap: 0.45rem;
}
.plan-list li { padding-left: 1.2rem; position: relative; }
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.45em;
  height: 0.45em;
  border-radius: 50%;
  background: var(--accent);
}

.packages-plans p.package-from { margin-top: 0.2rem; padding-top: 0.6rem; }
.packages-plans .plan-list { margin-bottom: 1rem; }
.packages-plans .package-cta { margin-top: auto; padding-top: 1.4rem; }

.size-note {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.extras {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}
.extras-block h4 {
  font-size: 0.95rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.extras-block ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.extras-block li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.5rem;
}
.extras-block li strong { color: var(--ink); font-weight: 600; white-space: nowrap; }

@media (max-width: 1020px) {
  .packages { grid-template-columns: repeat(2, 1fr); border: 0; gap: 1.25rem; }
  .package { border: 1px solid var(--line); border-radius: var(--radius); }
  .package:first-child { border-left: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .packages { grid-template-columns: 1fr; }
}

/* ---------- Reviews ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.reviews-summary h2 { margin-bottom: 1.4rem; }

.reviews-score { display: flex; align-items: baseline; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.reviews-score .score { font-family: 'Raleway', sans-serif; font-size: 3.2rem; font-weight: 800; line-height: 1; }
.reviews-score .stars { display: inline-flex; gap: 2px; color: #f5b942; }
.reviews-score .stars svg { width: 1.15rem; height: 1.15rem; }
.reviews-score .score-label { color: var(--muted); font-size: 0.9rem; width: 100%; }

.reviews-scroller {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.review {
  margin: 0;
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.review p { font-size: 0.98rem; line-height: 1.6; }
.review footer {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: auto;
}

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */

.about { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-copy h2 { margin-bottom: 1.6rem; }
.about-copy p { color: #c3ccd5; max-width: 54ch; }
.about-copy .btn { margin-top: 1.8rem; }

.about-figure { margin: 0; border-radius: var(--radius); overflow: hidden; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */

.faq-list { display: grid; }

.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0.25rem;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--accent-strong); }

.faq-icon { position: relative; width: 14px; height: 14px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background: var(--accent);
  transition: transform 0.35s var(--ease-out);
}
.faq-icon::after { transform: rotate(90deg); }
details[open] .faq-icon::after { transform: rotate(0deg); }

.faq-list details > p {
  color: var(--muted);
  padding: 0 2.5rem 1.5rem 0.25rem;
  max-width: 62ch;
  opacity: 0;
  translate: 0 -6px;
  transition: opacity 0.35s ease 0.12s, translate 0.35s var(--ease-out) 0.12s;
}
.faq-list details[open] > p { opacity: 1; translate: 0 0; }

/* animate open/close height; browsers without interpolate-size simply snap */
.faq-list { interpolate-size: allow-keywords; }
.faq-list details::details-content {
  display: block;
  height: 0;
  overflow: clip;
  transition: height 0.45s var(--ease-out), content-visibility 0.45s allow-discrete;
}
.faq-list details[open]::details-content { height: auto; }

/* ---------- Quote ---------- */

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-full { grid-column: 1 / -1; }

.field label { font-size: 0.9rem; font-weight: 600; }
.field .optional { color: var(--muted); font-weight: 400; }

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #7d8894; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field textarea { resize: vertical; min-height: 90px; }

.quote-alt { text-align: center; color: var(--muted); font-size: 0.92rem; margin-top: 0.4rem; }

@media (max-width: 640px) {
  .quote-form { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.footer { border-top: 1px solid var(--line); background: var(--surface); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.footer-logo-img { width: 200px; height: auto; margin: -1.5rem 0 0.25rem -1rem; }
.footer-tag { color: var(--muted); font-size: 0.95rem; }

.footer-social { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: border-color 0.2s, color 0.2s, transform 0.3s var(--ease-out);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent-strong); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }

.footer-contact h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 0.8rem;
}
.footer-contact h4 + ul { margin-bottom: 1.6rem; }
.footer-contact ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-contact li { color: var(--muted); font-size: 0.95rem; }
.footer-contact a { color: var(--ink); }
.footer-contact a:hover { color: var(--accent-strong); }

.footer-map { border-radius: var(--radius); overflow: hidden; min-height: 220px; }
.footer-map iframe { width: 100%; height: 100%; min-height: 220px; border: 0; display: block; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent-strong); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: var(--z-float);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #06130a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s var(--ease-out), background-color 0.2s;
}
.wa-float:hover { transform: scale(1.08); background: #2bd66e; color: #06130a; }
.wa-float svg { width: 32px; height: 32px; }

@media (prefers-reduced-motion: no-preference) {
  .wa-float.pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: wa-pulse 2.4s var(--ease-out) 2;
    z-index: -1;
  }
  @keyframes wa-pulse {
    from { transform: scale(1); opacity: 0.55; }
    to { transform: scale(1.7); opacity: 0; }
  }
}

/* ---------- Reduced motion ---------- */

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