/* ============================================================
   MasterContt — Contabilidade & Consultoria
   Paleta extraída da logo: azul-petróleo #17465A + dourado #D9B34A
   ============================================================ */

:root {
  --teal-950: #071e28;
  --teal-900: #0d303d;
  --teal-850: #123c4c;
  --teal-800: #17465a;
  --teal-700: #1e5a70;
  --teal-600: #27708a;

  --gold-200: #f9edc2;
  --gold-300: #f3dd9a;
  --gold-400: #e9c96e;
  --gold-500: #d9b34a;
  --gold-600: #b6912f;
  --gold-700: #8f7020;

  --cream: #f6f1e4;
  --cream-dim: rgba(246, 241, 228, 0.64);
  --cream-faint: rgba(246, 241, 228, 0.38);

  --line: rgba(217, 179, 74, 0.16);
  --line-strong: rgba(217, 179, 74, 0.34);

  --wa-green: #25d366;
  --wa-deep: #128c7e;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-gold: 0 10px 40px -12px rgba(217, 179, 74, 0.45);
  --shadow-deep: 0 30px 80px -20px rgba(0, 0, 0, 0.55);

  --header-h: 84px;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------- reset ------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
  font-family: var(--font-body);
  background: var(--teal-900);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  /* textura de grão sutil */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%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");
}

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

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

ul {
  list-style: none;
}

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

section {
  scroll-margin-top: var(--header-h);
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.narrow-container {
  width: min(860px, 92%);
  margin-inline: auto;
}

/* ----------------------------- tipografia ----------------------------- */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
}

h3 {
  font-size: 1.45rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.gold {
  background: linear-gradient(115deg, var(--gold-300) 10%, var(--gold-500) 45%, var(--gold-600) 65%, var(--gold-300) 95%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
  font-style: italic;
}

@keyframes shimmer {
  to {
    background-position: 220% center;
  }
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
}

.section-deep {
  background:
    radial-gradient(1000px 500px at 85% 0%, rgba(217, 179, 74, 0.06), transparent 60%),
    var(--teal-950);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}

.section-heading .section-sub {
  margin-top: 1.1rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 560px;
}

.split-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ------------------------------ botões ------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux), background 0.35s, color 0.35s, border-color 0.35s;
  will-change: transform;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 55%, var(--gold-600));
  color: var(--teal-950);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -12px rgba(217, 179, 74, 0.65);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--gold-300);
  background: rgba(217, 179, 74, 0.04);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--gold-400);
  background: rgba(217, 179, 74, 0.12);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1.05rem 2.3rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ----------------------------- preloader ----------------------------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--teal-800);
  display: grid;
  place-items: center;
  transition: opacity 0.7s var(--ease-lux), visibility 0.7s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: grid;
  place-items: center;
  gap: 1.6rem;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-deep), 0 0 0 1px var(--line-strong);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.045);
    filter: brightness(1.12);
  }
}

.preloader-bar {
  width: 180px;
  height: 2px;
  background: rgba(246, 241, 228, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  border-radius: 2px;
  animation: load 1.2s var(--ease-lux) infinite;
}

@keyframes load {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(480%);
  }
}

/* --------------------------- cursor custom ---------------------------- */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2500;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(217, 179, 74, 0.5);
  transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
}

.cursor-ring.hovering {
  width: 58px;
  height: 58px;
  background: rgba(217, 179, 74, 0.08);
  border-color: var(--gold-400);
}

@media (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ------------------------------ header ------------------------------ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(13, 48, 61, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.6), 0 1px 0 var(--line);
}

.nav-wrapper {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line-strong), 0 8px 24px -10px rgba(0, 0, 0, 0.6);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.brand-text em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream-dim);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-lux);
}

.nav-link:hover,
.nav-link.active {
  color: var(--cream);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn-nav {
  padding: 0.68rem 1.5rem;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1200;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-lux), opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(217, 179, 74, 0.1), transparent 65%),
    var(--teal-950);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-lux), visibility 0.45s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
  gap: 1.4rem;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux), color 0.3s;
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.38s; }

