/* ============================================
   UNIPAPO - Plataforma Omnicanal
   Tema claro + destaque preto
   ============================================ */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --bg: #f5f5f5;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --accent: #0a0a0a;
  --accent-dim: rgba(0, 0, 0, 0.08);
  --accent-glow: rgba(0, 0, 0, 0.12);
  --black-card: var(--bg-card);
  --black-elevated: var(--bg-elevated);
  --black-soft: var(--bg);

  /* Grid responsivo */
  --container-max: 1200px;
  --grid-gap: 1.5rem;
  --section-padding: 2rem;

  /* Frame - fundo unificado */
  --frame-max: 1280px;
}

@media (min-width: 640px) {
  :root {
    --section-padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --grid-gap: 2rem;
    --section-padding: 3rem;
  }
}

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

/* Skip link - acessibilidade */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--black);
  color: var(--white);
  z-index: 10000;
  font-weight: 600;
  border-radius: 8px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Focus visível - acessibilidade (UI/UX) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Hierarquia visual - áreas clicáveis com feedback */
a[href]:hover,
button:hover {
  cursor: pointer;
}

/* ============================================
   Layout em Grade - Container e Grid
   ============================================ */

/* Page frame - conteúdo centralizado, fundo unificado */
.page-frame {
  max-width: var(--frame-max);
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-padding);
  padding-right: var(--section-padding);
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }

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

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ============================================
   Scroll Progress Bar
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gray-400));
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* ============================================
   Navegação
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #0a0a0a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  max-width: var(--frame-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--section-padding);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  min-height: 44px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-300);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--black) !important;
  border: 1px solid var(--white);
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--gray-200);
  border-color: var(--gray-200);
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #0a0a0a !important;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    transition: transform 0.3s;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-toggle span {
    transition: transform 0.3s, opacity 0.3s;
  }
}

/* ============================================
   Problema → Solução (múltiplos chats → chat unificado)
   ============================================ */

.problem-solution {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 6rem 1rem 4rem;
  overflow: hidden;
}

.ps-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
}

.ps-problem {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.ps-solution {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  pointer-events: none;
}

.problem-solution.solved .ps-problem {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  pointer-events: none;
}

.problem-solution.solved .ps-solution {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

/* Conteúdo do problema */
.ps-content {
  text-align: center;
  margin-bottom: 2.5rem;
  z-index: 2;
}

.ps-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.ps-title-problem {
  display: block;
}

.ps-subtitle {
  color: var(--gray-500);
  font-size: 1.1rem;
}

/* Múltiplos chats caóticos */
.chats-chaos {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 280px;
  margin-bottom: 3rem;
  perspective: 1000px;
}

.chat-window {
  position: absolute;
  width: 180px;
  min-height: 120px;
  background: #0a0a0a;
  border: 1px solid var(--gray-700);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.chat-1 { top: 0; left: 5%; transform: rotate(-8deg); }
.chat-2 { top: 10px; left: 35%; transform: rotate(5deg); }
.chat-3 { top: 40px; right: 25%; transform: rotate(-4deg); }
.chat-4 { bottom: 20px; left: 15%; transform: rotate(3deg); }
.chat-5 { bottom: 0; right: 10%; transform: rotate(-6deg); }

.problem-solution.solved .chat-window {
  opacity: 0;
  transform: scale(0.3) !important;
  pointer-events: none;
}

.chat-header {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-300);
  background: rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chat-body {
  padding: 0.6rem;
}

.chat-body .msg {
  font-size: 0.7rem;
  padding: 0.35rem 0.5rem;
  margin-bottom: 0.3rem;
  border-radius: 8px;
  max-width: 100%;
}

.msg-in {
  background: rgba(255,255,255,0.1);
  color: var(--gray-200);
}

.msg-out {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  margin-left: auto;
}

/* Botão Solução - MUITO destacado */
.btn-solucao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15), 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 10;
  animation: btnSolucaoPulse 2.5s ease-in-out infinite;
}

.btn-solucao:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 25px 60px rgba(0, 0, 0, 0.25);
  background: var(--gray-800);
}

.btn-solucao:active {
  transform: scale(0.98);
}

.problem-solution.solved .btn-solucao {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes btnSolucaoPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15), 0 20px 50px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1), 0 20px 50px rgba(0, 0, 0, 0.25); }
}

.btn-solucao-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.btn-solucao:hover .btn-solucao-arrow {
  transform: translateX(4px);
}

/* Chat unificado - solução (retângulos representando o layout) */
.unified-chat {
  display: flex;
  width: 100%;
  max-width: 720px;
  height: 380px;
  background: var(--bg-card);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
}

.problem-solution.solved .unified-chat {
  opacity: 1;
  transform: scale(1);
}

/* Wireframe: retângulos representando o layout */
.unified-chat-wireframe {
  display: flex;
}

.rect {
  background: var(--gray-200);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
}

/* Barra lateral navegação (escura) */
.rect-nav {
  width: 56px;
  flex-shrink: 0;
  background: var(--gray-800);
  border-right: 1px solid var(--gray-700);
  border-radius: 0;
}

/* Painel lista de conversas */
.rect-list {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--gray-100);
  border: none;
  border-right: 1px solid var(--gray-200);
  border-radius: 0;
}

.rect-list-header {
  height: 36px;
  background: var(--gray-300);
}

.rect-list-search {
  height: 32px;
  background: var(--gray-200);
}

.rect-list-item {
  height: 48px;
  background: var(--gray-200);
}

