/* ============================================================
   TOKENS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Fredoka+One&display=swap');

:root {
  /* Brand */
  --color-amarelo:       oklch(0.86 0.17 88);
  --color-azul:          oklch(0.37 0.15 261);
  --color-vermelho:      oklch(0.52 0.20 25);
  --color-laranja:       oklch(0.67 0.18 50);
  --color-laranja-fundo: oklch(0.55 0.22 35);

  /* Surface */
  --color-bg:      oklch(1 0 0);
  --color-surface: oklch(0.97 0.005 87);

  /* Text */
  --color-ink:      oklch(0.22 0.05 265);
  --color-muted:    oklch(0.48 0.04 265);
  --color-on-brand: oklch(0.22 0.05 265);
  --color-on-dark:  oklch(1 0 0);

  /* Fonts */
  --font-display: 'Fredoka One', cursive;
  --font-body:    'Montserrat', sans-serif;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  clamp(1.75rem, 4vw, 2.25rem);
  --text-4xl:  clamp(2rem, 5vw, 3rem);
  --text-hero: clamp(2.5rem, 7vw, 4.5rem);

  /* Space */
  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem;
  --s4: 1rem;    --s6: 1.5rem;  --s8: 2rem;
  --s12: 3rem;   --s16: 4rem;   --s24: 6rem;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-pill: 9999px;

  /* Shadow */
  --shadow-sm: 0 2px 4px oklch(0 0 0 / 0.10);
  --shadow-md: 0 4px 8px oklch(0 0 0 / 0.14);
}

/* ============================================================
   RESET
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============================================================
   ACCESSIBILITY UTILITIES
   ============================================================ */

.skip-nav {
  position: absolute;
  left: -9999px;
  top: var(--s4);
  background: var(--color-azul);
  color: var(--color-on-dark);
  padding: var(--s3) var(--s6);
  border-radius: var(--r-pill);
  z-index: 1000;
  font-weight: 700;
}
.skip-nav:focus { left: var(--s4); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   SCROLL REVEAL  (visible by default; motion added progressively)
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: 0.08s; }
  .reveal-d2 { transition-delay: 0.16s; }
  .reveal-d3 { transition-delay: 0.24s; }
  .reveal-d4 { transition-delay: 0.32s; }
  .reveal-d5 { transition-delay: 0.40s; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  text-wrap: balance;
}
h1 { font-size: var(--text-hero); letter-spacing: -0.02em; }
h2 { font-size: var(--text-4xl);  letter-spacing: -0.01em; }
h3 { font-size: var(--text-xl); }

.label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  padding: var(--s3) var(--s8);
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: filter 0.15s ease-out, transform 0.15s ease-out;
  white-space: nowrap;
  line-height: 1.4;
}
.btn:hover  { filter: brightness(1.08); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-red            { background: var(--color-vermelho); color: var(--color-on-dark); }
.btn-yellow         { background: var(--color-amarelo);  color: var(--color-on-brand); }
.btn-outline-brand  {
  background: transparent;
  color: var(--color-on-brand);
  border: 2px solid var(--color-on-brand);
}
.btn-outline-brand:hover {
  background: var(--color-on-brand);
  color: var(--color-amarelo);
  filter: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container { max-width: 1200px; margin-inline: auto; padding-inline: var(--s6); }
.section-pad { padding-block: var(--s24); }

/* ============================================================
   NAV
   ============================================================ */

#site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-amarelo);
  border-bottom: 2px solid oklch(0.78 0.17 88);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding-block: var(--s2);
}
.nav-logo { height: 72px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s6);
}
.nav-links a {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-on-brand);
  letter-spacing: 0.01em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease-out;
  white-space: nowrap;
}
.nav-links a:hover { border-bottom-color: var(--color-on-brand); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.ig-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-on-brand);
  transition: background 0.15s ease-out;
  flex-shrink: 0;
}
.ig-icon:hover { background: oklch(0 0 0 / 0.10); filter: none; transform: none; }
.ig-icon svg   { width: 22px; height: 22px; fill: currentColor; }