.mobile-link:hover {
  color: var(--gold-400);
}

.mobile-menu-foot {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* -------------------------------- hero -------------------------------- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background:
    radial-gradient(1200px 700px at 78% 18%, rgba(39, 112, 138, 0.5), transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(217, 179, 74, 0.07), transparent 55%),
    var(--teal-800);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  right: -140px;
  top: -120px;
  background: radial-gradient(circle, rgba(217, 179, 74, 0.16), transparent 62%);
  filter: blur(12px);
  pointer-events: none;
  animation: breathe 9s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin: 0.4rem 0 1.4rem;
}

.hero-title .line {
  display: block;
}

.hero-lead {
  color: var(--cream-dim);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  max-width: 34rem;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.hero-points {
  display: grid;
  gap: 0.65rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream-dim);
  font-size: 0.95rem;
}

.hero-points li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: 50%;
  background:
    linear-gradient(var(--teal-800), var(--teal-800)) padding-box,
    linear-gradient(135deg, var(--gold-400), var(--gold-600)) border-box;
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 4px var(--teal-800);
  position: relative;
}

/* visual do hero */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-card {
  position: relative;
  width: min(360px, 82%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-deep), 0 0 0 1px var(--line-strong);
  transform-style: preserve-3d;
  will-change: transform;
  animation: floaty 7s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

.hero-card-logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.14) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shine 5.5s var(--ease-lux) infinite;
}

@keyframes shine {
  0%,
  55% {
    transform: translateX(-130%);
  }
  85%,
  100% {
    transform: translateX(130%);
  }
}

.float-badge {
  position: absolute;
  background: rgba(13, 48, 61, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-deep);
  display: grid;
  gap: 0.1rem;
  will-change: transform;
}

.float-badge strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-400);
  line-height: 1;
}

.float-badge span {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.badge-top {
  top: 8%;
  right: -4%;
}

.badge-bottom {
  bottom: 10%;
  left: -6%;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 3;
}

.mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(217, 179, 74, 0.55);
  border-radius: 14px;
  position: relative;
}

.wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--gold-400);
  animation: wheel 1.8s ease-in-out infinite;
}

@keyframes wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(12px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ------------------------------- marquee ------------------------------ */

.marquee {
  background: var(--teal-950);
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 1.05rem 0;
  position: relative;
  z-index: 3;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  white-space: nowrap;
}

.marquee-track i {
  color: var(--gold-600);
  font-style: normal;
  font-size: 0.7rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* -------------------------------- stats ------------------------------- */

.stats-band {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(217, 179, 74, 0.07), transparent 70%),
    var(--teal-900);
  padding: clamp(3rem, 6vw, 4.6rem) 0;
  border-bottom: 1px solid var(--line);
}

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

.stat {
  text-align: center;
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  color: var(--gold-400);
  line-height: 1.05;
}

.stat span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ------------------------------ split/sobre --------------------------- */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.split-media {
  position: relative;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-deep);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(217, 179, 74, 0.16), transparent 45%);
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.4;
  transition: transform 1.2s var(--ease-lux);
}

.split-media:hover .media-frame img {
  transform: scale(1.05);
}

.split-media::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 120px;
  height: 120px;
  border-top: 1px solid var(--gold-500);
  border-left: 1px solid var(--gold-500);
  border-top-left-radius: var(--radius);
  opacity: 0.7;
}

.media-badge {
  position: absolute;
  right: -14px;
  bottom: 34px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--teal-950);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  display: grid;
  line-height: 1.25;
}

.media-badge strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.media-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-content p {
  color: var(--cream-dim);
  margin-bottom: 1.4rem;
  max-width: 34rem;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 2.2rem;
}

.check-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--cream);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(217, 179, 74, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9b34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat;
  border: 1px solid var(--line-strong);
}

/* ------------------------------- serviços ------------------------------ */

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

