/* ==========================================================
   InfraMais Soluções Tecnológicas — style.css
   Production-ready stylesheet for static HTML5 IT company site
   Mobile-first | BEM | No frameworks
   ========================================================== */

/* ---------- 1. CSS VARIABLES ---------- */
:root {
  --primary: #1a56db;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --dark: #0f172a;
  --dark-secondary: #1e293b;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #334155;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  --accent: #0ea5e9;
  --gradient-primary: linear-gradient(135deg, #1a56db, #0ea5e9);
  --success: #10b981;
  --border-light: #e2e8f0;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --transition: all 0.3s ease;
}

/* ---------- 2. RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--light-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
}

::selection {
  background: var(--primary);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ---------- 3. LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26, 86, 219, 0.35);
}

.btn--outline {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.btn--outline:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  padding: 0.5rem 0.25rem;
}

.btn--ghost:hover {
  text-decoration: underline;
}

.btn--client {
  background: #fff;
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.btn--client:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* ---------- 5. HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo__pipe {
  color: var(--primary);
  margin: 0 1px;
}

.logo--light {
  color: #fff;
}

/* ---------- 6. NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav__link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link:hover::after {
  width: 100%;
}

/* ---------- 7. HAMBURGER ---------- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger--active span:nth-child(2) {
  opacity: 0;
}

.hamburger--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- 8. MOBILE NAV ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1050;
}

.nav-overlay--active {
  opacity: 1;
  visibility: visible;
}

.nav--mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  transition: right 0.35s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.nav--mobile.nav--active {
  right: 0;
}

.nav--mobile .nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
}

.nav--mobile .nav__link {
  font-size: 1.1rem;
  font-weight: 600;
}

.nav--mobile .btn--client {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* ---------- 9. HERO ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1a56db 100%);
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg::before,
.hero__bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.hero__bg::before {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero__bg::after {
  width: 300px;
  height: 300px;
  background: var(--primary);
  bottom: -80px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__orb {
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--gradient-primary);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  animation: pulse-orb 4s ease-in-out infinite;
}

.hero__card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

.hero__card i {
  font-size: 1.5rem;
  color: var(--accent);
}

.hero__card span {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__card--1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero__card--2 {
  top: 45%;
  right: 5%;
  animation-delay: 1.5s;
}

.hero__card--3 {
  bottom: 10%;
  left: 15%;
  animation-delay: 3s;
}

/* ---------- 10. SECTION ---------- */
.section {
  padding: 5rem 0;
}

.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section__eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- 11. SERVICES ---------- */
.services {
  background: var(--light-bg);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- 12. ABOUT ---------- */
.about {
  background: #fff;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__text {
  color: var(--text);
  line-height: 1.8;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat__plus {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.about__panel {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.about__panel-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.about__panel-row:last-child {
  border-bottom: none;
}

.about__panel-row:first-child {
  padding-top: 0;
}

.about__panel-row i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.about__panel-row p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
}

/* ---------- 13. BLOG ---------- */
.blog {
  background: var(--light-bg);
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.post-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-card__img {
  height: 200px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.6;
}

.post-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.post-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  margin: 0.5rem 0;
}

.post-card__title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.post-card__title a:hover {
  color: var(--primary);
}

.post-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.post-card__link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s ease;
  margin-top: 1rem;
}

.post-card__link:hover {
  gap: 0.6rem;
}

.blog__more {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- 14. CTA ---------- */
.cta {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- 15. NEWSLETTER ---------- */
.newsletter {
  background: #fff;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.newsletter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.newsletter__text {
  text-align: center;
}

.newsletter__text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.newsletter__text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.newsletter__form input {
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: 'Inter', sans-serif;
  flex: 1;
  min-width: 200px;
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.newsletter__form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

/* ---------- 16. FOOTER ---------- */
.footer {
  background: #0f172a;
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 0 2rem;
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
}

.footer__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
  margin: 1rem 0;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer__links,
.footer__contact {
  list-style: none;
  padding: 0;
}

.footer__links li,
.footer__contact li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: #fff;
  padding-left: 3px;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.footer__contact i {
  width: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ---------- 17. WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
}

/* ---------- 18. ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1).active { transition-delay: 0.05s; }
.service-card:nth-child(2).active { transition-delay: 0.1s; }
.service-card:nth-child(3).active { transition-delay: 0.15s; }
.service-card:nth-child(4).active { transition-delay: 0.2s; }
.service-card:nth-child(5).active { transition-delay: 0.25s; }
.service-card:nth-child(6).active { transition-delay: 0.3s; }

.post-card:nth-child(1).active { transition-delay: 0.05s; }
.post-card:nth-child(2).active { transition-delay: 0.1s; }
.post-card:nth-child(3).active { transition-delay: 0.15s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse-orb {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

/* ---------- 19. SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ---------- 20. RESPONSIVE — TABLET (768px) ---------- */
@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter__inner {
    flex-direction: row;
    text-align: left;
  }

  .newsletter__text {
    text-align: left;
  }

  .newsletter__form {
    width: auto;
  }

  .cta__title {
    font-size: 2rem;
  }
}

/* ---------- 21. RESPONSIVE — DESKTOP (1024px) ---------- */
@media (min-width: 1024px) {
  .hero {
    padding: 8rem 0 5rem;
  }

  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__card {
    position: absolute;
  }

  .section {
    padding: 6rem 0;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__inner {
    grid-template-columns: 1fr 1fr;
  }

  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .cta__title {
    font-size: 2.25rem;
  }
}

/* ---------- 22. MOBILE NAV DEFAULT (hidden desktop) ---------- */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .nav--mobile {
    display: none;
  }

  .nav-overlay {
    display: none;
  }
}

@media (max-width: 1023px) {
  .nav {
    display: none;
  }
}

/* ---------- 23. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}