:root {
  --primary: #0a0a1f;
  --primary-light: #12122b;
  --primary-lighter: #1a1a33;
  --secondary: #2c5bff;
  --accent: #ffffff;
  --gray-200: #e5e7eb;
  --gray-300: #9ca3af;
  --gray-400: #6b7280;
  --gray-500: #4b5563;

  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Instrument Sans", sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(44, 91, 255, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--accent);
  background: var(--primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-label::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--secondary);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--secondary);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 640px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ======== HEADER / NAV ======== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  padding: 1.25rem 0;
}

.header.scrolled {
  background: rgba(10, 10, 31, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 0.875rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.25rem;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
  border-radius: 2px;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav-cta {
  background: var(--secondary);
  color: var(--accent);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 91, 255, 0.4);
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: 0.3s;
}

/* ======== HERO ======== */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(44, 91, 255, 0.15) 0%, rgba(10, 10, 31, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(44, 91, 255, 0.1);
  border: 1px solid rgba(44, 91, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--secondary) 0%, #6b8dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.25rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--secondary);
  color: var(--accent);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 91, 255, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: transparent;
  color: var(--accent);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.25s, background 0.25s;
}

.btn-secondary:hover {
  border-color: var(--secondary);
  background: rgba(44, 91, 255, 0.08);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.meta-dot {
  color: var(--gray-300);
  opacity: 0.5;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44, 91, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ======== SOLUÇÕES ======== */

.solucoes-section {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

.solucao-card {
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.solucao-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 91, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-featured {
  border-color: rgba(44, 91, 255, 0.15);
  background: linear-gradient(180deg, rgba(44, 91, 255, 0.04) 0%, var(--primary) 100%);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--secondary);
  background: rgba(44, 91, 255, 0.1);
  border: 1px solid rgba(44, 91, 255, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.card-icon-web {
  background: rgba(44, 91, 255, 0.1);
  color: var(--secondary);
}

.card-icon-driver {
  background: rgba(44, 91, 255, 0.1);
  color: var(--secondary);
}

.card-icon-passenger {
  background: rgba(44, 91, 255, 0.1);
  color: var(--secondary);
}

.solucao-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.solucao-card > p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--gray-300);
}

.card-features li svg {
  flex-shrink: 0;
}

/* ======== RECURSOS ======== */

.recursos-section {
  position: relative;
}

.recursos-section::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(44, 91, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

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

.recurso-card {
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.recurso-card:hover {
  transform: translateY(-3px);
  border-color: rgba(44, 91, 255, 0.12);
  background: var(--primary-lighter);
}

.recurso-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(44, 91, 255, 0.08);
  margin-bottom: 1.25rem;
}

.recurso-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.recurso-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ======== PLATAFORMA / FLOW ======== */

.plataforma-section {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.plataforma-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 91, 255, 0.15), transparent);
}

.plataforma-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.flow-step {
  position: relative;
}

.flow-step-inner {
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.flow-step-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0.5;
}

.flow-step-inner:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 91, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(44, 91, 255, 0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(44, 91, 255, 0.08);
  margin: 0 auto 1.25rem;
}

.flow-step-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.flow-step-inner p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.step-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--secondary);
  background: rgba(44, 91, 255, 0.08);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  text-transform: uppercase;
}

.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  opacity: 0.4;
}

.flow-connector svg {
  width: 32px;
  height: 32px;
}

/* ======== OPERAÇÕES / STATS ======== */

.operacoes-section {
  position: relative;
}

.operacoes-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44, 91, 255, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

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

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}

.stat-item:hover {
  border-color: rgba(44, 91, 255, 0.12);
}

.stat-clock {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.stat-clock svg {
  opacity: 0.8;
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-soon {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--secondary);
  background: rgba(44, 91, 255, 0.1);
  border: 1px solid rgba(44, 91, 255, 0.2);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  text-transform: uppercase;
}

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

.operacao-card {
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s;
}

.operacao-card:hover {
  transform: translateY(-3px);
  border-color: rgba(44, 91, 255, 0.15);
}

.operacao-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(44, 91, 255, 0.08);
  margin-bottom: 1.25rem;
}

.operacao-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.operacao-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ======== CTA BOX ======== */

.cta-box {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, rgba(44, 91, 255, 0.04) 0%, var(--primary-lighter) 100%);
  border: 1px solid rgba(44, 91, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(44, 91, 255, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-box h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
}

.cta-box p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-box .btn-primary {
  position: relative;
}

/* ======== FOOTER ======== */

.footer {
  background: var(--primary-light);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

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

.footer-brand > p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gray-400);
  transition: background 0.3s, color 0.3s;
}

.footer-social a:hover {
  background: rgba(44, 91, 255, 0.1);
  color: var(--secondary);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.625rem;
}

.footer-col a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ======== RESPONSIVE ======== */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

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

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

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

  .plataforma-flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .flow-connector {
    transform: rotate(90deg);
  }

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

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

@media (max-width: 800px) {
  .header {
    padding: 1rem 0;
  }

  .header.scrolled {
    padding: 0.75rem 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-light);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .btn-nav-cta {
    display: none;
  }

  .hero-section {
    padding: 7rem 0 4rem;
    min-height: auto;
  }

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

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 90%;
    margin: 0 auto;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

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

  .section {
    padding: 5rem 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-box h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

}

/* ======== ANIMATIONS ======== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}
