:root {
  --bg: #070b16;
  --bg-elevated: #0d1424;
  --cyan: #22d3ee;
  --cyan-bright: #38bdf8;
  --violet: #8b5cf6;
  --text: #f4f7ff;
  --muted: #9aa8c2;
  --warn: #fbbf24;
  --border: rgba(34, 211, 238, 0.18);
  --glow: rgba(34, 211, 238, 0.35);
  --radius: 14px;
  --max: 1120px;
  --header-h: 76px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grad: linear-gradient(135deg, #22d3ee 0%, #38bdf8 40%, #8b5cf6 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(34, 211, 238, 0.2), transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 0%, rgba(139, 92, 246, 0.14), transparent 50%),
    linear-gradient(180deg, #050810 0%, var(--bg) 40%, #060a14 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1;
}

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

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

ul,
ol {
  list-style: none;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 11, 22, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  position: relative;
  z-index: 80;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.brand span span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--cyan);
}

.nav-cta {
  padding: 0.45rem 0.95rem !important;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cyan) !important;
}

.nav-cta:hover {
  background: rgba(34, 211, 238, 0.12);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 80;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(7, 11, 22, 0.9);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.28s var(--ease), opacity 0.2s;
  transform-origin: center;
}

body.nav-open .menu-toggle {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.12);
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 820px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 0.75rem) 1.35rem max(5.5rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: rgba(5, 8, 16, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
  }

  body.nav-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open .fab-wa {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav a {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    padding: 0.95rem 0.15rem;
    border-bottom: 1px solid rgba(34, 211, 238, 0.1);
    min-height: 48px;
  }

  .nav a.is-active {
    color: var(--cyan);
  }

  .nav-cta {
    margin-top: 1.15rem;
    justify-content: center;
    text-align: center;
    border-bottom: 0 !important;
    min-height: 48px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--grad);
  color: #041018;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.25);
}

.btn-outline {
  border-color: var(--border);
  color: var(--cyan);
}

.btn-outline:hover {
  background: rgba(34, 211, 238, 0.1);
}

.btn-ghost {
  border-color: rgba(244, 247, 255, 0.22);
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88svh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("assets/hero.webp") type("image/webp"),
    url("assets/hero.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: hero-drift 20s var(--ease) infinite alternate;
}

@media (max-width: 820px) {
  .hero__media {
    background-position: 72% center;
    background-size: cover;
    transform: none;
    animation: none;
  }

  .hero {
    min-height: min(78svh, 640px);
    align-items: end;
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 11, 22, 0.94) 0%, rgba(7, 11, 22, 0.78) 48%, rgba(7, 11, 22, 0.45) 100%),
    linear-gradient(0deg, rgba(7, 11, 22, 0.92) 0%, transparent 42%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5.5rem 0 3.4rem;
  animation: rise 0.85s var(--ease) both;
}

.hero__logo {
  width: clamp(88px, 14vw, 130px);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 24px rgba(34, 211, 238, 0.35));
  animation: pulse-glow 3.5s ease-in-out infinite;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 0.85rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.hero__lead {
  max-width: 38ch;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero {
  padding: 3.2rem 0 1.5rem;
}

.page-hero .eyebrow {
  margin-bottom: 0.55rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 48ch;
}

.section {
  padding: 3.5rem 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.section h2,
.block-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 18ch;
  margin: 0.5rem 0 0.65rem;
}

.section-lead {
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.notice {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  color: #fde68a;
  font-size: 0.9rem;
  margin: 0.75rem 0 1rem;
}

.notice strong {
  color: var(--warn);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice--soft {
  border-color: rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.08);
  color: var(--muted);
}

.notice--soft strong {
  color: var(--cyan);
}

/* Highlights */
.highlights {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(34, 211, 238, 0.12);
}

.highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
}

.highlight__n {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan);
  grid-row: 1 / span 2;
  padding-top: 0.15rem;
}

.highlight h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.highlight p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Services */
.service {
  display: grid;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
}

.service:first-of-type {
  border-top: 1px solid rgba(34, 211, 238, 0.12);
}

@media (min-width: 800px) {
  .service {
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.service__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
}

.chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--cyan);
}

.service h2 {
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  margin-bottom: 0.5rem;
}

.service p {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.service .steps {
  display: grid;
  gap: 0.55rem;
}

.service .steps li {
  color: var(--muted);
  padding-left: 1rem;
  border-left: 2px solid rgba(34, 211, 238, 0.35);
  font-size: 0.95rem;
}

.service .steps strong {
  color: var(--text);
}

.side-box {
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(13, 20, 36, 0.75);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.06);
}

.side-box__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.side-box__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.side-box p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.side-box ul {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.side-box li {
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 0.9rem;
  position: relative;
}

.side-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--glow);
}

