/* ============================================================
   Carvalho's — Design System
   Tokens derived from DESIGN.md / globals.css (Relume export)
   ============================================================ */

/* ---------- Fonts ---------- */
/* Corpo/UI: Inter (sans, via Google Fonts). Títulos: Lora, substituta da FS Brabo®. */

/* ---------- Tokens ---------- */
:root {
  /* Neutral */
  --color-white: #ffffff;
  --color-neutral-lightest: #f2f2f2;
  --color-neutral-lighter: #d9d9da;
  --color-neutral-light: #b3b3b5;
  --color-neutral: #808184;
  --color-neutral-dark: #4d4e53;
  --color-neutral-darker: #1b1c22;
  --color-neutral-darkest: #02030a;
  /* Killarney (primary green) */
  --color-killarney-lightest: #eaf0eb;
  --color-killarney-lighter: #d5e1d8;
  --color-killarney-light: #6d9778;
  --color-killarney: #2f6b3f;
  --color-killarney-dark: #255532;
  --color-killarney-darker: #122a19;
  --color-killarney-darkest: #0e2012;
  /* Asparagus / Cerulean (secondary palettes, available) */
  --color-asparagus: #7fa66a;
  --color-cerulean-blue: #2b3cc4;
  /* Dourado da marca (milho da logo) */
  --color-gold: #e8a63d;
  --color-gold-strong: #a96f1d;
  --color-gold-light: #f2c063;

  /* Radii */
  --radius-button: 0.375rem;
  --radius-card: 0.5rem;
  --radius-image: 0.5rem;
  --radius-badge: 0.375rem;

  /* Layout */
  --container: 90rem;
  --gutter: 5%;

  /* Type families */
  --font-heading: "Lora", "Times New Roman", Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Type scale — mobile first */
  --text-h1: 2.75rem;
  --text-h2: 2.5rem;
  --text-h3: 2rem;
  --text-h4: 1.5rem;
  --text-h5: 1.25rem;
  --text-h6: 1.125rem;
  --text-large: 1.125rem;
  --text-medium: 1rem;
  --text-regular: 0.9375rem;
  --text-small: 0.875rem;
  --text-tiny: 0.75rem;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-body: 1.6;
}

@media (min-width: 992px) {
  :root {
    --text-h1: 3.75rem;
    --text-h2: 3.25rem;
    --text-h3: 2.75rem;
    --text-h4: 2.25rem;
    --text-h5: 1.75rem;
    --text-h6: 1.375rem;
    --text-large: 1.375rem;
    --text-medium: 1.125rem;
    --text-regular: 1rem;
    --text-small: 0.875rem;
    --text-tiny: 0.75rem;
  }
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-medium);
  line-height: var(--lh-body);
  color: var(--color-neutral-darkest);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0;
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
}
p {
  margin: 0;
  text-wrap: pretty;
}
:focus-visible {
  outline: 2px solid var(--color-killarney);
  outline-offset: 2px;
}

/* ---------- Type helpers ---------- */
.h1 { font-size: var(--text-h1); }
.h2 { font-size: var(--text-h2); }
.h3 { font-size: var(--text-h3); }
.h4 { font-size: var(--text-h4); line-height: var(--lh-snug); }
.h5 { font-size: var(--text-h5); line-height: var(--lh-snug); }
.text-large { font-size: var(--text-large); }
.text-medium { font-size: var(--text-medium); }
.text-small { font-size: var(--text-small); }
.text-tiny { font-size: var(--text-tiny); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-tiny);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   COLOR SCHEMES
   scheme-1  = white surface (light)
   scheme-green = Killarney Dark #255532 (Scheme 5/2 in export)
   ============================================================ */
