/* ============================================
   Leandro Machado - Landing Page Premium
   Cores: #080808 | #101010 | #C8A24A | #F5F2EA
   ============================================ */

:root {
  --bg-primary: #050505;
  --bg-card: #0c0c0c;
  --bg-elevated: #141414;
  --gold: #E2BC5A;
  --gold-light: #F0D080;
  --gold-bright: #FFD875;
  --gold-dark: #B8942E;
  --text-primary: #FFFFFF;
  --text-warm: #FAF6EE;
  --text-secondary: #D4D0C8;
  --text-muted: #9A9690;
  --border: rgba(226, 188, 90, 0.35);
  --border-strong: rgba(226, 188, 90, 0.65);
  --gold-glow: 0 0 40px rgba(226, 188, 90, 0.15);
  --text-shadow-hero: 0 2px 24px rgba(0, 0, 0, 0.6);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1200px;
  --radius: 4px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-warm);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-bright);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 600;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #0a0a0a;
  border-color: var(--gold-light);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(226, 188, 90, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-light) 100%);
  border-color: var(--gold-bright);
  color: #0a0a0a;
  box-shadow: 0 6px 28px rgba(226, 188, 90, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(226, 188, 90, 0.08);
}

.btn--dark {
  background: #0a0a0a;
  color: var(--text-primary);
  border-color: #0a0a0a;
  font-weight: 700;
}

.btn--dark:hover {
  background: var(--bg-elevated);
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn--full {
  width: 100%;
}

/* ---- Section headers ---- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-header__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(226, 188, 90, 0.3);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-shadow: var(--text-shadow-hero);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.75;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.5) saturate(0.9);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hero__logo {
  display: inline-block;
  margin-bottom: 3rem;
}

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

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(5, 5, 5, 0.98) 0%,
    rgba(5, 5, 5, 0.92) 40%,
    rgba(5, 5, 5, 0.65) 65%,
    rgba(5, 5, 5, 0.35) 100%
  );
}

.hero__logo img {
  width: clamp(160px, 20vw, 240px);
  filter: brightness(1.08) contrast(1.05);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  text-shadow: 0 0 24px rgba(226, 188, 90, 0.35);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 18ch;
  color: var(--text-primary);
  text-shadow: var(--text-shadow-hero);
}

.hero__lead {
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero__meta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.hero__portrait {
  display: none;
}

.hero__portrait img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(226, 188, 90, 0.1);
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero__portrait {
    display: block;
  }
}

/* ============================================
   AUTHORITY
   ============================================ */
.authority {
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: -3rem;
}

.authority__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.authority__highlight {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  color: #0a0a0a;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--gold-glow);
}

.authority__highlight h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #0a0a0a;
}

.authority__highlight p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  color: rgba(10, 10, 10, 0.82);
}

.authority__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat:nth-child(2n) {
  border-right: none;
}

.stat:nth-last-child(-n+2) {
  border-bottom: none;
}

.stat__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat__icon svg {
  width: 100%;
  height: 100%;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat span:last-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

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

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

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.service-card__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

.service-card__link:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #0a0a0a;
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(226, 188, 90, 0.3);
}

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

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

/* ============================================
   POSITIONING
   ============================================ */
.positioning {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.positioning__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.positioning__content p {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-warm);
  font-size: 1rem;
  font-weight: 600;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 1px;
  transform: rotate(45deg);
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.checklist li::before {
  border-color: var(--gold-light);
}

.positioning__media img {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

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

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 6rem 0;
}

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

.about__media img {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.about__oab {
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 16px rgba(226, 188, 90, 0.25);
}

.about__content p {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 2fr 3fr;
  }

  .about__media img {
    margin: 0;
  }
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

.process__step {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.process__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-light);
  opacity: 0.75;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.process__step p {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

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

@media (min-width: 1024px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 6rem 0;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:hover {
  color: var(--gold-light);
}

.faq__item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.contact__info address {
  font-style: normal;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.contact__phone a,
.contact__email a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
}

.contact__map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact__form {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-warm);
  letter-spacing: 0.02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-muted);
}

.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A8A8A8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__group--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.form__group--checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.form__feedback {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  min-height: 1.25rem;
}

.form__feedback--success {
  color: #6ecf8a;
}

.form__feedback--error {
  color: #e07070;
}

.form__group--error input,
.form__group--error select,
.form__group--error textarea {
  border-color: #e07070;
}

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

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-primary) 60%, rgba(226, 188, 90, 0.06) 100%);
  border-top: 1px solid var(--border-strong);
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 700;
  max-width: 28ch;
  margin: 0 auto 2rem;
  line-height: 1.25;
  color: var(--text-primary);
  text-shadow: var(--text-shadow-hero);
}

.cta-final__inner {
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0 2rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer__brand img {
  margin: 0 auto 0.75rem;
  opacity: 0.9;
}

.footer__brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__copy {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.footer__legal {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.65;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.page-legal {
  padding: 4rem 0 6rem;
}

.page-legal h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.page-legal .updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.page-legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--gold);
}

.page-legal p,
.page-legal li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.page-legal ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-legal a {
  color: var(--gold);
}

.page-legal .back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