.service-card {
  position: relative;
  background: linear-gradient(160deg, rgba(23, 70, 90, 0.55), rgba(13, 48, 61, 0.85));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.3rem 2rem;
  overflow: hidden;
  transition: transform 0.5s var(--ease-lux), border-color 0.4s, box-shadow 0.5s;
  will-change: transform;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(217, 179, 74, 0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-deep);
}

.service-card:hover::before {
  opacity: 1;
}

.service-num {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-600);
  letter-spacing: 0.14em;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--gold-400);
  background: rgba(217, 179, 74, 0.1);
  border: 1px solid var(--line-strong);
  transition: transform 0.5s var(--ease-lux), background 0.4s;
}

.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-4deg);
  background: rgba(217, 179, 74, 0.18);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 0.7rem;
  color: var(--cream);
}

.service-card p {
  color: var(--cream-dim);
  font-size: 0.95rem;
}

/* -------------------------------- passos ------------------------------- */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 1.4rem;
}

.step-card {
  background: linear-gradient(170deg, rgba(23, 70, 90, 0.4), rgba(13, 48, 61, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  position: relative;
  transition: transform 0.5s var(--ease-lux), border-color 0.4s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}

.step-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: var(--shadow-gold);
  margin-bottom: 1.3rem;
}

.step-card h3 {
  margin-bottom: 0.6rem;
}

.step-card p {
  color: var(--cream-dim);
  font-size: 0.95rem;
}

.step-line {
  align-self: center;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300), var(--gold-600));
  position: relative;
}

.step-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  border-left: 8px solid var(--gold-400);
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
}

/* ---------------------------- depoimentos ------------------------------ */

.testimonial-slider {
  max-width: 780px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s var(--ease-lux);
}

.testimonial-card {
  flex: 0 0 100%;
  background: linear-gradient(165deg, rgba(23, 70, 90, 0.5), rgba(13, 48, 61, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}

.stars {
  color: var(--gold-400);
  letter-spacing: 0.35em;
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

.testimonial-card > p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  max-width: 38rem;
  margin: 0 auto 1.8rem;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
}

.author-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}

.testimonial-author strong {
  display: block;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.slider-dot {
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: rgba(246, 241, 228, 0.18);
  transition: background 0.35s, width 0.35s var(--ease-lux);
}

.slider-dot.active {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  width: 52px;
}

/* -------------------------------- blog -------------------------------- */

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

.post-card {
  background: linear-gradient(170deg, rgba(23, 70, 90, 0.45), rgba(13, 48, 61, 0.85));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease-lux), border-color 0.4s, box-shadow 0.5s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-deep);
}

.post-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-lux);
}

.post-card:hover .post-thumb img {
  transform: scale(1.08);
}

.post-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 48, 61, 0.85));
}

.post-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.post-body {
  padding: 1.6rem 1.6rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.post-date {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.post-body h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}

.post-body h3 a:hover {
  color: var(--gold-300);
}

.post-body p {
  color: var(--cream-dim);
  font-size: 0.94rem;
  flex: 1;
}

.post-read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-400);
  margin-top: 0.4rem;
}

.post-read svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease-lux);
}

.post-card:hover .post-read svg {
  transform: translateX(5px);
}

.post-skeleton {
  height: 380px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(100deg, rgba(23, 70, 90, 0.35) 40%, rgba(217, 179, 74, 0.08) 50%, rgba(23, 70, 90, 0.35) 60%);
  background-size: 200% 100%;
  animation: skeleton 1.4s linear infinite;
}

@keyframes skeleton {
  to {
    background-position: -200% 0;
  }
}

/* --------------------------------- FAQ --------------------------------- */

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: linear-gradient(170deg, rgba(23, 70, 90, 0.45), rgba(13, 48, 61, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.35s;
}

.faq-item[open] {
  border-color: var(--line-strong);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.3rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--cream);
}

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