.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   HERO
   ============================================================ */

#hero {
  background: var(--color-amarelo);
  padding-block: var(--s12) var(--s16);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--s16);
  align-items: center;
}
.hero-content { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--color-on-brand);
  color: var(--color-amarelo);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--s1) var(--s4);
  border-radius: var(--r-pill);
  margin-bottom: var(--s6);
}
#hero h1 {
  color: var(--color-on-brand);
  max-width: 680px;
  margin-bottom: var(--s6);
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-on-brand);
  max-width: 440px;
  margin-bottom: var(--s8);
  font-weight: 600;
  opacity: 0.8;
  line-height: 1.6;
}
.destaque-gratis {
  color: var(--color-vermelho);
  font-weight: 700;
}
.hero-ctas {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}

.hero-images {
  align-self: center;
}
.hero-img {
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-position: 50% 40%;
}

/* ============================================================
   MODALIDADES
   ============================================================ */

#modalidades { background: var(--color-bg); }
.section-header { margin-bottom: var(--s12); }
#modalidades h2 { color: var(--color-ink); }
#modalidades .label { color: var(--color-muted); }

.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s6);
}
.mod-card {
  padding: var(--s8) var(--s6);
  border-radius: var(--r-md);
  background: var(--color-surface);
  border-top: 3px solid var(--accent, var(--color-azul));
}
.mod-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--accent, var(--color-azul));
  color: white;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  margin-bottom: var(--s4);
  letter-spacing: 0;
}
.mod-card h3 { color: var(--color-ink); margin-bottom: var(--s2); }
.mod-card p  { color: var(--color-muted); font-size: var(--text-sm); line-height: 1.65; }

/* Accent per dance family */
.mod-forro-roots    { --accent: var(--color-azul); }
.mod-forro-zero     { --accent: oklch(0.40 0.15 265); }
.mod-samba-gafieira { --accent: var(--color-vermelho); }
.mod-samba-pe       { --accent: oklch(0.45 0.18 25); }
.mod-zouk           { --accent: var(--color-laranja); }
.mod-intensivos     { --accent: var(--color-laranja-fundo); }

/* ============================================================
   POR QUE O SOTAQUES
   ============================================================ */

#por-que { background: var(--color-azul); }
#por-que .label { color: var(--color-amarelo); }
#por-que h2    { color: var(--color-on-dark); }

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s8);
  margin-top: var(--s12);
}
.pilar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: oklch(1 0 0 / 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
  font-size: 1.5rem;
}
.pilar h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-amarelo);
  margin-bottom: var(--s3);
}
.pilar p { color: oklch(1 0 0 / 0.85); font-size: var(--text-base); line-height: 1.7; }

/* ============================================================
   SOBRE
   ============================================================ */

#sobre { background: var(--color-bg); }
#sobre .section-header { margin-bottom: var(--s6); }
#sobre h2 { color: var(--color-ink); }
#sobre .label { color: var(--color-muted); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s12);
  align-items: center;
}
.sobre-body p { font-size: var(--text-lg); line-height: 1.8; color: var(--color-ink); }
.sobre-body p + p { margin-top: var(--s4); }
.nome-igor { font-weight: 700; color: var(--color-azul); }

.sobre-imagem { position: relative; }

.igor-blob {
  background: var(--color-amarelo);
  border-radius: 62% 38% 55% 45% / 48% 60% 40% 52%;
  overflow: hidden;
  filter: drop-shadow(0 16px 40px oklch(0 0 0 / 0.20));
}
.igor-blob img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }
  .sobre-imagem {
    max-width: 280px;
    margin: 0 auto var(--s8);
    order: -1;
  }
}

/* ============================================================
   GALERIA
   ============================================================ */

