/* ===========================
   F.LIMA USINAGEM — LANDING PAGE
   Industrial-Refined Minimalism
   =========================== */

:root {
  /* Core palette */
  --bg-primary: #0c0c0e;
  --bg-secondary: #131316;
  --bg-card: #1a1a1f;
  --bg-card-hover: #222228;

  --text-primary: #f0ece4;
  --text-secondary: #9a968e;
  --text-muted: #5c5955;

  --accent: #29aadf;
  --accent-light: #4dc8f5;
  --accent-dark: #1a6fc4;

  --border: rgba(41, 170, 223, 0.12);
  --border-hover: rgba(41, 170, 223, 0.3);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.text-accent {
  color: var(--accent);
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.nav--scrolled {
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px);
  padding: 0.75rem 2rem;
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  transition: color 0.3s;
}

.nav__logo-f {
  color: var(--accent);
}

.nav__logo-img {
  height: 68px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}

.nav__logo-img:hover {
  opacity: 0.85;
}

.hero__logo {
  margin-bottom: 1.5rem;
}

.hero__logo-img {
  height: 120px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(41, 170, 223, 0.35));
}

.footer__logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 0.35rem;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.nav__cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41, 170, 223, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 170, 223, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 30%, transparent 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(41, 170, 223, 0.08), transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero__tag {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero__title--accent {
  color: var(--accent);
  position: relative;
}

.hero__title--accent::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0.4;
}

.hero__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

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

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll-indicator span {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(41, 170, 223, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

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

.btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

/* =====================
   STATS
   ===================== */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  gap: 3rem;
}

.stats__item {
  text-align: center;
  flex: 1;
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--accent);
  line-height: 1;
}

.stats__suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent);
}

.stats__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stats__divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* =====================
   CLIENTES (CARROSSEL)
   ===================== */
.clientes {
  padding: var(--section-pad) 0 3rem;
  overflow: hidden;
}

.clientes__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.clientes__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.clientes__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.clientes__track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.clientes__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: clienteScroll 30s linear infinite;
}

.clientes__track:hover {
  animation-play-state: paused;
}

.clientes__item {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}

.clientes__item:hover {
  border-color: var(--accent);
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.1);
}

.clientes__item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(2);
  opacity: 0.75;
  transition: filter 0.4s, opacity 0.4s;
}

.clientes__item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

@keyframes clienteScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================
   SOBRE
   ===================== */
.sobre {
  padding: var(--section-pad) 2rem;
}

.sobre__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.sobre__label,
.servicos__label,
.diferenciais__label,
.contato__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
  align-items: start;
}

.sobre__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.sobre__text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.sobre__text strong {
  color: var(--text-primary);
}

.sobre__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sobre__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.3s, background 0.3s;
}

.sobre__card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.sobre__card-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  flex-shrink: 0;
}

.sobre__card-title {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

.sobre__card-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 0.15rem;
  display: block;
}

/* =====================
   SERVIÇOS
   ===================== */
.servicos {
  padding: var(--section-pad) 2rem;
  background: var(--bg-secondary);
}

.servicos__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.servicos__header {
  margin-bottom: 3rem;
}

.servicos__header h2,
.diferenciais__header h2,
.contato__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servico-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
  overflow: hidden;
}

.servico-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(41, 170, 223, 0.08);
}

.servico-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(41, 170, 223, 0.08);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}

.servico-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.servico-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.servico-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.servico-card__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s var(--ease);
}

.servico-card:hover .servico-card__line {
  width: 100%;
}

/* =====================
   DIFERENCIAIS
   ===================== */
.diferenciais {
  padding: var(--section-pad) 2rem;
}

.diferenciais__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.diferenciais__header {
  margin-bottom: 3rem;
  text-align: center;
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.diferencial {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}

.diferencial:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
}

.diferencial__icon-wrap {
  margin-bottom: 1.25rem;
}

.diferencial__icon {
  font-size: 2rem;
}

.diferencial h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.diferencial p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  padding: var(--section-pad) 2rem;
  background: var(--bg-secondary);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(41, 170, 223, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* =====================
   CONTATO
   ===================== */
.contato {
  padding: var(--section-pad) 2rem;
}

.contato__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.contato__header {
  margin-bottom: 3rem;
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato__info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s;
}

.contato__info-card:hover {
  border-color: var(--border-hover);
}

.contato__info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contato__info-icon--whatsapp {
  color: #25D366;
}

.contato__info-title {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

.contato__info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
  margin-top: 0.15rem;
  transition: color 0.3s;
}

a.contato__info-value:hover {
  color: var(--accent);
}

.contato__info-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.15rem;
}

/* Form */
.contato__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-primary);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41, 170, 223, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.footer__brand p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* =====================
   WHATSAPP FLOAT
   ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55); }
}

/* =====================
   ANIMATIONS
   ===================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 968px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  /* Mobile menu open state */
  .nav.nav--open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(12, 12, 14, 0.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav.nav--open .nav__cta {
    display: block;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
    padding: 1rem 2rem;
    text-align: center;
    transform: translateY(calc(1.5rem * 5 + 2rem * 2));
  }

  .nav.nav--open .nav__mobile-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav.nav--open .nav__mobile-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.nav--open .nav__mobile-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contato__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .stats__inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stats__divider {
    width: 60px;
    height: 1px;
  }

  .servicos__grid {
    grid-template-columns: 1fr;
  }

  .diferenciais__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero__scroll-indicator {
    display: none;
  }
}