.faq-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: relative;
  transition: transform 0.4s var(--ease-lux), background 0.35s;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.6px;
  background: var(--gold-400);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.4s var(--ease-lux);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(217, 179, 74, 0.12);
}

.faq-item p {
  padding: 0 1.6rem 1.5rem;
  color: var(--cream-dim);
  max-width: 62ch;
}

/* ------------------------------- contato ------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: start;
}

.contact-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
}

.wa-card {
  background: linear-gradient(165deg, rgba(23, 70, 90, 0.55), rgba(13, 48, 61, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}

.wa-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.18), transparent 65%);
  pointer-events: none;
}

.wa-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.wa-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-deep));
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.55);
}

.wa-icon svg {
  width: 28px;
  height: 28px;
}

.wa-card-head h3 {
  font-size: 1.3rem;
}

.wa-card-head p {
  font-size: 0.88rem;
  color: var(--cream-dim);
}

.wa-options {
  display: grid;
  gap: 0.85rem;
}

.wa-option {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(7, 30, 40, 0.45);
  transition: transform 0.4s var(--ease-lux), border-color 0.35s, background 0.35s, box-shadow 0.4s;
  position: relative;
}

.wa-option:hover {
  transform: translateX(6px);
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.07);
  box-shadow: 0 14px 34px -16px rgba(37, 211, 102, 0.4);
}

.wa-avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(150deg, var(--teal-600), var(--teal-800));
  border: 1px solid rgba(37, 211, 102, 0.45);
}

.wa-info {
  flex: 1;
  min-width: 0;
  display: grid;
  line-height: 1.35;
}

.wa-info strong {
  font-size: 0.98rem;
}

.wa-info span {
  font-size: 0.86rem;
  color: var(--cream-dim);
  letter-spacing: 0.03em;
}

.wa-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wa-green);
}

.wa-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: blink 2s ease-out infinite;
}

@keyframes blink {
  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-arrow {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s, transform 0.35s var(--ease-lux);
}

.wa-option:hover .wa-arrow {
  opacity: 1;
  transform: translateX(0);
}

.wa-hours {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.3rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.wa-hours svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
}

.contact-info-card {
  background: linear-gradient(165deg, rgba(23, 70, 90, 0.45), rgba(13, 48, 61, 0.85));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}

.contact-info-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}

.contact-info-card ul {
  display: grid;
  gap: 0.75rem;
}

.contact-info-card li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream-dim);
  font-size: 0.93rem;
}

.contact-info-card svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--gold-500);
}

.contact-info-card li a,
.contact-info-card li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-info-card a:hover {
  color: var(--gold-300);
}

/* formulário */
.contact-form {
  background: linear-gradient(165deg, rgba(23, 70, 90, 0.5), rgba(13, 48, 61, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  gap: 1.15rem;
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.15rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--cream);
  background: rgba(7, 30, 40, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.05rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  width: 100%;
  min-width: 0;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9b34a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}

.field select:invalid {
  color: var(--cream-faint);
}

.field option {
  background: var(--teal-900);
  color: var(--cream);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--cream-faint);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(217, 179, 74, 0.14);
  background: rgba(7, 30, 40, 0.8);
}

.field input.error,
.field textarea.error,
.field select.error {
  border-color: #e06c5b;
  box-shadow: 0 0 0 4px rgba(224, 108, 91, 0.14);
}

#formSubmit {
  position: relative;
}

#formSubmit .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(7, 30, 40, 0.25);
  border-top-color: var(--teal-950);
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#formSubmit.loading .btn-spinner {
  display: inline-block;
}

#formSubmit.loading {
  pointer-events: none;
  opacity: 0.85;
}

.form-note {
  font-size: 0.8rem;
  color: var(--cream-faint);
  text-align: center;
}

/* -------------------------------- footer ------------------------------- */

