/* ==========================================================================
   chefware — site institucional (estático)
   Design portado do projeto Lovable (TanStack + Tailwind v4).
   ========================================================================== */

:root {
  --radius: 0.875rem;

  --background: oklch(0.995 0.005 70);
  --foreground: oklch(0.18 0.02 30);

  --surface: oklch(0.985 0.012 65);
  --surface-warm: oklch(0.97 0.025 55);

  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.02 30);

  /* chefware brand: laranja vivo */
  --primary: oklch(0.68 0.21 38);
  --primary-foreground: oklch(0.99 0 0);
  --primary-glow: oklch(0.74 0.19 50);

  --muted: oklch(0.96 0.008 70);
  --muted-foreground: oklch(0.5 0.02 40);

  --destructive: oklch(0.6 0.23 25);
  --success: oklch(0.62 0.16 150);

  --border: oklch(0.92 0.01 60);

  --gradient-primary: linear-gradient(135deg, oklch(0.68 0.21 38), oklch(0.74 0.19 50));
  --gradient-warm: linear-gradient(180deg, oklch(0.99 0.008 70) 0%, oklch(0.97 0.03 55) 100%);
  --gradient-hero: radial-gradient(ellipse at 70% 40%, oklch(0.95 0.06 55 / 0.7), transparent 60%);

  --shadow-soft: 0 10px 30px -10px oklch(0.68 0.21 38 / 0.15);
  --shadow-glow: 0 20px 60px -20px oklch(0.68 0.21 38 / 0.35);
  --shadow-card: 0 4px 20px -8px oklch(0.18 0.02 30 / 0.08);

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Poppins", "Inter", system-ui, sans-serif;
}

/* ------------------------------ Reset base ------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

* { border-color: var(--border); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  /* Corta o excesso horizontal dos brilhos decorativos (inset negativo)
     sem criar container de rolagem — assim o header sticky continua funcionando. */
  overflow-x: clip;
}

html { overflow-x: clip; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
p { margin: 0; }

/* ------------------------------ Utilitários ------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
}

.muted { color: var(--muted-foreground); }

.section { padding-block: 6rem; }
.section-sm { padding-block: 4rem; }

.icon { width: 1rem; height: 1rem; stroke-width: 2; flex-shrink: 0; }
.icon-sm { width: 0.85rem; height: 0.85rem; }
.icon-lg { width: 1.25rem; height: 1.25rem; }

/* ------------------------------ Botões ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}
.btn-outline {
  background: var(--card);
  color: var(--foreground);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
.btn-outline:hover { border-color: oklch(0.68 0.21 38 / 0.4); }

.btn-light {
  background: var(--primary-foreground);
  color: var(--primary);
}
.btn-sm { padding: 0.75rem 1.25rem; }

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Link com seta */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.link-arrow:hover .arrow { transform: translateX(4px); }

/* Badge / pílula */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid oklch(0.68 0.21 38 / 0.2);
  background: oklch(0.68 0.21 38 / 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

/* ------------------------------ Cartões ------------------------------ */
.card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.card-pad { padding: 2rem; }
.shadow-soft { box-shadow: var(--shadow-soft); }
.rounded-2xl { border-radius: 1.25rem; }

.hover-lift { transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.hover-lift:hover {
  transform: translateY(-4px);
  border-color: oklch(0.68 0.21 38 / 0.3);
  box-shadow: var(--shadow-soft);
}

/* Ícone-chip (quadrado com gradiente) */
.chip {
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
}
.chip-lg { width: 3rem; height: 3rem; }
.chip-soft {
  background: oklch(0.68 0.21 38 / 0.1);
  color: var(--primary);
  box-shadow: none;
}

/* ------------------------------ Grids ------------------------------ */
.grid { display: grid; gap: 1.5rem; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.gap-sm { gap: 0.75rem; }
.gap-lg { gap: 2.5rem; }

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ------------------------------ Backgrounds ------------------------------ */
.bg-surface { background: var(--surface); }
.bg-warm { background: var(--gradient-warm); }
.bg-primary-grad { background: var(--gradient-primary); color: var(--primary-foreground); }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid oklch(0.92 0.01 60 / 0.6);
  background: oklch(0.995 0.005 70 / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 2.25rem; width: auto; }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}
.nav-desktop a:hover { color: var(--foreground); }
.nav-desktop a.active { color: var(--primary); }

.header-cta { display: none; }
.header-cta .btn { padding: 0.625rem 1.25rem; box-shadow: var(--shadow-soft); }

.menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: var(--foreground);
  padding: 0.25rem;
}
.menu-toggle .icon { width: 1.5rem; height: 1.5rem; }
.menu-toggle .icon-close { display: none; }
.menu-toggle.open .icon-open { display: none; }
.menu-toggle.open .icon-close { display: block; }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}
.nav-mobile.open { display: block; }
.nav-mobile nav { display: flex; flex-direction: column; gap: 0.25rem; padding-block: 1rem; }
.nav-mobile a {
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
.nav-mobile a:hover { background: var(--muted); color: var(--foreground); }
.nav-mobile .btn { margin-top: 0.5rem; padding: 0.75rem 1.25rem; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: flex; }
  .menu-toggle { display: none; }
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-warm);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-block: 2rem 4rem;
}
.hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.hero-media { position: relative; }
.hero-media img {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  width: 100%;
  /* escala proporcional: pequena no celular, cresce até um teto no desktop */
  max-width: clamp(260px, 38vw, 500px);
  filter: drop-shadow(0 25px 40px oklch(0.18 0.02 30 / 0.25));
}