.scheme-1 {
  --bg: var(--color-white);
  --text: var(--color-neutral-darkest);
  --muted: color-mix(in srgb, var(--color-neutral-darkest) 68%, transparent);
  --border: color-mix(in srgb, var(--color-neutral-darkest) 15%, transparent);
  --border-strong: color-mix(in srgb, var(--color-neutral-darkest) 28%, transparent);
  --accent: var(--color-killarney);
  --gold: var(--color-gold-strong);
  --btn-border: color-mix(in srgb, var(--color-neutral-darkest) 22%, transparent);
  --surface: var(--color-white);
  background-color: var(--bg);
  color: var(--text);
}
.scheme-green {
  --bg: var(--color-killarney-dark);
  --text: var(--color-white);
  --muted: color-mix(in srgb, var(--color-white) 78%, transparent);
  --border: color-mix(in srgb, var(--color-white) 20%, transparent);
  --border-strong: color-mix(in srgb, var(--color-white) 32%, transparent);
  --accent: var(--color-white);
  --gold: var(--color-gold-light);
  --btn-border: color-mix(in srgb, var(--color-white) 40%, transparent);
  --surface: transparent;
  background-color: var(--bg);
  color: var(--text);
}
.eyebrow { color: var(--gold); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}
.section {
  padding: 4rem var(--gutter);
}
@media (max-width: 600px) {
  .section { padding-block: 3rem; }
}
@media (min-width: 768px) {
  .section { padding: 6rem var(--gutter); }
}
@media (min-width: 992px) {
  .section { padding: 7rem var(--gutter); }
}

.section-head {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .section-head { margin-bottom: 5rem; }
}
.section-head .section-sub { color: var(--muted); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-regular);
  line-height: 1;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: var(--text-small); }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--color-killarney);
  color: var(--color-white);
  border-color: var(--color-killarney);
}
.btn-primary:hover {
  background: var(--color-killarney-dark);
  border-color: var(--color-killarney-dark);
}
/* Em superfícies verdes o primário é branco (conceito), senão some no fundo */
.scheme-green .btn-primary {
  background: var(--color-white);
  color: var(--color-killarney-dark);
  border-color: var(--color-white);
}
.scheme-green .btn-primary:hover {
  background: color-mix(in srgb, var(--color-white) 86%, transparent);
  border-color: transparent;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--btn-border);
}
.btn-secondary:hover {
  background: color-mix(in srgb, var(--text) 8%, transparent);
}

/* outlined-on-image (benefits hero card) */
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: color-mix(in srgb, var(--color-white) 55%, transparent);
}
.btn-ghost:hover {
  background: color-mix(in srgb, var(--color-white) 12%, transparent);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-regular);
  color: var(--text);
  cursor: pointer;
}
.btn-link svg { width: 1em; height: 1em; color: var(--gold); transition: transform 0.2s ease; }
.btn-link:hover { color: var(--gold); }
.btn-link:hover svg { transform: translateX(3px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px -18px rgb(2 3 10 / 0.25);
}
/* Navbar ocupa a largura toda: logo alinhada à margem da página, como no conceito */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4rem;
  padding-inline: var(--gutter);
}
.navbar-logo { display: inline-flex; align-items: center; }
.navbar-logo img { height: 44px; width: auto; }
.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}
.navbar-links a:hover { color: var(--gold); }
.navbar-cta { display: none; }

.navbar-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.navbar-toggle span {
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.navbar.open .navbar-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.open .navbar-toggle span:nth-child(2) { opacity: 0; }
.navbar.open .navbar-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar-mobile {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
  border-top: 0 solid var(--border);
}
.navbar.open .navbar-mobile {
  grid-template-rows: 1fr;
  border-top-width: 1px;
}
.navbar-mobile > div { min-height: 0; }
.navbar-mobile nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem var(--gutter) 1.25rem;
  gap: 0.25rem;
}
.navbar-mobile a {
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: var(--text-medium);
}
.navbar-mobile .btn { margin-top: 0.75rem; }

@media (min-width: 992px) {
  .navbar-links { display: flex; }
  .navbar-cta { display: inline-flex; }
  .navbar-toggle { display: none; }
  .navbar-mobile { display: none; }
}

/* ============================================================
   CARD primitive
   ============================================================ */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  overflow: hidden;
}

/* ============================================================
   HERO (header-84)
   ============================================================ */
.section--hero { padding-block: 3rem; }
@media (min-width: 768px) { .section--hero { padding-block: 4rem; } }
@media (min-width: 992px) { .section--hero { padding-block: 5rem; } }