.site-footer {
  background: var(--teal-950);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

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

.footer-brand-col p {
  margin-top: 1.1rem;
  color: var(--cream-dim);
  font-size: 0.94rem;
  max-width: 30ch;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.6rem;
}

.site-footer li {
  color: var(--cream-dim);
  font-size: 0.92rem;
}

.site-footer li a {
  transition: color 0.3s;
}

.site-footer li a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  text-align: center;
  color: var(--cream-faint);
  font-size: 0.85rem;
}

/* --------------------------- whatsapp flutuante ------------------------- */

.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1500;
  display: grid;
  justify-items: end;
  gap: 0.9rem;
}

.wa-float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-deep));
  box-shadow: 0 14px 38px -10px rgba(37, 211, 102, 0.65);
  transition: transform 0.4s var(--ease-lux);
  position: relative;
}

.wa-float-btn::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  animation: ripple 2.2s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.wa-float-btn:hover {
  transform: scale(1.08) rotate(6deg);
}

.wa-float-btn svg {
  width: 30px;
  height: 30px;
}

.wa-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  background: rgba(13, 48, 61, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.1rem;
  width: 280px;
  max-width: calc(100vw - 3rem);
  box-shadow: var(--shadow-deep);
  display: grid;
  gap: 0.7rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.35s var(--ease-lux), transform 0.35s var(--ease-lux), visibility 0.35s;
}

.wa-float.open .wa-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-popover-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  color: var(--gold-300);
}

.wa-popover a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(7, 30, 40, 0.5);
  font-size: 0.88rem;
  font-weight: 700;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-lux);
}

.wa-popover a:hover {
  border-color: rgba(37, 211, 102, 0.55);
  background: rgba(37, 211, 102, 0.08);
  transform: translateX(4px);
}

.wa-popover a small {
  display: block;
  font-weight: 500;
  color: var(--cream-dim);
}

.wa-popover a .wa-opt-text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.wa-popover .wa-avatar {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

/* -------------------------------- toast -------------------------------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 140%);
  z-index: 2600;
  background: rgba(13, 48, 61, 0.96);
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--gold-500);
  color: var(--cream);
  padding: 1rem 1.6rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-deep);
  font-weight: 600;
  max-width: min(92vw, 480px);
  transition: transform 0.5s var(--ease-lux);
}

.toast.show {
  transform: translate(-50%, 0);
}

.toast.success {
  border-left-color: var(--wa-green);
}

.toast.error {
  border-left-color: #e06c5b;
}

/* ------------------------------- reveals ------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------- responsivo ------------------------------ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    min-height: 340px;
    margin-top: 1rem;
  }

  .badge-top {
    right: 6%;
  }

  .badge-bottom {
    left: 4%;
  }

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

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

  .step-line {
    width: 1px;
    height: 40px;
    margin-inline: auto;
    background: linear-gradient(180deg, var(--gold-600), var(--gold-300), var(--gold-600));
  }

  .step-line::after {
    right: -3.5px;
    top: auto;
    bottom: -2px;
    border-top: 8px solid var(--gold-400);
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-bottom: none;
  }

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

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

  .site-nav {
    display: none;
  }

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

  .stat + .stat::before {
    display: none;
  }

  .split-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .split-media {
    max-width: 520px;
    margin-inline: auto;
  }

  .media-badge {
    right: 10px;
  }
}

@media (max-width: 600px) {
  .services-grid,
  .posts-grid,
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .split-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .float-badge strong {
    font-size: 1.3rem;
  }

  .wa-float {
    right: 1rem;
    bottom: 1rem;
  }

  .wa-card {
    padding: 1.2rem;
  }

  .wa-card-head {
    gap: 0.7rem;
    margin-bottom: 1rem;
  }

  .wa-card-head h3 {
    font-size: 1.15rem;
  }

  .wa-avatar {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .wa-option {
    gap: 0.7rem;
    padding: 0.7rem 0.8rem;
  }

  .wa-info span {
    font-size: 0.8rem;
    letter-spacing: 0;
  }

  .wa-arrow,
  .wa-status {
    display: none;
  }

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

/* --------------------- acessibilidade: menos movimento ------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