/* Imagens de seção: proporcionais à tela, centradas, com teto no desktop
   para não virarem um amontoado de detalhes. */
.img-wide,
.img-phone {
  width: 100%;
  margin-inline: auto;
  display: block;
}
.img-wide { max-width: clamp(320px, 46vw, 600px); }
.img-phone { max-width: clamp(240px, 32vw, 400px); }
.glow-behind {
  position: absolute;
  inset: -2rem;
  z-index: 0;
  border-radius: 9999px;
  background: oklch(0.68 0.21 38 / 0.15);
  filter: blur(48px);
}

.stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 28rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.stat-value { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--primary); }
.stat-label { margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted-foreground); }

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: repeat(2, 1fr); align-items: center; padding-block: 3rem 6rem; }
}

/* ============================ Títulos de seção ============================ */
.section-head { max-width: 42rem; margin-inline: auto; text-align: center; }
.h2 { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 700; }
.h2-lead { margin-top: 1rem; color: var(--muted-foreground); }

/* ============================ Before / After ============================ */
.ba-card { position: relative; overflow: hidden; border-radius: 1.5rem; padding: 2rem; }
.ba-old { border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-card); }
.ba-new {
  border: 1px solid oklch(0.68 0.21 38 / 0.3);
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}
.ba-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.ba-old .ba-tag { color: var(--destructive); }
.ba-new .ba-tag { opacity: 0.9; }
.ba-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.ba-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.mark {
  margin-top: 0.15rem;
  display: grid;
  place-items: center;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  border-radius: 9999px;
}
.mark-x { background: oklch(0.6 0.23 25 / 0.1); color: var(--destructive); }
.mark-check-light { background: oklch(0.99 0 0 / 0.2); color: var(--primary-foreground); }
.ba-old .ba-list li { color: var(--muted-foreground); }
.mascot-bg {
  position: absolute;
  right: -1.5rem;
  top: -1.5rem;
  height: 10rem;
  width: 10rem;
  opacity: 0.3;
  pointer-events: none;
}

/* ============================ Listas com ícone ============================ */
.icon-list { display: flex; flex-direction: column; gap: 0.5rem; }
.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-card);
  font-size: 0.875rem;
  font-weight: 500;
}
.icon-list .chip-soft { width: 2rem; height: 2rem; border-radius: 0.5rem; }

/* Lista de bullets (recuperador) */
.bullet-list { display: flex; flex-direction: column; gap: 0.75rem; }
.bullet-list li {
  display: flex;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}
.bullet-emoji { font-size: 1.25rem; line-height: 1; }
.bullet-list b { font-size: 0.875rem; }
.bullet-list p { font-size: 0.875rem; color: var(--muted-foreground); }

/* Checklist (pix / features / persona) */
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; font-weight: 500; }
.check-mark {
  margin-top: 0.1rem;
  display: grid;
  place-items: center;
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: oklch(0.62 0.16 150 / 0.15);
  color: var(--success);
}
.check-mark-primary { background: oklch(0.68 0.21 38 / 0.1); color: var(--primary); height: 1.5rem; width: 1.5rem; }

/* Seção Pix: no desktop a imagem vai para a esquerda; no mobile o texto vem primeiro */
@media (min-width: 1024px) { .pix-grid .pix-media { order: -1; } }

/* ============================ Recuperador ============================ */
.reveal-caption { margin-top: 1rem; text-align: center; font-size: 0.875rem; font-style: italic; color: oklch(0.18 0.02 30 / 0.7); }
.sticky-media { position: relative; }
@media (min-width: 1024px) { .sticky-media { position: sticky; top: 6rem; } }
.blur-panel { position: absolute; inset: -1.5rem; z-index: -1; border-radius: 1.5rem; background: oklch(0.68 0.21 38 / 0.1); filter: blur(48px); }

