/* ==========================================================================
   Strategic Core — landing page
   ========================================================================== */

:root {
  --orange: #ff5722;
  --orange-600: #f4511e;
  --orange-300: #ff8a65;
  --indigo: #3333aa;
  --indigo-400: #5c5ce0;
  --green: #43a047;
  --red: #e53935;
  --whatsapp: #25d366;
  --whatsapp-600: #128c7e;

  --ink: #15152e;
  --ink-2: #3d3d5c;
  --muted: #6a6a86;
  --line: #e7e7f1;
  --bg: #ffffff;
  --bg-soft: #f6f6fb;
  --dark: #0e0e24;
  --dark-2: #16163a;

  --brand-gradient: linear-gradient(120deg, var(--orange) 0%, #c7407a 50%, var(--indigo) 100%);

  --font-head: "Catamaran", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(21, 21, 46, .06), 0 2px 8px rgba(21, 21, 46, .05);
  --shadow-md: 0 10px 30px -12px rgba(21, 21, 46, .25);
  --shadow-phone: 0 40px 80px -30px rgba(0, 0, 0, .55), 0 18px 36px -18px rgba(0, 0, 0, .45);

  --nav-h: 72px;
  --container: 1160px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(72px, 10vw, 128px);
}

/* Base -------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) - 8px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

:focus-visible {
  outline: 3px solid var(--orange-300);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

/* Buttons ----------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  padding: .85em 1.6em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

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

.btn .icon {
  transition: transform .2s ease;
}

.btn:hover .icon {
  transform: translateX(4px);
}

.btn--primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 30px -10px rgba(255, 87, 34, .7);
}

.btn--primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(255, 87, 34, .8);
}

.btn--light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .45);
}

.btn--light:hover {
  color: var(--orange-600);
  transform: translateY(-2px);
}

.btn--whatsapp {
  color: #fff;
  background: var(--whatsapp-600);
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .6);
}

.btn--whatsapp:hover {
  background: #0f7a6c;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(37, 211, 102, .7);
}

.btn[disabled] {
  opacity: .65;
  cursor: progress;
  transform: none;
}

/* Navigation -------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  color: #fff;
  transition: background-color .3s ease, box-shadow .3s ease, color .3s ease, height .3s ease;
}

.nav.is-scrolled {
  --nav-h: 64px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(21, 21, 46, .08), 0 8px 24px -16px rgba(21, 21, 46, .3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav__logo {
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 10px;
  fill: #fff;
  background: var(--orange);
  box-shadow: 0 6px 16px -6px rgba(255, 87, 34, .8);
}

.nav__menu {
  margin-left: auto;
}

.nav__menu ul {
  display: flex;
  gap: 6px;
}

.nav__cta {
  flex-shrink: 0;
  font-size: .9rem;
  padding: .65em 1.2em;
  box-shadow: 0 8px 20px -10px rgba(37, 211, 102, .7);
}

.nav__cta .icon {
  width: 1.3em;
  height: 1.3em;
}

.nav__cta:hover .icon {
  transform: none;
}

.nav__link {
  position: relative;
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s ease, background-color .2s ease, color .2s ease;
}

.nav__link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, .12);
}

.nav.is-scrolled .nav__link:hover {
  background: rgba(21, 21, 46, .06);
}

.nav__link.is-active {
  opacity: 1;
  color: var(--orange-300);
}

.nav.is-scrolled .nav__link.is-active {
  color: var(--orange-600);
}

.nav__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .nav__cta {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .nav__cta-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__brand {
    white-space: nowrap;
  }

  .nav__cta {
    margin-left: auto;
  }

  .nav__menu {
    position: absolute;
    top: calc(var(--nav-h) + 4px);
    left: var(--gutter);
    right: var(--gutter);
    padding: 8px;
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(21, 21, 46, .06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }

  .nav.is-open .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav__menu ul {
    flex-direction: column;
    gap: 2px;
  }

  .nav__link {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
  }

  .nav__link:hover {
    background: var(--bg-soft);
  }

  .nav__link.is-active {
    color: var(--orange-600);
  }

  .nav.is-open:not(.is-scrolled) {
    background: rgba(14, 14, 36, .92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
}

@media (max-width: 374.98px) {
  .nav__inner {
    gap: 10px;
  }

  .nav__brand {
    gap: 8px;
    font-size: 1.1rem;
  }

  .nav__logo {
    width: 30px;
    height: 30px;
    padding: 5px;
  }

  .nav__toggle {
    font-size: 0;
    gap: 0;
    padding: 0;
    width: 42px;
    height: 42px;
    justify-content: center;
  }

  .nav__toggle .icon {
    font-size: 1rem;
  }
}

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

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
  padding: calc(var(--nav-h) + clamp(40px, 7vw, 88px)) 0 clamp(64px, 9vw, 112px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero::before {
  width: 780px;
  height: 780px;
  left: -260px;
  top: -320px;
  background: radial-gradient(closest-side, rgba(255, 87, 34, .55), transparent);
}

/* O brilho termina acima da borda inferior para emendar com a faixa escura do Download */
.hero::after {
  width: 780px;
  height: 780px;
  right: -280px;
  bottom: 48px;
  background: radial-gradient(closest-side, rgba(51, 51, 170, .75), transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.hero__content {
  position: relative;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 17ch;
  text-wrap: balance;
}

.hero h1 b {
  font-weight: 800;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__device {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__device::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: var(--brand-gradient);
  filter: blur(60px);
  opacity: .55;
  z-index: -1;
}

.hero__device .phone {
  width: 300px;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@media (max-width: 991.98px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero__device .phone {
    width: 240px;
  }
}

/* Phone frame ------------------------------------------------------------- */

.phone {
  position: relative;
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(145deg, #2b2b3d, #0b0b14 40%);
  box-shadow: var(--shadow-phone), inset 0 0 0 1.5px rgba(255, 255, 255, .08);
}

.phone::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 22%;
  width: 3px;
  height: 14%;
  border-radius: 0 3px 3px 0;
  background: #22222f;
}

.phone img {
  width: 100%;
  border-radius: 27px;
  background: #fafafa;
}

.phone--ios {
  padding: 11px;
  border-radius: 48px;
}

.phone--ios img {
  border-radius: 38px;
}

.phone--sm {
  padding: 8px;
  border-radius: 30px;
}

.phone--sm img {
  border-radius: 23px;
}

.phone--xs {
  padding: 7px;
  border-radius: 26px;
}

.phone--xs img {
  border-radius: 20px;
}

/* Sections ---------------------------------------------------------------- */

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 800;
  text-wrap: balance;
}

.section-lead {
  margin-top: 14px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  text-wrap: pretty;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.section-rule {
  display: block;
  width: 64px;
  height: 4px;
  margin: 28px auto 0;
  border-radius: 4px;
  background: var(--brand-gradient);
}

/* Download ---------------------------------------------------------------- */

.download {
  position: relative;
  padding: 0 0 var(--section-y);
  background: linear-gradient(var(--dark) 0, var(--dark) 90px, var(--bg-soft) 90px);
}

.download__card {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 64px);
  border-radius: 28px;
  /* Barra colorida no topo como camada do fundo: acompanha o arredondamento do card */
  background: var(--brand-gradient) top / 100% 5px no-repeat, #fff;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(21, 21, 46, .05);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.badge-link {
  display: block;
  border-radius: 12px;
  transition: transform .2s ease, filter .2s ease;
}

.badge-link:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 10px 14px rgba(21, 21, 46, .22));
}

.badge-link img {
  height: 56px;
  width: auto;
}

/* Features ---------------------------------------------------------------- */

.features {
  padding: 0 0 var(--section-y);
  background: var(--bg-soft);
}

.features__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 8fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.features__device {
  display: flex;
  justify-content: center;
}

.slideshow {
  width: 270px;
  display: grid;
}

.slideshow img {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity .7s ease;
}

.slideshow img.is-active {
  opacity: 1;
}

.features__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(21, 21, 46, .04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(21, 21, 46, .04);
}

.feature__icon,
.flash__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 10px 20px -10px rgba(255, 87, 34, .8);
}

.feature__icon .icon,
.flash__icon .icon {
  width: 26px;
  height: 26px;
}

.feature h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .features__device {
    order: 2;
  }
}