.rect-list-item:first-of-type {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* Área principal do chat */
.rect-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--white);
  border: none;
  border-radius: 0;
}

.rect-chat-header {
  height: 44px;
  background: var(--gray-200);
}

.rect-chat-msgs {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  background: transparent;
  border: none;
}

.rect-msg {
  height: 32px;
  width: 60%;
  background: var(--gray-200);
}

.rect-msg-out {
  width: 50%;
  align-self: flex-end;
  background: var(--accent-dim);
}

.rect-chat-input {
  height: 48px;
  background: var(--gray-200);
}

.ps-solution-cta {
  text-align: center;
  margin-top: 2rem;
}

.ps-solution-cta p {
  color: var(--gray-400);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Tablet */
@media (max-width: 900px) {
  .problem-solution {
    padding: 5rem 1rem 3rem;
  }

  .ps-title {
    font-size: 1.5rem;
  }

  .feature-card {
    flex: 0 0 280px;
  }

  .step {
    gap: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .problem-solution {
    padding: 5rem 1rem 3rem;
  }

  .ps-content {
    margin-bottom: 2rem;
  }

  .ps-title {
    font-size: 1.35rem;
  }

  .chats-chaos {
    height: 320px;
    margin-bottom: 2rem;
  }

  .chat-window {
    width: 140px;
    min-height: 100px;
  }

  .chat-1 { left: 0; top: 0; }
  .chat-2 { left: 28%; top: 5px; }
  .chat-3 { right: 5%; top: 30px; }
  .chat-4 { left: 5%; bottom: 30px; }
  .chat-5 { right: 5%; bottom: 10px; }

  .btn-solucao {
    font-size: 1.15rem;
    padding: 1rem 1.75rem;
    min-height: 48px;
  }

  .unified-chat {
    flex-direction: column;
    height: auto;
    max-height: 420px;
    margin: 0 1rem;
  }

  .rect-nav {
    width: 100%;
    height: 44px;
  }

  .rect-list {
    width: 100%;
    max-height: 140px;
  }

  .rect-main {
    flex: 1;
    min-height: 180px;
  }

  .features-section,
  .how-section,
  .different-section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .steps-container {
    padding: 0 1rem;
  }

  .step {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }

  .step-line {
    margin-left: 1.5rem;
    height: 24px;
  }

  .different-content {
    padding: 0 1rem;
  }

  .cta-section {
    padding: 4rem 1rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .footer {
    padding: 3rem 1rem;
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .chat-window {
    width: 120px;
  }

  .chat-1 { left: -5%; }
  .chat-2 { left: 25%; }
  .chat-5 { right: 0; }

  .btn-solucao {
    width: 100%;
    max-width: 280px;
  }

  .btn,
  .btn-large {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    justify-content: center;
  }
}

/* ============================================
   Buttons gerais
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--accent-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-400);
}

.btn-secondary:hover {
  border-color: var(--gray-600);
  background: var(--gray-100);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ============================================
   Seção Features - Scroll horizontal dinâmico
   ============================================ */

.features-section {
  padding: 5rem 0 6rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 var(--section-padding);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
}

#featuresScroll {
  padding: 0;
}

/* Desktop: 3 na primeira linha, 2 na segunda centralizados */
@media (min-width: 1024px) {
  #featuresScroll {
    grid-template-columns: repeat(6, 1fr);
    justify-items: stretch;
  }
  #featuresScroll .feature-card:nth-child(1) { grid-column: 1 / 3; }
  #featuresScroll .feature-card:nth-child(2) { grid-column: 3 / 5; }
  #featuresScroll .feature-card:nth-child(3) { grid-column: 5 / 7; }
  #featuresScroll .feature-card:nth-child(4) { grid-column: 2 / 4; }
  #featuresScroll .feature-card:nth-child(5) { grid-column: 4 / 6; }
}

.feature-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
  transform: scale(0.98);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feature-card.visible {
  opacity: 1;
  transform: scale(1);
}

.feature-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--black);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   Como funciona - Steps com reveal
   ============================================ */

.how-section {
  padding: 6rem 2rem;
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step:nth-child(odd) {
  transform: translateX(30px);
}

.step.visible:nth-child(odd) {
  transform: translateX(0);
}

.step-number {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  opacity: 0.8;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.step p {
  color: var(--gray-500);
  font-size: 1rem;
}

.step-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-300), transparent);
  margin-left: 1.5rem;
}

/* ============================================
   Diferencial - Parallax
   ============================================ */

.different-section {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
}

.different-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0, 0, 0, 0.03), transparent 70%);
  will-change: transform;
}

.different-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.different-section .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.different-text {
  font-size: 1.15rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.different-list {
  list-style: none;
}

.different-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: var(--gray-700);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.different-list li.visible {
  opacity: 1;
  transform: translateY(0);
}

.different-list li:nth-child(1) { transition-delay: 0.1s; }
.different-list li:nth-child(2) { transition-delay: 0.2s; }
.different-list li:nth-child(3) { transition-delay: 0.3s; }

.check {
  color: var(--black);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ============================================
   CTA Final
   ============================================ */

.cta-section {
  padding: 6rem 2rem;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: #0a0a0a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.footer-inner {
  max-width: var(--frame-max);
  margin: 0 auto;
  padding: 4rem var(--section-padding);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.95;
  object-fit: contain;
}

.footer-text {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: var(--gray-500);
  font-size: 0.85rem;
}
