/* ===========================================================
   Buffet Dom Raphaelo — estilos (tema DARK)
   Paleta: preto + tons de cinza, com vermelho e amarelo de acento.
   Troque as variaveis abaixo para ajustar tudo.
   =========================================================== */

:root {
  --red: #e23b3f;          /* vermelho principal */
  --red-dark: #b81f24;
  --yellow: #f5b50a;       /* amarelo (acento) */
  --yellow-deep: #d99e00;

  --bg: #0c0c0d;           /* fundo da pagina (preto) */
  --bg-2: #151517;         /* secao alternada (cinza escuro) */
  --bg-3: #060607;         /* secao mais escura */
  --surface: #1b1b1e;      /* cards / paineis */
  --surface-2: #232328;    /* hover / itens */
  --border: rgba(255,255,255,.10);
  --border-strong: rgba(255,255,255,.18);

  --text: #f3f1ec;         /* titulos e texto forte */
  --text-soft: #a7a29b;    /* texto secundario */
  --white: #ffffff;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 22px 60px -24px rgba(0,0,0,.8);
  --shadow-sm: 0 10px 30px -16px rgba(0,0,0,.7);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --maxw: 1140px;
}

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

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

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

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--text); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; }

.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.kicker--light { color: var(--yellow); }

/* ===== Botoes ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  color: var(--white);
  background: var(--red);
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(226,59,63,.6); }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--small { padding: 9px 18px; font-size: .85rem; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--white); color: #111; border-color: var(--white); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--wa { background: #25d366; border-color: #25d366; color: #06351a; }
.btn--wa:hover { background: #1fb455; border-color: #1fb455; }
.btn svg { width: 20px; height: 20px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--yellow); font-weight: 600; text-decoration: none;
  margin-top: 8px;
}
.link-arrow::after { content: "→"; transition: transform .2s ease; }
.link-arrow:hover::after { transform: translateX(5px); }
.link-arrow--center { justify-content: center; margin-top: 32px; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 12, 13, .8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.nav.is-scrolled { box-shadow: 0 8px 24px -14px rgba(0,0,0,.9); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--red); color: var(--yellow);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: .02em;
}
.brand__logo { width: 46px; height: 46px; border-radius: 11px; object-fit: cover; display: block; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: .95rem; transition: color .2s ease; }
.nav__links a:not(.btn):hover { color: var(--yellow); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--text); border-radius: 2px; transition: .25s ease; }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; color: var(--white); }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 82% 0%, rgba(245,181,10,.22), transparent 50%),
    radial-gradient(110% 100% at 50% 120%, rgba(226,59,63,.45), transparent 60%),
    linear-gradient(160deg, #000 0%, #140405 55%, #2a0608 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.hero__inner { position: relative; padding: clamp(70px, 12vw, 130px) 24px clamp(60px, 9vw, 110px); max-width: var(--maxw); }
.hero__logo-wrap { position: relative; display: block; width: min(360px, 84%); margin: 0 0 20px -6px; }
.hero__logo-wrap::before { content: ""; position: absolute; inset: -18%; background: radial-gradient(closest-side, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 72%); z-index: 0; pointer-events: none; }
.hero__logo { position: relative; z-index: 1; width: 100%; height: auto; display: block; }
.hero__eyebrow { color: var(--yellow); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; margin-bottom: 22px; }
.hero__title { color: var(--white); font-size: clamp(2.6rem, 6.5vw, 4.8rem); font-weight: 700; letter-spacing: -.02em; }
.hero__lead { max-width: 560px; margin-top: 22px; font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: rgba(255,255,255,.85); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__cta .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.45); }
.hero__cta .btn--ghost:hover { background: var(--white); color: #111; border-color: var(--white); }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 40px; }
.hero__badges li { position: relative; padding-left: 22px; font-size: .92rem; color: rgba(255,255,255,.8); }
.hero__badges li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); }

/* ===== STRIP ===== */
.strip { background: var(--bg-3); color: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 40px 24px; }
.strip__item { text-align: center; }
.strip__num { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; color: var(--yellow); }
.strip__label { font-size: .9rem; color: rgba(255,255,255,.7); }

/* ===== SECTIONS ===== */
.section { padding: clamp(64px, 9vw, 110px) 0; background: var(--bg); }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--bg-3); color: var(--white); }
.section--dark h2 { color: var(--white); }