/* ============================ Grid de módulos ============================ */
.module-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  display: block;
}
.module-card .num {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: oklch(0.5 0.02 40 / 0.6);
}
.module-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.2; }
.module-card .tagline { font-size: 0.75rem; font-weight: 500; color: var(--primary); }
.module-card .desc { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.module-card .link-arrow { margin-top: 0.75rem; font-size: 0.75rem; color: oklch(0.18 0.02 30 / 0.7); }
.module-card:hover .link-arrow { color: var(--primary); }

/* Cartão grande (índice de módulos) */
.module-card-lg { padding: 1.75rem; }
.module-card-lg h2 { margin-top: 1rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.module-card-lg .tagline { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.module-card-lg .desc { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.module-card-lg .link-arrow { margin-top: 1.25rem; font-size: 0.75rem; color: var(--foreground); }
.module-card-lg .num { right: 1.25rem; top: 1.25rem; }

/* ============================ Business types / grid simples ============================ */
.simple-card { border-radius: 1.25rem; border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: var(--shadow-card); }
.simple-card h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.simple-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ============================ CTA final ============================ */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
  padding: 2.5rem;
}
.cta-band .blob { position: absolute; right: -5rem; top: -5rem; height: 18rem; width: 18rem; border-radius: 9999px; background: oklch(0.99 0 0 / 0.1); filter: blur(48px); }
.cta-inner { position: relative; display: grid; gap: 2rem; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 700; line-height: 1.15; }
.cta-band p { margin-top: 1rem; max-width: 36rem; opacity: 0.9; }
.cta-actions { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .cta-band { padding: 4rem; } }
@media (min-width: 1024px) {
  .cta-inner { grid-template-columns: 1.4fr 1fr; align-items: center; }
  .cta-actions { flex-direction: column; }
}

.cta-center { text-align: center; }
.cta-center h2 { margin-inline: auto; }
.cta-center p { margin-inline: auto; }
.cta-center .cta-actions { align-items: center; }

/* ============================ Módulo — detalhe ============================ */
.back-link { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); }
.mod-hero-grid { margin-top: 1.5rem; display: grid; gap: 2.5rem; }
.mod-hero-grid h1 { margin-top: 1rem; font-family: var(--font-display); font-size: clamp(3rem, 7vw, 3.75rem); font-weight: 700; line-height: 1.1; }
.mod-hero-grid .tagline { margin-top: 0.75rem; font-family: var(--font-display); font-size: 1.5rem; }
.mod-hero-grid .lead { margin-top: 1.5rem; max-width: 36rem; font-size: 1.125rem; color: var(--muted-foreground); }
.mod-icon-box { display: grid; place-items: center; border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); padding: 2.5rem; box-shadow: var(--shadow-soft); }
.mod-icon-box svg { height: 8rem; width: 8rem; color: var(--primary); stroke-width: 1.3; }
@media (min-width: 1024px) { .mod-hero-grid { grid-template-columns: 1.3fr 1fr; align-items: center; } }

.pain-card { border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); padding: 2rem; box-shadow: var(--shadow-card); }
.promise-card { border-radius: 1.5rem; background: var(--gradient-primary); color: var(--primary-foreground); padding: 2rem; box-shadow: var(--shadow-glow); }
.pp-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pain-card .pp-tag { color: var(--destructive); }
.promise-card .pp-tag { opacity: 0.9; }
.pp-text { margin-top: 1rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.3; }

/* ============================ Footer ============================ */
.site-footer { margin-top: 6rem; border-top: 1px solid var(--border); background: var(--surface-warm); }
.footer-grid { display: grid; gap: 3rem; padding-block: 4rem; }
.footer-brand img { height: 2.25rem; width: auto; }
.footer-brand p { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; color: var(--muted-foreground); }
.social { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.social a { display: grid; place-items: center; height: 2.5rem; width: 2.5rem; border-radius: 9999px; background: var(--card); box-shadow: var(--shadow-card); transition: transform 0.2s ease; }
.social a:hover { transform: translateY(-2px); }
.footer-col h4 { margin-bottom: 1rem; font-size: 0.875rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-col a:hover { color: var(--primary); }
.footer-addr { margin-top: 1.5rem; display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom .container { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.5rem; padding-block: 1.5rem; font-size: 0.75rem; color: var(--muted-foreground); }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-brand { grid-column: span 2; }
  .footer-bottom .container { flex-direction: row; }
}

/* ============================ Botão flutuante WhatsApp ============================ */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: grid;
  place-items: center;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px -6px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s ease;
  animation: wa-pop 0.4s ease both;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 1.85rem; height: 1.85rem; }
@keyframes wa-pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ============================ Efeito Reveal (fade-up ao rolar) ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float { animation: none; }
}

/* ============================ Helpers de espaçamento ============================ */
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.order-1 { order: 1; }
.order-2 { order: 2; }
