/* ═══════════════════════════════════════════════════════════
   MANO CHAVEIRO — Tubarão/SC
   Paleta extraída da fachada: azul royal + dourado da chave
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #040a18;
  --bg-2: #061029;
  --surface: rgba(14, 30, 66, 0.42);
  --surface-2: rgba(18, 38, 84, 0.55);
  --border: rgba(96, 140, 224, 0.16);
  --border-strong: rgba(120, 165, 245, 0.35);

  --blue-100: #dbe7ff;
  --blue-300: #8fb2f6;
  --blue-400: #5c8bee;
  --blue-500: #2f63d8;   /* azul da fachada */
  --blue-600: #1d4cb4;
  --blue-700: #153a8d;

  --gold-300: #ffe9a3;
  --gold-400: #ffd15c;   /* tons extraídos do logo do cliente */
  --gold-500: #eba726;
  --gold-600: #c8850f;

  --whats: #22c05a;
  --whats-strong: #16a34a;

  --text: #e9effd;
  --text-dim: #9fb0d4;
  --text-faint: #6d7ea6;

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(47, 99, 216, 0.55); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-wrap: balance;
}

h1 { font-size: clamp(2.7rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }

.grad-gold {
  background: linear-gradient(100deg, var(--gold-300) 0%, var(--gold-400) 40%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-blue {
  background: linear-gradient(100deg, #ffffff 0%, var(--blue-300) 55%, var(--blue-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.section { padding: clamp(80px, 10vw, 130px) 0; position: relative; }
.section__sub {
  color: var(--text-dim);
  max-width: 560px;
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ─────────────── Botões ─────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 26px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:active { transform: scale(0.97); }

.btn--whats {
  background: linear-gradient(180deg, #2ad263, var(--whats-strong));
  color: #04220f;
  box-shadow:
    0 0 0 1px rgba(42, 210, 99, 0.45),
    0 10px 32px -8px rgba(34, 192, 90, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--whats:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(42, 210, 99, 0.6),
    0 16px 42px -8px rgba(34, 192, 90, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(92, 139, 238, 0.5),
    0 10px 32px -8px rgba(47, 99, 216, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(92, 139, 238, 0.7),
    0 16px 42px -8px rgba(47, 99, 216, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn--ghost {
  background: rgba(20, 40, 88, 0.35);
  border-color: var(--border-strong);
  color: var(--blue-100);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(30, 58, 122, 0.5);
  border-color: rgba(150, 185, 250, 0.55);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 18px; font-size: 0.9rem; border-radius: 11px; }
.btn--lg { padding: 18px 34px; font-size: 1.1rem; border-radius: 16px; }

/* ─────────────── Nav ─────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(4, 10, 24, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: #fff; }

.brand {
  display: inline-flex;
  align-items: center;
}
.brand__logo {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(10, 33, 110, 0.55));
}
.footer .brand__logo { height: 54px; }

/* ─────────────── Hero ─────────────── */

.hero {
  position: relative;
  padding: clamp(150px, 18vw, 210px) 0 clamp(70px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 70% -10%, rgba(29, 76, 180, 0.32), transparent 60%),
    var(--bg);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(125, 158, 230, 0.16) 1px, transparent 1.6px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(75% 60% at 50% 25%, #000 30%, transparent 100%);
  mask-image: radial-gradient(75% 60% at 50% 25%, #000 30%, transparent 100%);
  pointer-events: none;
}

.hero__spotlight {
  position: absolute;
  top: -320px;
  left: -180px;
  width: 900px;
  height: 900px;
  background: radial-gradient(closest-side, rgba(143, 178, 246, 0.28), rgba(47, 99, 216, 0.08) 55%, transparent 70%);
  transform: rotate(-18deg) scaleY(0.62);
  filter: blur(28px);
  opacity: 0;
  animation: spotlight-in 1.6s ease 0.2s forwards;
  pointer-events: none;
}
@keyframes spotlight-in {
  from { opacity: 0; transform: rotate(-24deg) scaleY(0.62) translateY(-40px); }
  to   { opacity: 1; transform: rotate(-18deg) scaleY(0.62) translateY(0); }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__orb--a {
  width: 480px; height: 480px;
  right: -140px; top: 60px;
  background: radial-gradient(circle, rgba(29, 76, 180, 0.45), transparent 65%);
}
.hero__orb--b {
  width: 320px; height: 320px;
  left: 42%; bottom: -180px;
  background: radial-gradient(circle, rgba(242, 185, 13, 0.13), transparent 65%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--blue-100);
  background: rgba(20, 42, 95, 0.45);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
}
.pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--whats);
  box-shadow: 0 0 0 0 rgba(34, 192, 90, 0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(34, 192, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 192, 90, 0); }
}

.hero__sub {
  margin-top: 22px;
  max-width: 520px;
  font-size: 1.12rem;
  color: var(--text-dim);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-faint);
}
.hero__note strong { color: var(--blue-100); font-weight: 600; }
.hero__note a { color: var(--blue-300); border-bottom: 1px dotted rgba(143, 178, 246, 0.5); }
.hero__note a:hover { color: #fff; }

/* Chat card */

.hero__card { position: relative; }

.chat {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(20, 40, 90, 0.72), rgba(8, 18, 44, 0.85));
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 80px -20px rgba(2, 8, 24, 0.9),
    0 0 60px -20px rgba(47, 99, 216, 0.45),
    inset 0 1px 0 rgba(160, 190, 250, 0.18);
  backdrop-filter: blur(14px);
  padding: 22px;
  transform: rotate(1.2deg);
  transition: transform 0.35s ease;
}
.chat:hover { transform: rotate(0deg) translateY(-4px); }

.chat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.chat__head strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.chat__avatar {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
}
.chat__avatar img { width: 100%; height: 100%; display: block; }
.chat__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.chat__status i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--whats);
}
.chat__24h {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--gold-500);
  border: 1px solid rgba(242, 185, 13, 0.4);
  background: rgba(242, 185, 13, 0.08);
  padding: 5px 11px;
  border-radius: 999px;
}

.chat__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
}
.chat__msg {
  max-width: 85%;
  padding: 11px 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  border-radius: 14px;
  position: relative;
}
.chat__msg time {
  display: block;
  font-size: 0.68rem;
  opacity: 0.55;
  margin-top: 4px;
  text-align: right;
}
.chat__msg--in {
  align-self: flex-start;
  background: rgba(30, 56, 118, 0.55);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.chat__msg--out {
  align-self: flex-end;
  background: rgba(34, 192, 90, 0.16);
  border: 1px solid rgba(34, 192, 90, 0.3);
  border-bottom-right-radius: 4px;
}

.chat__send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 13px;
  font-weight: 600;
  font-size: 0.94rem;
  color: #04220f;
  background: linear-gradient(180deg, #2ad263, var(--whats-strong));
  box-shadow: 0 8px 26px -6px rgba(34, 192, 90, 0.55), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.chat__send:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -6px rgba(34, 192, 90, 0.7), inset 0 1px 0 rgba(255,255,255,0.35);
}
.chat__send svg { width: 18px; height: 18px; }

/* ─────────────── Marquee ─────────────── */

.marquee {
  border-block: 1px solid var(--border);
  background: rgba(8, 18, 44, 0.6);
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee__track i {
  font-style: normal;
  color: var(--gold-500);
  font-size: 0.8rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─────────────── Serviços (bento) ─────────────── */

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

.card {
  position: relative;
  border-radius: var(--radius);
  padding: 30px 28px;
  background: linear-gradient(170deg, var(--surface), rgba(8, 17, 40, 0.65));
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(3, 10, 28, 0.9);
}
.card--wide { grid-column: span 2; }

/* glow que segue o mouse */
.glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(94, 140, 240, 0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.glow-card:hover::after { opacity: 1; }

.card__tag {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid rgba(242, 185, 13, 0.35);
  background: rgba(242, 185, 13, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
}

.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--blue-300);
  background: rgba(47, 99, 216, 0.14);
  border: 1px solid rgba(92, 139, 238, 0.28);
  box-shadow: inset 0 1px 0 rgba(160, 190, 250, 0.15);
}
.card__icon svg { width: 26px; height: 26px; }

.card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p {
  font-size: 0.94rem;
  color: var(--text-dim);
}

/* ─────────────── Localização ─────────────── */

.section--loc {
  background:
    radial-gradient(70% 50% at 15% 20%, rgba(29, 76, 180, 0.16), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--border);
}

.loc {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.loc__list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.loc__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.loc__ico {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold-500);
  background: rgba(47, 99, 216, 0.14);
  border: 1px solid rgba(92, 139, 238, 0.28);
}
.loc__ico svg { width: 21px; height: 21px; }
.loc__list strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 3px;
}
.loc__list p { color: var(--text-dim); font-size: 0.97rem; }
.loc__list a {
  color: var(--text);
  border-bottom: 1px dotted rgba(143, 178, 246, 0.45);
  transition: color 0.2s ease;
}
.loc__list a:hover { color: var(--blue-300); }
.loc__24 { color: var(--gold-400); font-weight: 600; }

.loc__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.loc__map { position: relative; }

.map-frame {
  position: relative;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(165deg, rgba(20, 40, 90, 0.7), rgba(8, 18, 44, 0.85));
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 80px -20px rgba(2, 8, 24, 0.9),
    0 0 70px -25px rgba(47, 99, 216, 0.5);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  border-radius: 17px;
  background: #0b1836;
}

.loc__photo {
  position: absolute;
  left: -26px;
  bottom: -34px;
  width: 168px;
  padding: 8px 8px 10px;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(24, 46, 100, 0.92), rgba(10, 22, 52, 0.95));
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 50px -14px rgba(2, 8, 24, 0.95);
  transform: rotate(-3.5deg);
  transition: transform 0.35s ease;
}
.loc__photo:hover { transform: rotate(0deg) scale(1.04); }
.loc__photo img { width: 100%; height: auto; border-radius: 10px; aspect-ratio: 3/4; object-fit: cover; }
.loc__photo figcaption {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  text-align: center;
  margin-top: 8px;
}

/* ─────────────── CTA final ─────────────── */

.section--cta { padding-bottom: clamp(90px, 11vw, 150px); }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 6vw, 90px);
  text-align: center;
  background:
    radial-gradient(120% 160% at 50% -30%, rgba(143, 178, 246, 0.35), transparent 55%),
    linear-gradient(165deg, var(--blue-600), var(--blue-700) 55%, #0c2a6b);
  border: 1px solid rgba(150, 185, 250, 0.4);
  box-shadow:
    0 40px 100px -30px rgba(21, 58, 141, 0.8),
    inset 0 1px 0 rgba(200, 220, 255, 0.25);
}
.cta-band__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(220, 232, 255, 0.22) 1px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(80% 90% at 50% 0%, #000, transparent);
  mask-image: radial-gradient(80% 90% at 50% 0%, #000, transparent);
  pointer-events: none;
}
.cta-band__key {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 300px;
  height: 300px;
  color: rgba(242, 185, 13, 0.14);
  transform: rotate(-20deg);
  pointer-events: none;
}
.cta-band__key svg { width: 100%; height: 100%; }
.cta-band h2 { position: relative; }
.cta-band p {
  position: relative;
  color: rgba(225, 235, 255, 0.85);
  max-width: 480px;
  margin: 18px auto 0;
}
.cta-band__actions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.cta-band__tel {
  font-size: 0.95rem;
  color: rgba(210, 225, 255, 0.75);
  border-bottom: 1px dotted rgba(210, 225, 255, 0.4);
  transition: color 0.2s ease;
}
.cta-band__tel:hover { color: #fff; }

/* ─────────────── Footer ─────────────── */

.footer {
  border-top: 1px solid var(--border);
  background: #030711;
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
}
.footer__brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--text-faint);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 0.94rem;
  color: var(--text-dim);
  transition: color 0.2s ease;
  width: fit-content;
}
.footer__col a:hover { color: #fff; }

.footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(96, 140, 224, 0.1);
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ─────────────── FAB WhatsApp ─────────────── */

.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #2ad263, var(--whats-strong));
  box-shadow: 0 12px 32px -6px rgba(34, 192, 90, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 42px -6px rgba(34, 192, 90, 0.8);
}
.fab svg { width: 30px; height: 30px; position: relative; }
.fab__ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(34, 192, 90, 0.5);
  animation: ping 2.2s ease-out infinite;
}
@keyframes ping {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.7); opacity: 0; }
}

/* ─────────────── Reveal on scroll ─────────────── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.65, 0.3, 1), transform 0.7s cubic-bezier(0.22, 0.65, 0.3, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__spotlight { animation: none; opacity: 1; }
  .marquee__track { animation-duration: 90s; }
  html { scroll-behavior: auto; }
}

/* ─────────────── Responsivo ─────────────── */

@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 480px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .loc { grid-template-columns: 1fr; }
  .loc__photo { left: auto; right: -8px; bottom: -30px; }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .br-lg { display: none; }
  .bento { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .hero { padding-top: 120px; }
  .hero__cta .btn { width: 100%; }
  .loc__cta .btn { width: 100%; }
  .map-frame iframe { height: 360px; }
  .loc__photo { width: 132px; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .fab { right: 16px; bottom: 16px; }
}
