/* ============================================================
   L'equipe Estúdio de Pilates — folha de estilos
   Paleta derivada do logotipo: navy profundo + dourado champanhe
   Tipos: Cormorant Garamond (display) · Jost (texto)
   ============================================================ */

:root {
  --navy-950: #070a26;
  --navy-900: #0a0f33;
  --navy-800: #11184a;
  --navy-700: #1b2465;
  --gold-200: #f0dfa8;
  --gold-300: #e5c97b;
  --gold-400: #d9b95c;
  --gold-500: #c9a227;
  --porcelain: #f1efe9;
  --paper: #faf9f5;
  --ink: #171b38;
  --muted: #5c6078;
  --line: rgba(23, 27, 56, 0.12);
  --line-gold: rgba(201, 162, 39, 0.45);
  --shadow-lg: 0 30px 60px -20px rgba(7, 10, 38, 0.35);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Garamond, serif;
  --font-body: "Jost", "Century Gothic", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

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

/* ---------- Tipografia ---------- */

h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.9rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }

h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-400);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.1rem;
}

.section-navy .eyebrow,
.final-cta .eyebrow,
.hero .eyebrow { color: var(--gold-300); }

.lead,
.section-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 1.4rem;
}

.on-dark { color: rgba(241, 239, 233, 0.78); }

.stars {
  color: var(--gold-400);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s, color 0.3s;
  will-change: transform;
}

.btn .ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 10px 30px -10px rgba(201, 162, 39, 0.55);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(201, 162, 39, 0.7);
}

.btn-ghost {
  color: var(--porcelain);
  border: 1px solid rgba(241, 239, 233, 0.35);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold-300);
  color: var(--gold-200);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-900);
  color: var(--porcelain);
  box-shadow: 0 10px 26px -12px rgba(7, 10, 38, 0.6);
}

.btn-navy:hover { transform: translateY(-2px); background: var(--navy-800); }

.btn:active { transform: translateY(0) scale(0.98); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 1.1rem 0;
}