#galeria { background: var(--color-surface); }
#galeria h2    { color: var(--color-ink); }
#galeria .label { color: var(--color-muted); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.galeria-item {
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--color-bg);
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease-out;
}
.galeria-item:hover img { transform: scale(1.04); }

/* ============================================================
   AVALIAÇÕES
   ============================================================ */

#avaliacoes { background: var(--color-bg); }

.nota-google {
  display: inline-flex;
  align-items: center;
  gap: var(--s6);
  margin-bottom: var(--s8);
  padding: var(--s4) var(--s6);
  border: 1px solid oklch(0.88 0 0);
  border-radius: var(--r-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nota-google:hover {
  border-color: oklch(0.7 0 0);
  box-shadow: var(--shadow-sm);
}
.nota-score {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.nota-numero-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.nota-numero {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--color-ink);
  line-height: 1;
}
.estrelas { color: var(--color-laranja); font-size: var(--text-lg); line-height: 1; }
.nota-sub { font-size: var(--text-sm); color: var(--color-muted); }

.nota-google-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding-left: var(--s6);
  border-left: 1px solid oklch(0.88 0 0);
}
.google-g-logo { width: 26px; height: 26px; }
.nota-google-text {
  font-size: var(--text-xs);
  color: oklch(0.42 0 0);
  font-weight: 600;
}

.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s6);
  margin-bottom: var(--s8);
}
.av-card {
  background: var(--color-bg);
  border-radius: var(--r-md);
  padding: var(--s6);
  border: 1px solid oklch(0.9 0 0);
  box-shadow: 0 2px 8px oklch(0 0 0 / 0.06);
}
.av-header {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
}
.av-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--av-color, #888);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.av-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.av-nome   { font-weight: 700; font-size: var(--text-sm); color: var(--color-ink); }
.av-stars  { color: var(--color-laranja); font-size: var(--text-xs); line-height: 1; }
.av-google-g { width: 20px; height: 20px; flex-shrink: 0; }
.av-texto  { font-size: var(--text-sm); line-height: 1.7; color: var(--color-ink); }

.link-gmb {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  color: var(--color-azul);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   GRADE
   ============================================================ */

#grade { background: var(--color-amarelo); }
#grade .label { color: var(--color-on-brand); opacity: 0.65; }
#grade h2     { color: var(--color-on-brand); margin-bottom: var(--s8); }

.grade-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}
.grade-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: oklch(1 0 0 / 0.62);
}
.grade-table thead th {
  background: var(--color-azul);
  color: var(--color-on-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: var(--s3) var(--s4);
  text-align: center;
}
.grade-table thead th:first-child { text-align: left; }
.grade-table tbody td {
  padding: var(--s3) var(--s4);
  font-size: 0.8125rem;
  text-align: center;
  vertical-align: top;
  line-height: 1.5;
  border-bottom: 1px solid oklch(0.84 0.17 87 / 0.35);
  color: var(--color-ink);
}
.grade-table tbody td:first-child {
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  color: var(--color-azul);
}
.grade-table tbody tr:last-child td { border-bottom: none; }
.turma-nome {
  display: block;
}
.grade-sep {
  display: block;
  height: 1px;
  background: var(--color-azul);
  opacity: 0.2;
  margin: var(--s2) auto;
  width: 60%;
}
.em-formacao {
  display: block;
  font-style: italic;
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.grade-sabado {
  margin-top: var(--s6);
  background: oklch(1 0 0 / 0.62);
  border-radius: var(--r-md);
  padding: var(--s4) var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--text-sm);
  color: var(--color-ink);
  flex-wrap: wrap;
}
.grade-sabado .dia { font-weight: 700; color: var(--color-azul); }

.grade-legenda {
  margin-top: var(--s4);
  font-size: var(--text-xs);
  color: var(--color-on-brand);
  opacity: 0.65;
  font-style: italic;
}

.grade-cta { margin-top: var(--s12); text-align: center; }

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */

#localizacao { background: var(--color-laranja); }
#localizacao .label { color: var(--color-on-dark); opacity: 0.75; }
#localizacao h2    { color: var(--color-on-dark); margin-bottom: var(--s12); }

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}
.loc-info { color: var(--color-on-dark); }
.loc-item {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  margin-bottom: var(--s4);
  font-size: var(--text-base);
  line-height: 1.6;
}
.loc-item strong { font-weight: 700; }