@media (max-width: 575.98px) {
  .features__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .feature {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    padding: 22px;
  }

  .feature__icon {
    grid-row: span 2;
    margin-bottom: 0;
  }
}

/* Aprovação Relâmpago ----------------------------------------------------- */

.flash {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--section-y) 0;
  color: #fff;
  background: var(--brand-gradient);
}

.flash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.flash__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.flash__devices {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  align-items: center;
  max-width: 600px;
  margin-inline: auto;
}

.flash__phone--left {
  transform: translateX(18%) rotate(-7deg) scale(.9);
  z-index: 1;
}

.flash__phone--center {
  z-index: 2;
}

.flash__phone--right {
  transform: translateX(-18%) rotate(7deg) scale(.9);
  z-index: 1;
}

.flash__content h3 {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.flash__icon {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .4);
}

.swipe {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.4;
}

.swipe br {
  display: none;
}

.swipe__line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  margin-top: 12px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.swipe__line .icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  color: #fff;
}

.swipe__line--ok .icon {
  background: var(--green);
}

.swipe__line--no .icon {
  background: var(--red);
}

@media (max-width: 991.98px) {
  .flash__grid {
    grid-template-columns: 1fr;
  }

  .flash__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Gallery ----------------------------------------------------------------- */

.gallery {
  padding: calc(var(--section-y) * .75) 0 var(--section-y);
  background: var(--bg);
}

.gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__track:focus-visible {
  outline-offset: -3px;
}

.gallery__slide {
  display: flex;
  justify-content: center;
  padding: 16px var(--gutter) 48px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.gallery__phone {
  width: min(420px, 80vw, calc((100svh - 300px) * .5625 + 24px));
  min-width: min(300px, 80vw);
  padding: 12px;
  border-radius: 44px;
  box-shadow: 0 24px 40px -20px rgba(21, 21, 46, .45), inset 0 0 0 1.5px rgba(255, 255, 255, .08);
}

.gallery__phone img {
  border-radius: 32px;
}

.gallery__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.gallery__btn {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.gallery__btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.gallery__dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gallery__dot {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.gallery__dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cfcfe0;
  transition: width .25s ease, background-color .25s ease;
}

.gallery__dot:hover::before {
  background: var(--orange-300);
}

.gallery__dot[aria-current="true"]::before {
  width: 22px;
  background: var(--orange);
}

@media (max-width: 575.98px) {
  .gallery__controls {
    gap: 8px;
  }

  .gallery__dot {
    width: 18px;
  }
}

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

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(120px, 16vw, 200px) 0;
  text-align: center;
  color: #fff;
  background: var(--dark) url("../img/bg-2-1920.webp") center / cover no-repeat;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 87, 34, .85) 0%, rgba(14, 14, 36, .72) 55%, rgba(51, 51, 170, .88) 100%);
}

@media (max-width: 960px) {
  .cta {
    background-image: url("../img/bg-2-960.webp");
  }
}

.cta h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 40px;
  text-wrap: balance;
}

/* Contato ------------------------------------------------------------------ */

.lead {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--section-y) 0;
  color: #fff;
  background: var(--dark);
}

.lead::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 440px;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 87, 34, .35), transparent);
  filter: blur(30px);
}

.lead__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 64px);
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lead__card h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 800;
}

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

.footer {
  padding: 56px 0 48px;
  text-align: center;
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .55);
  background: #08081a;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer__brand {
  display: inline-block;
  margin-bottom: 16px;
}

.footer a {
  text-decoration: none;
  transition: color .2s ease;
}

.footer a:hover {
  color: #fff;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-top: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
}

/* Reveal on scroll -------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.js .reveal--delay {
  transition-delay: .12s;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