/* Conteúdo direto sobre o verde, foto arredondada à direita (conceito aprovado) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero-content h1 { font-size: var(--text-h1); }
.hero-content p:not(.eyebrow) { color: var(--muted); max-width: 38ch; }
.hero-media {
  aspect-ratio: 3 / 2;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-image);
  box-shadow: 0 24px 48px -24px rgb(2 3 10 / 0.45);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Selo de credibilidade abaixo dos botões — 3 colunas iguais, sempre alinhadas */
.hero-stats {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 600px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.hero-stats li { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-stats strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-h5);
  line-height: var(--lh-snug);
}
.hero-stats span { font-size: var(--text-small); color: var(--muted); }
@media (min-width: 992px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-media { aspect-ratio: 1 / 1; }
}

/* ============================================================
   BENEFITS (layout-522)
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.bcard {
  /* cards sobre foto são sempre escuros, independente da seção */
  --gold: var(--color-gold-light);
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  min-height: 22rem;
  box-shadow: 0 18px 36px -24px rgb(2 3 10 / 0.55);
}
.bcard .bcard-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.bcard .bcard-bg img { width: 100%; height: 100%; object-fit: cover; }
.bcard .bcard-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-neutral-darkest) 25%, transparent),
    color-mix(in srgb, var(--color-neutral-darkest) 65%, transparent)
  );
}
.bcard .bcard-spacer { flex: 1; }
.bcard .eyebrow { color: var(--color-white); margin-bottom: 0.6rem; }
.bcard h3 { font-size: var(--text-h5); margin-bottom: 0.6rem; }
.bcard.bcard--lg h3 { font-size: var(--text-h3); margin-bottom: 1rem; }
.bcard p { color: color-mix(in srgb, var(--color-white) 88%, transparent); }
.bcard .icon-box {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}
.bcard .btn-row { margin-top: 1.5rem; }
.bcard .btn-link { color: var(--color-white); }

@media (min-width: 768px) {
  .bcard { padding: 2rem; }
}
@media (min-width: 992px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .bcard--lg { grid-column: span 2; padding: 3rem; }
  .bcard--lg { min-height: 28rem; }
}

/* ============================================================
   FEATURE LIST (layout-356)
   ============================================================ */
.feature {
  border-top: 1px solid var(--border);
}
.feature-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 4rem;
  font-weight: 600;
  font-size: var(--text-medium);
}
.feature-head .feature-index { color: var(--gold); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 2rem 3rem;
  align-items: center;
}
.feature-copy { display: flex; flex-direction: column; gap: 1.1rem; }
.feature-copy h2 { font-size: var(--text-h2); }
.feature-copy p:not(.eyebrow) { color: var(--muted); }
.feature-media img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: var(--radius-image);
  box-shadow: 0 24px 48px -28px rgb(2 3 10 / 0.3);
}
@media (min-width: 768px) {
  .feature-media img { height: 28rem; }
}
@media (min-width: 992px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding-block: 3rem 4rem;
  }
  .feature-media img { height: 32rem; }
}

/* ============================================================
   SERVICES (layout-369)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.scard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: color-mix(in srgb, var(--color-white) 4%, transparent);
  box-shadow: 0 18px 36px -24px rgb(2 3 10 / 0.5);
}
.scard-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
}
.scard-body h3 { font-size: var(--text-h5); }
.scard-body p:not(.eyebrow) { color: var(--muted); }
.scard-body .btn-link { margin-top: 0.75rem; }
.scard-media img { width: 100%; height: 100%; object-fit: cover; min-height: 12rem; }

@media (min-width: 992px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .scard--wide {
    grid-column: span 2;
    flex-direction: row;
  }
  .scard--wide .scard-body { flex: 1; justify-content: center; }
  .scard--wide .scard-media { flex: 1; }
  .scard--wide .scard-media img { min-height: 100%; }
}

/* ============================================================
   TESTIMONIALS (testimonial-17)
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.tcard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  background: color-mix(in srgb, var(--color-white) 4%, transparent);
  box-shadow: 0 18px 36px -24px rgb(2 3 10 / 0.5);
}
.stars { display: flex; gap: 0.25rem; color: var(--gold); }
.stars svg { width: 1.4rem; height: 1.4rem; }
.tcard blockquote { margin: 0; font-size: var(--text-medium); }
.tcard .person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.tcard .person img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.tcard .person .name { font-weight: 600; }
.tcard .person .role { color: var(--muted); font-size: var(--text-small); }
@media (min-width: 768px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .tcard { padding: 2rem; }
}
@media (min-width: 992px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   CTA (cta-31)
   ============================================================ */