.site-header.scrolled {
  background: rgba(7, 10, 38, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(229, 201, 123, 0.18);
  padding: 0.55rem 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.wordmark { text-decoration: none; line-height: 1.05; display: flex; flex-direction: column; }

.wordmark-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.7rem;
  background: linear-gradient(120deg, var(--gold-200), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wordmark-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(241, 239, 233, 0.75);
  margin-top: 0.15rem;
}

.site-nav { display: flex; gap: 1.6rem; margin-left: auto; }

.site-nav a {
  color: rgba(241, 239, 233, 0.82);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  position: relative;
  padding: 0.2rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gold-300);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav a:hover { color: var(--gold-200); }

.btn-header { flex: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--porcelain);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

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

.hero {
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(27, 36, 101, 0.85), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(27, 36, 101, 0.5), transparent 60%),
    var(--navy-950);
  color: var(--porcelain);
  padding: clamp(7.5rem, 13vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(229, 201, 123, 0.14) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(700px 500px at 78% 40%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(700px 500px at 78% 40%, black, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}

.hero-copy .lead { color: rgba(241, 239, 233, 0.75); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-ctas.center { justify-content: center; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  font-size: 0.92rem;
  color: rgba(241, 239, 233, 0.8);
}

.hero-proof strong { color: var(--gold-200); font-weight: 500; }

/* Arco — moldura assinada das fotos */

.hero-visual { position: relative; }

.arch-frame {
  border-radius: 999px 999px 18px 18px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  padding: 0.7rem;
  background: linear-gradient(180deg, rgba(229, 201, 123, 0.09), rgba(229, 201, 123, 0.02));
}

.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px 999px 12px 12px;
  aspect-ratio: 4 / 5.2;
}

.arch-echo {
  position: absolute;
  inset: -1.4rem 1.4rem 1.4rem -1.4rem;
  border: 1px solid rgba(229, 201, 123, 0.22);
  border-radius: 999px 999px 18px 18px;
  z-index: -1;
}

.float-card {
  position: absolute;
  bottom: clamp(1rem, 4vw, 2.2rem);
  left: clamp(-2.4rem, -3vw, -1rem);
  background: rgba(250, 249, 245, 0.97);
  color: var(--ink);
  border-radius: 14px;
  padding: 0.9rem 1.3rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.7rem;
  align-items: center;
  animation: floaty 5.5s ease-in-out infinite;
}

.float-score {
  grid-row: 1 / 3;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1;
}

.float-stars { color: var(--gold-500); font-size: 0.8rem; letter-spacing: 0.12em; }

.float-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Mola (elemento assinatura) ---------- */

.spring-divider {
  background: var(--paper);
  padding: 2.6rem 0 0.4rem;
  overflow: hidden;
}

.spring-divider svg {
  display: block;
  width: min(680px, 76vw);
  height: 44px;
  margin: 0 auto;
  overflow: visible;
}

.spring-divider .coil {
  stroke: var(--gold-500);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
}

.spring-divider .hook {
  stroke: var(--navy-800);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

/* ---------- Seções ---------- */

.section { padding: clamp(4.5rem, 9vh, 7rem) 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

.container-narrow { max-width: 820px; }

.section-light { background: var(--paper); }

.section-porcelain { background: var(--porcelain); }

.section-navy {
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(27, 36, 101, 0.7), transparent 60%),
    var(--navy-950);
  color: var(--porcelain);
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3.2rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.9rem 1.6rem;
  position: relative;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -22px rgba(7, 10, 38, 0.25);
  border-color: var(--line-gold);
}

.card:hover::before { transform: scaleX(1); }

.card-glyph { color: var(--gold-500); font-size: 0.85rem; margin-bottom: 0.9rem; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p { font-size: 0.94rem; color: var(--muted); }

/* ---------- Faixa (ribbon) ---------- */

.ribbon {
  background: var(--navy-900);
  border-top: 1px solid rgba(229, 201, 123, 0.25);
  border-bottom: 1px solid rgba(229, 201, 123, 0.25);
  overflow: hidden;
  padding: 0.85rem 0;
}

.ribbon-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem clamp(1.4rem, 4vw, 3rem);
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
  text-align: center;
}

.ribbon-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-300);
  letter-spacing: 0.06em;
}

.ribbon-sep { font-size: 0.75rem; opacity: 0.7; }

/* ---------- Galeria ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  margin-top: 3.2rem;
  align-items: end;
}

.gallery-item:nth-child(2) { transform: translateY(-1.6rem); }

.arch-sm { padding: 0.5rem; }

.arch-sm img { aspect-ratio: 4 / 5; transition: transform 0.8s var(--ease-out); }

.gallery-item:hover .arch-sm img { transform: scale(1.04); }

.gallery figcaption {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(241, 239, 233, 0.65);
  margin-top: 1rem;
}

/* ---------- Depoimentos ---------- */

.quote-featured {
  margin: 3.2rem auto 2rem;
  max-width: 780px;
  text-align: center;
}

.quote-featured blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--navy-800);
  margin-top: 1rem;
}

.quote-featured figcaption {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.quote-featured figcaption span { color: var(--muted); text-transform: none; letter-spacing: 0.04em; font-weight: 300; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.7rem;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s;
}

.quote-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  box-shadow: 0 20px 40px -24px rgba(7, 10, 38, 0.25);
}

.quote-card blockquote p {
  font-size: 0.97rem;
  color: var(--ink);
  margin-top: 0.8rem;
}

.quote-card figcaption {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

.quote-source { margin-top: 2.4rem; text-align: center; font-size: 0.92rem; }

.quote-source a {
  color: var(--navy-800);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.quote-source a:hover { color: var(--gold-500); border-color: var(--gold-500); }

/* ---------- Horários ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px -30px rgba(7, 10, 38, 0.3);
}

.hours-table th,
.hours-table td {
  padding: 1.25rem 1.8rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-weight: 300;
}

.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: 0; }

.hours-table th {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-800);
}

.hours-table td { text-align: right; color: var(--muted); letter-spacing: 0.04em; }

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

.faq-list { margin-top: 2.6rem; }

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

.faq-list summary {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  padding: 1.3rem 2.4rem 1.3rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  translate: 0 -50%;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--gold-500);
  transition: rotate 0.35s var(--ease-out);
}

.faq-list details[open] summary::after { rotate: 45deg; }

.faq-list summary:hover { color: var(--gold-500); }

.faq-list details p {
  padding: 0 2.4rem 1.4rem 0;
  color: var(--muted);
  max-width: 62ch;
}

/* ---------- Localização ---------- */

.address {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.35;
  margin-top: 1.4rem;
  color: var(--gold-200);
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  padding: 0.6rem;
  background: linear-gradient(180deg, rgba(229, 201, 123, 0.09), rgba(229, 201, 123, 0.02));
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
  border-radius: 14px;
  filter: saturate(0.85);
}

/* ---------- CTA final ---------- */

.final-cta {
  background:
    radial-gradient(900px 500px at 50% -20%, rgba(27, 36, 101, 0.9), transparent 65%),
    var(--navy-950);
  color: var(--porcelain);
  text-align: center;
}

.final-cta .section-lead { margin-inline: auto; }

.final-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(241, 239, 233, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

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

.site-footer {
  background: var(--navy-950);
  color: rgba(241, 239, 233, 0.75);
  border-top: 1px solid rgba(229, 201, 123, 0.18);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand .wordmark-script,
.footer-brand .wordmark-sub { display: block; }

.footer-brand p { margin-top: 1rem; max-width: 34ch; font-weight: 300; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-200);
  margin-bottom: 0.7rem;
}

.footer-col h4 + p + h4 { margin-top: 1.4rem; }

.footer-col a {
  display: block;
  text-decoration: none;
  padding: 0.18rem 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold-300); }

.footer-fine {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.78rem;
  color: rgba(241, 239, 233, 0.4);
  letter-spacing: 0.06em;
}

/* ---------- WhatsApp flutuante ---------- */

.whats-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  opacity: 0;
  translate: 0 16px;
  pointer-events: none;
  transition: opacity 0.4s, translate 0.4s var(--ease-out), transform 0.3s;
}

.whats-float.visible { opacity: 1; translate: 0 0; pointer-events: auto; }

.whats-float:hover { transform: scale(1.08); }

.whats-float svg { width: 30px; height: 30px; fill: #fff; }

.whats-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Animações de entrada ---------- */

.reveal,
.reveal-img {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.9s var(--ease-out), translate 0.9s var(--ease-out);
}

.reveal-img { translate: 0 0; scale: 0.965; transition: opacity 1s var(--ease-out), scale 1.1s var(--ease-out); }

.d-1 { transition-delay: 0.1s; }
.d-2 { transition-delay: 0.2s; }
.d-3 { transition-delay: 0.3s; }
.d-4 { transition-delay: 0.45s; }

.in-view { opacity: 1; translate: 0 0; scale: 1; }

/* ---------- Mobile ---------- */

@media (max-width: 1020px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display: none; }
}

@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0.5rem auto 0; }
  .float-card { left: -0.4rem; }
  .split { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .gallery-item:nth-child(2) { transform: none; }
  .quote-grid { grid-template-columns: 1fr; }
  .btn-header { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .site-nav {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(7, 10, 38, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: -1;
  }

  .site-nav a { font-size: 1.5rem; font-family: var(--font-display); font-weight: 500; color: var(--porcelain); }

  body.nav-open { overflow: hidden; }

  /* backdrop-filter cria containing block e prenderia o overlay dentro da barra */
  body.nav-open .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    box-shadow: none;
  }

  body.nav-open .site-nav { opacity: 1; pointer-events: auto; z-index: 49; }
  body.nav-open .nav-toggle span:first-child { transform: translateY(4.2px) rotate(45deg); }
  body.nav-open .nav-toggle span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

  .map-frame iframe { height: 360px; }

  .ribbon-sep { display: none; }
  .ribbon-track { flex-direction: column; gap: 0.4rem; }
}

@media (max-width: 520px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn-lg { width: 100%; justify-content: center; }
  .hours-table th, .hours-table td { padding: 1rem 1.2rem; }
}

/* ---------- Movimento reduzido ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-img { opacity: 1; translate: 0 0; scale: 1; transition: none; }
  .float-card { animation: none; }
  .whats-float::before { animation: none; }
  .card, .quote-card, .btn, .arch-sm img { transition: none; }
}