.split {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 720px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split article {
  padding: 1.2rem;
  border-top: 2px solid var(--cyan);
}

.split h3 {
  font-family: var(--font-display);
  margin-bottom: 0.4rem;
}

.split p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Cases */
.cases {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .cases {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case__shot-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0.15rem 0 0.5rem;
  padding: 0.75rem 0.5rem 1.15rem;
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(34, 211, 238, 0.08), transparent 60%),
    #070b16;
  border: 1px solid rgba(34, 211, 238, 0.12);
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.case__shot-wrap:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.case__shot {
  display: block;
  width: min(100%, 200px);
  height: auto;
  border-radius: 18px;
  border: 2px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  background: #0a1020;
}

.case__shot-hint {
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  transform: translateX(-50%);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #071018;
  background: var(--cyan);
  white-space: nowrap;
  pointer-events: none;
}

/* Lightbox print */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 8, 16, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__panel {
  position: relative;
  width: min(100%, 420px);
  max-height: min(92svh, 900px);
  overflow: auto;
  border-radius: 16px;
  background: #0a1020;
  border: 1px solid rgba(34, 211, 238, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  -webkit-overflow-scrolling: touch;
}

.lightbox__img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 11, 22, 0.85);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: var(--cyan);
  color: #071018;
}

.lightbox__caption {
  position: sticky;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  background: linear-gradient(transparent, #0a1020 35%);
  text-align: center;
}

.case {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(34, 211, 238, 0.14);
  border-radius: var(--radius);
  background: rgba(13, 20, 36, 0.55);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.case:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.12);
}

.case__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
}

.case strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.case p {
  color: var(--muted);
  font-size: 0.92rem;
}

.case__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.case__links a {
  font-size: 0.85rem;
  color: var(--cyan);
  border-bottom: 1px solid transparent;
}

.case__links a:hover {
  border-bottom-color: var(--cyan);
}

/* Contact */
.close {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .close {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }
}

.close__foto {
  width: 150px;
  height: 188px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.close h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0.35rem 0 0.6rem;
}

.close p {
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 1.1rem;
}

.close__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.channels {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .channels {
    grid-template-columns: repeat(3, 1fr);
  }
}

.channel {
  display: block;
  padding: 1.25rem 1.15rem;
  border: 1px solid rgba(34, 211, 238, 0.14);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.channel:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.channel__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

.channel h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.channel p {
  color: var(--muted);
  font-size: 0.9rem;
}

.foot {
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  padding: 1.25rem 0 1.75rem;
  margin-top: auto;
}

.foot__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.foot a:hover {
  color: var(--cyan);
}

/* Steps / prazo / depoimento */
.steps-grid {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.step-card {
  padding: 1.25rem 1.15rem;
  border: 1px solid rgba(34, 211, 238, 0.14);
  border-radius: var(--radius);
  background: rgba(13, 20, 36, 0.55);
}

.step-card__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 0.55rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.prazo-strip {
  margin-top: 2rem;
  padding: 1.25rem 1.2rem;
  border-left: 3px solid var(--cyan);
  background: rgba(34, 211, 238, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.prazo-strip strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}

.prazo-strip p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 52ch;
}

.testimonial {
  margin-top: 1.5rem;
  padding: 1.35rem 1.25rem;
  border: 1px dashed rgba(34, 211, 238, 0.28);
  border-radius: var(--radius);
  background: rgba(13, 20, 36, 0.4);
}

.testimonial__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.5rem;
}

.testimonial p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48ch;
}

.testimonial em {
  color: var(--text);
  font-style: normal;
}

/* Floating WhatsApp */
.fab-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.fab-wa:hover {
  transform: translateY(-3px) scale(1.04);
}

.fab-wa svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (min-width: 821px) {
  .fab-wa {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08) translate3d(-1%, -0.5%, 0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.28));
  }
  50% {
    filter: drop-shadow(0 0 32px rgba(139, 92, 246, 0.4));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media,
  .hero__logo,
  .reveal,
  .hero__content {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