.section__head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section__sub { margin-top: 14px; color: var(--text-soft); font-size: 1.05rem; }
.section__sub--light { color: rgba(255,255,255,.72); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.grid-2--reverse .media { order: 2; }

.prose p { color: var(--text-soft); margin-top: 16px; }
.section--dark .prose p { color: rgba(255,255,255,.78); }

/* ===== MEDIA / PLACEHOLDERS ===== */
.media { position: relative; }
.media__ph {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(226,59,63,.18), rgba(245,181,10,.14)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 14px, transparent 14px 28px);
  border: 2px dashed rgba(245,181,10,.45);
  display: grid; place-items: center; text-align: center;
  color: var(--yellow); font-weight: 600; font-size: .95rem; padding: 24px;
  box-shadow: var(--shadow);
}
.media__ph::before { content: attr(data-ph); position: absolute; top: 14px; left: 50%; transform: translateX(-50%); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; }

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--surface); border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.card__icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(226,59,63,.16); color: var(--red); display: grid; place-items: center; margin-bottom: 18px; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; color: var(--text); }
.card p { color: var(--text-soft); font-size: .95rem; }

/* ===== VALUE LIST ===== */
.value-list { list-style: none; margin-top: 26px; display: grid; gap: 22px; }
.value-list li { position: relative; padding-left: 38px; }
.value-list li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.value-list strong { display: block; font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 2px; color: var(--text); }

/* ===== REGIONS ===== */
.regions { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 820px; margin: 0 auto; }
.regions li {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px; text-align: center;
  font-weight: 500; color: var(--white); transition: border-color .2s ease, transform .2s ease;
}
.regions li:hover { border-color: var(--yellow); transform: translateY(-2px); }
.regions__note { text-align: center; margin-top: 28px; color: rgba(255,255,255,.65); }

/* ===== HORÁRIOS ===== */
.hours { background: var(--surface); border-radius: var(--radius); padding: 12px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.hours__row { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); font-size: 1.02rem; }
.hours__row:last-of-type { border-bottom: none; }
.hours__row span:first-child { font-weight: 500; color: var(--text); }
.hours__row span:last-child { color: var(--yellow); font-weight: 600; }
.hours__note { padding: 18px 0 6px; color: var(--text-soft); font-size: .9rem; border-top: 1px solid var(--border); }

/* ===== GALLERY ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item {
  aspect-ratio: 1 / 1; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(226,59,63,.16), rgba(245,181,10,.14));
  border: 2px dashed rgba(245,181,10,.4);
  display: grid; place-items: center; color: var(--yellow); font-weight: 600; font-size: .9rem; position: relative;
}
.gallery__item::before { content: attr(data-ph); position: absolute; top: 12px; left: 12px; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-soft); }

/* imagens reais */
.media__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
img.gallery__item { object-fit: cover; display: block; border: none; background: var(--surface); transition: transform .3s ease, filter .3s ease; }
img.gallery__item:hover { transform: scale(1.02); filter: brightness(1.08); }

/* ===== PINS DE LOCALIZACAO ===== */
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 860px; margin: 0 auto; }
.loc-card { position: relative; display: block; text-decoration: none; background: linear-gradient(160deg, var(--surface), #141416); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 30px 28px; text-align: center; overflow: hidden; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.loc-card::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 18px 18px; opacity: .6; pointer-events: none; }
.loc-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.loc-card__pin { position: relative; display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--red); color: #fff; margin-bottom: 16px; box-shadow: 0 10px 26px -8px rgba(226,59,63,.6); }
.loc-card__pin svg { width: 32px; height: 32px; }
.loc-card__country { position: relative; display: block; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); font-weight: 700; margin-bottom: 4px; }
.loc-card h3 { position: relative; color: var(--white); font-size: 1.7rem; margin-bottom: 4px; }
.loc-card p { position: relative; color: rgba(255,255,255,.82); font-weight: 500; margin-bottom: 8px; }
.loc-card__region { position: relative; display: block; color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 18px; }
.loc-card__actions { position: relative; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 22px; margin-top: 4px; }
.loc-card__actions a { display: inline-flex; align-items: center; gap: 6px; color: var(--yellow); font-weight: 600; font-size: .9rem; text-decoration: none; transition: color .2s ease; }
.loc-card__actions a:hover { color: #fff; }
.loc-card__actions a svg { width: 16px; height: 16px; }

/* ===== CTA ===== */
.cta { background: linear-gradient(160deg, #000 0%, #1a0506 50%, #3a070a 100%); color: var(--white); padding: clamp(64px, 9vw, 110px) 0; text-align: center; border-top: 1px solid var(--border); }
.cta__inner { max-width: 640px; }
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,.82); margin-top: 14px; font-size: 1.08rem; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.cta__phone { margin-top: 24px; font-size: 1rem; }
.cta__phone strong { color: var(--yellow); }
.cta__socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.cta__socials a { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-weight: 600; font-size: .88rem; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 9px 16px; transition: border-color .2s ease, background .2s ease; }
.cta__socials a:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.cta__socials a svg { width: 17px; height: 17px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-3); color: rgba(255,255,255,.72); border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1.15fr 1.15fr; gap: 40px; padding: 62px 0 44px; }
.footer__col h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; font-weight: 700; }
.footer__col a { display: block; color: rgba(255,255,255,.7); text-decoration: none; font-size: .92rem; padding: 4px 0; transition: color .2s ease; }
.footer__col a:hover { color: var(--yellow); }
.footer__col p { font-size: .92rem; color: rgba(255,255,255,.7); margin-bottom: 9px; line-height: 1.55; }
.footer__col p a { display: inline; padding: 0; }
.footer__doc { font-size: .8rem !important; color: rgba(255,255,255,.45) !important; margin-bottom: 4px !important; }
.footer__col--brand { max-width: 360px; }
.footer__brand { display: flex; align-items: flex-start; gap: 14px; }
.footer__brand strong { color: var(--white); font-family: var(--font-display); font-size: 1.12rem; }
.footer__brand p { font-size: .9rem; margin-top: 6px; color: rgba(255,255,255,.6); }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); color: rgba(255,255,255,.82); padding: 0; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.footer__social a:hover { color: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }

.footer__legal { border-top: 1px solid var(--border); }
.footer__legal-inner { display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: center; justify-content: space-between; padding: 26px 0; }
.footer__legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal-links a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .88rem; transition: color .2s ease; }
.footer__legal-links a:hover { color: var(--yellow); }
.footer__legal-note { font-size: .78rem; color: rgba(255,255,255,.45); max-width: 640px; line-height: 1.6; }

.footer__bar { border-top: 1px solid var(--border); padding: 20px 0; }
.footer__bar-inner { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; justify-content: space-between; font-size: .84rem; color: rgba(255,255,255,.5); }
.footer__credit a { color: rgba(255,255,255,.72); text-decoration: none; font-weight: 600; transition: color .2s ease; }
.footer__credit a:hover { color: var(--yellow); }
.footer__cnpj { padding: 12px 0 4px; font-size: .74rem; color: rgba(255,255,255,.38); line-height: 1.5; }
.footer__cnpj a { color: rgba(255,255,255,.55); text-decoration: underline; }
.footer__cnpj a:hover { color: var(--yellow); }

/* ===== Paginas legais (Politica de Privacidade / Termos) ===== */
.legal__top { border-bottom: 1px solid var(--border); position: sticky; top: 0; background: rgba(12,12,13,.85); backdrop-filter: blur(12px); z-index: 40; }
.legal__top-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.legal__back { color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem; transition: color .2s ease; }
.legal__back:hover { color: var(--yellow); }
.legal { padding: 56px 0 90px; }
.legal__wrap { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 10px; }
.legal .updated { color: var(--text-soft); font-size: .9rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.32rem; margin: 38px 0 12px; color: var(--text); }
.legal h3 { font-size: 1.05rem; margin: 22px 0 8px; color: var(--text); }
.legal p, .legal li { color: var(--text-soft); margin-bottom: 12px; line-height: 1.75; font-size: .98rem; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal a { color: var(--yellow); }
.legal .disclaimer { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--yellow); border-radius: 12px; padding: 18px 20px; margin: 26px 0 34px; font-size: .9rem; color: var(--text-soft); }
.legal hr { border: none; border-top: 1px solid var(--border); margin: 46px 0; }

/* ===== WhatsApp flutuante ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.55);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ===== Animacao de entrada ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ===========================================================
   RESPONSIVO
   =========================================================== */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-2--reverse { grid-template-columns: 1fr; }
  .grid-2--reverse .media { order: 0; }
  .regions { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer__col--brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 70px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); padding: 12px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .3s ease; pointer-events: none;
  }
  .nav__links.is-open { transform: translateY(0); pointer-events: auto; }
  .nav__links a { padding: 14px 4px; border-bottom: 1px solid var(--border); }
  .nav__links .btn--small { margin-top: 12px; text-align: center; justify-content: center; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .strip__grid { grid-template-columns: 1fr; gap: 26px; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .regions { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .locations { grid-template-columns: 1fr; }
}
