﻿/* ==========================================================================
   PC Ar Condicionado â€” Premium Stylesheet
   Identidade: luxo tÃ©cnico â€” navy profundo + acento dourado
   ========================================================================== */

:root {
  --bg: #0b1120;
  --bg-alt: #0f172a;
  --ink: #e2e8f0;
  --ink-soft: #94a3b8;
  --accent: #f59e0b;
  --accent-strong: #d97706;
  --accent-soft: rgba(245, 158, 11, 0.12);
  --card-bg: #111a2e;
  --glass: rgba(17, 26, 46, 0.55);
  --border: rgba(148, 163, 184, 0.14);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --font-display: "Space Grotesk", sans-serif;
  --font-sub: "Archivo", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 2000;
  background: var(--accent);
  color: #0b1120;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  transition: top 0.3s var(--ease);
}
.skip-link:focus {
  top: 16px;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1600;
  pointer-events: none;
  border-radius: 50%;
  will-change: transform;
}
.cursor {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--accent);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor.is-hover {
  width: 64px;
  height: 64px;
  background: rgba(245, 158, 11, 0.14);
}
@media (hover: hover) and (pointer: fine) {
  .cursor.is-ativo,
  .cursor-dot.is-ativo {
    opacity: 1;
  }
}
@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-dot {
    display: none;
  }
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.preloader__inner {
  text-align: center;
}
.preloader__snow {
  font-size: 60px;
  display: block;
  animation: giro 2.5s linear infinite;
  color: var(--accent);
}
.preloader__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 4vw, 30px);
  margin-top: 12px;
}
@keyframes giro {
  to {
    transform: rotate(360deg);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn--solid {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0b1120;
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
}
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.45);
}
.btn--ghost {
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--light {
  background: #fff;
  color: #d97706;
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  padding: 18px 0;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(11, 17, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}
.nav.is-hidden {
  transform: translateY(-100%);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.nav__logo-icone {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0b1120;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}
.nav__logo-accento {
  color: var(--accent);
}
.nav__links {
  display: flex;
  gap: 32px;
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: 15px;
}
.nav__links a {
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__cta {
  padding: 10px 22px;
  font-size: 14px;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.menu-mobile {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.menu-mobile.is-open {
  transform: translateY(0);
}
.menu-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 40px);
  font-weight: 700;
}
.menu-mobile .btn {
  margin-top: 8px;
  font-size: 16px;
  align-self: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 24px 60px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__gradiente {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.14), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(30, 58, 138, 0.25), transparent 50%);
}
.hero__linhas {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 100% 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}
.hero__brilho {
  position: absolute;
  top: 15%;
  right: 8%;
  font-size: 90px;
  opacity: 0.07;
  animation: brilhar 6s ease-in-out infinite;
  color: var(--accent);
}
@keyframes brilhar {
  50% {
    transform: translateY(-20px) rotate(12deg);
    opacity: 0.15;
  }
}
.hero__grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulsar 2s infinite;
}
@keyframes pulsar {
  50% {
    opacity: 0.3;
  }
}
.hero__titulo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero__titulo .linha {
  display: block;
  overflow: hidden;
}
.hero__titulo .linha span {
  display: inline-block;
  transform: translateY(110%);
}
.txt-destaque {
  background: linear-gradient(120deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
}
.hero__sub {
  margin-top: 24px;
  max-width: 520px;
  font-size: 17px;
  color: var(--ink-soft);
}
.hero__acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hero__stats {
  display: flex;
  gap: 44px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat__label {
  font-family: var(--font-sub);
  font-size: 13px;
  color: var(--ink-soft);
}
.hero__visual {
  display: flex;
  justify-content: center;
}
.hero__card {
  position: relative;
  width: min(380px, 100%);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px;
  transform: translateZ(0);
}
.hero__card-nota {
  text-align: center;
  padding: 10px 0 20px;
}
.hero__card-nota-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  color: var(--accent);
}
.hero__card-stars {
  color: #f59e0b;
  letter-spacing: 3px;
  font-size: 18px;
  display: block;
}
.hero__card-nota-txt {
  font-family: var(--font-sub);
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.hero__card-img {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.hero__card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.2), transparent 60%);
}
 .hero__card-icon {
  width: 150px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}
.hero__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}
.hero__card-nome {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 14px;
}
.hero__card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #4ade80;
}
.hero__card-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulsar 2s infinite;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: var(--accent);
  animation: deslizar 1.8s infinite;
}
@keyframes deslizar {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.secao {
  position: relative;
  padding: 110px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.secao__cabecalho {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.secao__eyebrow {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.secao__titulo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.secao__desc {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16px;
}

.servicos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 158, 11, 0.35);
}
.card__icone {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.card:hover .card__icone {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0b1120;
}
.card__icone svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.card__titulo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}
.card__texto { color: var(--ink-soft); font-size: 15px; margin-bottom: 20px; flex-grow: 1; }
.card__link {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  position: relative;
}
.card__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.card__link:hover::after {
  width: 100%;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sobre__visual {
  position: relative;
}
.sobre__img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1e3a8a, #0b1120);
  display: grid;
  place-items: center;
  color: rgba(251, 191, 36, 0.6);
  box-shadow: var(--shadow-md);
}
.sobre__img svg { width: min(300px, 78%); height: auto; fill: none; }
.sobre__badge {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
}
.sobre__badge strong {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.sobre__badge span {
  font-family: var(--font-sub);
  font-size: 13px;
  color: var(--ink-soft);
}
.sobre__txt {
  margin: 18px 0 26px;
  color: var(--ink-soft);
  font-size: 16px;
}
.sobre__lista {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.sobre__lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: 15px;
}
.sobre__lista li::before {
  content: "âœ“";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.depoimentos {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.depoimentos .secao__cabecalho {
  padding: 0 24px;
}
.depoimentos__carrossel {
  overflow: hidden;
}
.depoimentos__faixa {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.depoimento {
  flex: 0 0 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}
.depoimento__stars {
  color: #f59e0b;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.depoimento__txt {
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 24px;
}
.depoimento__autor strong {
  font-family: var(--font-display);
  display: block;
  font-size: 16px;
}
.depoimento__autor span {
  color: var(--ink-soft);
  font-size: 14px;
}
.depoimentos__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.depoimentos__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
  background: var(--card-bg);
  color: var(--ink);
}
.depoimentos__btn:hover {
  background: var(--accent);
  color: #0b1120;
  border-color: var(--accent);
}

.regioes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.regiao {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.regiao:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.regiao__icone {
  font-size: 34px;
  display: block;
  margin-bottom: 14px;
}
.regiao__nome {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.regiao__txt {
  color: var(--ink-soft);
  font-size: 14px;
}

.cta__caixa {
  background: linear-gradient(135deg, #1e3a8a, #0f172a 70%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta__caixa::before {
  content: "â—†";
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 150px;
  opacity: 0.08;
  color: var(--accent);
  transform: rotate(12deg);
}
.cta__caixa .secao__eyebrow {
  color: #fbbf24;
}
.cta__titulo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.15;
  max-width: 680px;
  margin: 0 auto;
}
.cta__txt {
  margin: 18px auto 32px;
  max-width: 560px;
  font-size: 16px;
  color: var(--ink-soft);
}
.cta__acoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.btn--ghost.btn--light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #e2e8f0;
}
.btn--ghost.btn--light:hover {
  border-color: #fbbf24;
  color: #fbbf24;
}

.footer {
  background: #070d1a;
  color: #fff;
  padding: 70px 24px 30px;
  margin-top: 40px;
}
.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer__marca p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 320px;
}
.footer .nav__logo-accento {
  color: #fbbf24;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 18px;
}
.footer__col ul {
  display: grid;
  gap: 10px;
}
.footer__col a,
.footer__col span {
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 0.3s var(--ease);
}
.footer__col a:hover {
  color: #fbbf24;
}
.footer__base {
  max-width: 1200px;
  margin: 26px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(148, 163, 184, 0.6);
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__acoes {
    justify-content: center;
  }
  .hero__stats {
    justify-content: center;
  }
  .servicos__grid { display: grid; grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sobre__visual {
    max-width: 420px;
    margin: 0 auto;
  }
  .regioes__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .hero {
    padding-top: 110px;
  }
  .hero__stats {
    flex-wrap: wrap;
    gap: 28px;
  }
  .cta__caixa {
    padding: 48px 24px;
  }
}

[data-reveal],
[data-stagger] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-inview,
[data-stagger].is-inview {
  opacity: 1;
  transform: none;
}
.hero__titulo .linha span {
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}
.hero-animado .hero__titulo .linha span {
  transform: translateY(0);
}
.hero-animado .hero__titulo .linha:nth-child(1) span { transition-delay: 0.1s; }
.hero-animado .hero__titulo .linha:nth-child(2) span { transition-delay: 0.18s; }
.hero-animado .hero__titulo .linha:nth-child(3) span { transition-delay: 0.26s; }
.hero__tag,
.hero__sub,
.hero__acoes,
.hero__stats,
.hero__visual {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.hero-animado .hero__tag,
.hero-animado .hero__sub,
.hero-animado .hero__acoes,
.hero-animado .hero__stats,
.hero-animado .hero__visual {
  opacity: 1;
  transform: none;
}
.hero-animado .hero__tag { transition-delay: 0.15s; }
.hero-animado .hero__sub { transition-delay: 0.5s; }
.hero-animado .hero__acoes { transition-delay: 0.62s; }
.hero-animado .hero__stats { transition-delay: 0.74s; }
.hero-animado .hero__visual { transition-delay: 0.5s; }
.card {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal],
  [data-stagger] {
    opacity: 1;
    transform: none;
  }
  .hero__titulo .linha span,
  .hero__tag,
  .hero__sub,
  .hero__acoes,
  .hero__stats,
  .hero__visual {
    opacity: 1;
    transform: none;
  }
  .cursor,
  .cursor-dot {
    display: none;
  }
}