.metro-box {
  background: oklch(1 0 0 / 0.15);
  border-radius: var(--r-md);
  padding: var(--s4) var(--s6);
  margin-top: var(--s6);
  color: var(--color-on-dark);
}
.metro-box p    { font-weight: 700; font-size: var(--text-lg); margin-bottom: var(--s1); }
.metro-box span { font-size: var(--text-sm); opacity: 0.85; }

.loc-mapa {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: oklch(0.48 0.20 35);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mapa-btn {
  background: oklch(1 0 0 / 0.18);
  border: 2px solid oklch(1 0 0 / 0.5);
  color: var(--color-on-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: var(--s3) var(--s6);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.2s ease-out;
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-direction: column;
}
.mapa-btn:hover { background: oklch(1 0 0 / 0.28); }
.loc-mapa iframe { width: 100%; height: 100%; border: none; display: block; }

.loc-cta { margin-top: var(--s8); }

/* ============================================================
   FAQ
   ============================================================ */

#faq { background: var(--color-bg); }
#faq h2 { color: var(--color-ink); margin-bottom: var(--s12); }
#faq .label { color: var(--color-muted); }

.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid oklch(0 0 0 / 0.08); padding-block: var(--s6); }
.faq-item:first-child { border-top: 1px solid oklch(0 0 0 / 0.08); }
.faq-q {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-ink);
  margin-bottom: var(--s3);
}
.faq-a {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 62ch;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

#cta-final {
  background: var(--color-vermelho);
  text-align: center;
}
#cta-final h2 { color: var(--color-on-dark); margin-bottom: var(--s4); }
.cta-sub {
  color: oklch(1 0 0 / 0.85);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--s8);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--color-amarelo);
  border-top: 2px solid oklch(0.78 0.17 88);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s16);
  align-items: center;
  padding-block: var(--s12);
}
.footer-brand { }
.footer-logo  { height: 120px; width: auto; margin-bottom: var(--s3); }
.footer-tagline { font-size: var(--text-sm); color: var(--color-on-brand); max-width: 200px; line-height: 1.5; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  justify-self: center;
}
.footer-nav-title {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-on-brand);
  margin-bottom: var(--s3);
}
.footer-nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-on-brand);
  transition: opacity 0.15s ease-out;
}
.footer-nav a:hover { opacity: 0.6; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  color: var(--color-on-brand);
}
.footer-contact p { font-size: var(--text-sm); line-height: 1.6; }
.footer-contact a { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; color: var(--color-on-brand); }
.footer-ig-link { display: inline-flex; align-items: center; gap: var(--s2); }

.footer-bottom {
  border-top: 1px solid oklch(0 0 0 / 0.15);
  padding-block: var(--s4) var(--s6);
  font-size: var(--text-xs);
  color: var(--color-on-brand);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px oklch(0 0 0 / 0.22);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px oklch(0 0 0 / 0.28);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-images { display: none; }
  #hero h1 { margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  #hero { text-align: center; }
}

@media (max-width: 768px) {
  .nav-logo    { height: 56px; }
  .nav-links   { display: none; }
  .section-pad { padding-block: var(--s16); }
  .container   { padding-inline: var(--s4); }

  .pilares-grid { margin-top: var(--s8); gap: var(--s6); }
  .localizacao-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: var(--s8); align-items: start; }
  .footer-nav { justify-self: start; }
}

@media (max-width: 480px) {
  .nav-inner .btn { font-size: var(--text-sm); padding: var(--s2) var(--s4); }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}