/* Banner com a foto de fundo sob um véu verde, ações por cima */
.cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-card);
  padding: 4rem 1.5rem;
  display: flex;
  justify-content: center;
  box-shadow: 0 28px 56px -28px rgb(2 3 10 / 0.45);
}
.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-killarney-darker) 88%, transparent),
    color-mix(in srgb, var(--color-killarney-dark) 70%, transparent)
  );
}
.cta-content {
  max-width: 44rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-white);
}
.cta-content h2 { font-size: var(--text-h2); }
.cta-content p { color: color-mix(in srgb, var(--color-white) 84%, transparent); }
.cta-content .btn-row { justify-content: center; margin-top: 1rem; }
.cta-content .btn-primary {
  background: var(--color-white);
  color: var(--color-killarney-dark);
  border-color: var(--color-white);
}
.cta-content .btn-primary:hover {
  background: color-mix(in srgb, var(--color-white) 86%, transparent);
  border-color: transparent;
}
@media (min-width: 768px) {
  .cta-banner { padding: 6rem 3rem; }
}

/* ============================================================
   FOOTER (footer-02)
   ============================================================ */
.footer { padding: 3rem var(--gutter); }
@media (min-width: 992px) { .footer { padding: 5rem var(--gutter); } }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand { display: inline-flex; }
.footer-brand img { height: 64px; width: auto; }
.footer-col h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-medium);
  margin-bottom: 0.75rem;
}
.footer-col li a {
  display: block;
  padding: 0.5rem 0;
  font-size: var(--text-small);
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-col li a:hover { color: var(--text); }

.footer-news h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-medium);
  margin-bottom: 0.75rem;
  max-width: 26rem;
}
.footer-news .label { font-size: var(--text-small); color: var(--muted); margin-bottom: 0.6rem; }
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
}
.footer-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: var(--text-small);
  padding: 0.7rem 1rem;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-button);
}
.footer-form input::placeholder { color: var(--muted); }
.footer-fine { font-size: var(--text-tiny); color: var(--muted); }

.footer-divider { height: 1px; width: 100%; background: var(--border); }
.footer-bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
  padding-top: 2rem;
  font-size: var(--text-small);
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--text); }
.footer-social { display: flex; gap: 0.85rem; }
.footer-social a { color: var(--text); display: inline-flex; }
.footer-social svg { width: 1.4rem; height: 1.4rem; }

@media (min-width: 600px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-form { flex-direction: row; }
}
@media (min-width: 992px) {
  .footer-top { grid-template-columns: 1.6fr 1fr; gap: 4rem; }
  .footer-cols { grid-template-columns: auto repeat(3, 1fr); align-items: start; }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer-legal { flex-direction: row; gap: 1.5rem; align-items: center; }
}

/* ============================================================
   MOBILE CAROUSELS (Vantagens · Serviços · Depoimentos)
   Abaixo de 992px vira scroll-snap horizontal (swipe); acima
   volta ao grid definido por cada seção. Dots gerados via JS.
   ============================================================ */
@media (max-width: 991px) {
  .carousel-m {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    grid-template-columns: none;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    /* full-bleed: sangra até a borda da tela, deixando o próximo card "espiar" */
    margin-inline: calc(-1 * var(--gutter));
    padding: 0.5rem var(--gutter) 1.75rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .carousel-m::-webkit-scrollbar { display: none; }
  .carousel-m > * {
    scroll-snap-align: start;
    min-width: 0;
  }
}

.carousel-dots { display: none; }
@media (max-width: 991px) {
  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
  }
  .carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--border-strong);
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease;
  }
  .carousel-dots button[aria-current="true"] {
    width: 22px;
    background: var(--gold);
  }
}
