:root {
  --primary: #1C2538;
  --secondary: #9DAAB3;
  --light-gray: #E0E1E2;
  --white: #FFFFFF;
  --dark-overlay: rgba(28, 37, 56, 0.74);
  --text-soft: rgba(28, 37, 56, 0.72);
  --card-shadow: 0 26px 60px rgba(28, 37, 56, 0.1);
  --soft-shadow: 0 22px 50px rgba(28, 37, 56, 0.12);
  --transition: 0.35s ease;
  --container: min(1200px, calc(100% - 2rem));
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

a:hover {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

p {
  margin: 0 0 1rem;
}

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 4px;
}

.container {
  width: var(--container);
}

.section-space {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.eyebrow.dark {
  color: var(--primary);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.75);
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.section-header p {
  max-width: 680px;
  margin: 1.2rem auto 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.brand-logo,
.footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
}

.site-header .navbar {
  position: fixed;
  inset: 0 0 auto 0;
}

.social-link {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.social-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.navbar {
  padding: 1rem 0;
  background: transparent;
  transition: background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(28, 37, 56, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(28, 37, 56, 0.16);
}

.site-header .navbar .container {
  position: relative;
  z-index: 2;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-nav {
  gap: 0.3rem;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 0.7rem !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-item-social {
  margin-left: 0.2rem;
}

.whatsapp-link {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.7);
}

.btn {
  border-radius: 0;
  border: 1px solid transparent;
  padding: 0.9rem 1.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 18px 35px rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  background: var(--light-gray);
  border-color: var(--light-gray);
  color: var(--primary);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--primary);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 23, 32, 0.65), rgba(17, 23, 32, 0.2));
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.65);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 37, 56, 0.78) 0%, rgba(28, 37, 56, 0.58) 40%, rgba(28, 37, 56, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 760px;
  color: var(--white);
}

.hero-text .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
  margin: 0 0 1.5rem;
  text-shadow: 0 14px 24px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 36px;
  height: 62px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  z-index: 2;
}

.scroll-indicator span {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%);
  animation: wheel 1.8s infinite ease-in-out;
}

@keyframes wheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
  }
}

.about {
  background: var(--white);
}

.about-copy {
  color: var(--text-soft);
  font-size: 1.08rem;
}

.story-cards {
  margin-top: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(224, 225, 226, 0.7));
  border: 1px solid rgba(28, 37, 56, 0.06);
  box-shadow: none;
  padding: 2rem 1.25rem;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: var(--primary);
}

.stat-label {
  margin-top: 1rem;
  font-size: 0.96rem;
  color: var(--text-soft);
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}

.process-card {
  position: relative;
  text-align: left;
  padding: 2.2rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(28, 37, 56, 0.14);
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), rgba(28, 37, 56, 0));
}

.process-number {
  font-size: clamp(5rem, 8vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
  color: rgba(28, 37, 56, 0.12);
  margin-bottom: 1rem;
}

.process-card h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin-bottom: 0.9rem;
  letter-spacing: -0.04em;
}

.process-card p {
  color: var(--text-soft);
  font-size: 1.03rem;
}

.profile {
  background: var(--white);
}

.profile-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-portrait {
  min-height: 430px;
  background: linear-gradient(135deg, rgba(28, 37, 56, 0.06), rgba(157, 170, 179, 0.2));
  border: 1px solid rgba(28, 37, 56, 0.08);
  box-shadow: none;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('../img/WhatsApp Image 2026-09-23 at 15.43.17.jpeg');
  background-size: cover;
  background-position: center;
}

.profile-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 37, 56, 0.28), rgba(28, 37, 56, 0.14));
}

.portrait-inner {
  position: relative;
  z-index: 1;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(28, 37, 56, 0.4);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.profile-timeline {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, rgba(224, 225, 226, 0.8), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(28, 37, 56, 0.08);
  box-shadow: none;
}

.profile-timeline span {
  font-weight: 600;
  color: var(--primary);
}

.profile-copy h3 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.profile-copy p {
  color: var(--text-soft);
}

.highlighted {
  background: linear-gradient(180deg, rgba(224, 225, 226, 0.8), rgba(157, 170, 179, 0.12));
  border-left: 4px solid var(--primary);
  padding: 1.2rem 1.2rem 1.2rem 1.4rem;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 500;
}

.team {
  background: var(--light-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(28, 37, 56, 0.08);
  box-shadow: none;
  padding: 2rem 1.5rem;
  text-align: center;
}

.team-avatar {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(28, 37, 56, 0.08);
  border: 1px solid rgba(28, 37, 56, 0.12);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.team-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.team-card p {
  margin: 0;
  color: var(--text-soft);
}

.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(28, 37, 56, 0.08);
  box-shadow: none;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card-featured {
  background: var(--primary);
  color: var(--white);
  border-color: transparent;
  position: relative;
  box-shadow: none;
}

.featured-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.service-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 37, 56, 0.06);
  margin-bottom: 1.3rem;
  color: var(--primary);
  font-size: 1.7rem;
}

.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.service-card h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  line-height: 1.2;
  margin-bottom: 0.9rem;
  letter-spacing: -0.04em;
}

.service-card p {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.service-more {
  margin-top: auto;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage {
  background: var(--white);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.coverage-item {
  min-height: 220px;
  background: linear-gradient(135deg, rgba(28, 37, 56, 0.96), rgba(28, 37, 56, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--white);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  font-weight: 700;
}

.contact-cta {
  background: var(--white);
  padding-bottom: 0;
}

.contact-cta > .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.cta-shell {
  position: relative;
  width: 100%;
  min-height: 360px;
  margin: 0 auto;
  background-image: linear-gradient(90deg, rgba(13, 22, 35, 0.76), rgba(13, 22, 35, 0.42)),
    url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=85');
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  max-width: 600px;
  padding: clamp(2rem, 4vw, 4rem);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  margin: 0 auto 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.cta-content .btn {
  margin: 0 auto;
}

.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.84);
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1.3fr 0.8fr;
  gap: 2.5rem !important;
  margin-left: 0;
  margin-right: 0;
}

.footer-top > [class*="col-"] {
  width: auto;
  padding-left: 0;
  padding-right: 0;
}

.site-footer h3 {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-contact-list {
  gap: 0.9rem !important;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-contact-item i {
  flex: 0 0 1rem;
  margin-right: 0;
  margin-top: 0.2rem;
}

.footer-contact-item a,
.footer-contact-item span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-email a {
  font-size: 0.9rem;
}

.site-footer i {
  color: rgba(157, 170, 179, 0.9);
  margin-right: 0.4rem;
}

.footer-map-wrap {
  margin-top: 2rem;
}

.footer-map {
  position: relative;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}

.map-pin {
  position: absolute;
  left: 55%;
  top: 45%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(157, 170, 179, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding: 1.25rem 0 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 1.4rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float {
  bottom: 1.4rem;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 20px 35px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover,
.back-to-top:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float i,
.back-to-top i {
  font-size: 1.7rem;
}

.back-to-top {
  bottom: 5.8rem;
  background: rgba(28, 37, 56, 0.92);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.modal-content {
  border-radius: 22px;
  border: 1px solid rgba(28, 37, 56, 0.1);
  box-shadow: 0 28px 60px rgba(28, 37, 56, 0.18);
  overflow: hidden;
}

.modal-header {
  border-bottom: 1px solid rgba(28, 37, 56, 0.08);
  padding: 1.4rem 1.5rem 1rem;
  background: linear-gradient(180deg, rgba(224,225,226,0.6), rgba(255,255,255,0.85));
}

.modal-kicker {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 37, 56, 0.72);
}

.modal-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
  margin: 0;
}

.modal-body {
  padding: 1.2rem 1.5rem 1.5rem;
}

.modal-intro {
  margin-bottom: 1rem;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.modal-list {
  display: grid;
  gap: 1rem;
}

.modal-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 0.9rem 0.9rem 0.8rem;
  border: 1px solid rgba(28, 37, 56, 0.08);
  background: rgba(224, 225, 226, 0.22);
}

.modal-list span {
  font-size: 1.7rem;
  font-weight: 800;
  color: rgba(28, 37, 56, 0.5);
}

.modal-list p {
  margin: 0;
  color: var(--text-soft);
}

.btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231C2538'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586l6.293-6.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414Z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .navbar {
    background: rgba(28, 37, 56, 0.9);
    backdrop-filter: blur(14px);
  }

  .navbar-nav {
    padding: 1rem 0 0.5rem;
    gap: 0.4rem;
  }

  .nav-item-social {
    margin-left: 0;
  }

  .hero-text h1 {
    max-width: 520px;
  }

  .stats-grid,
  .process-grid,
  .services-grid,
  .team-grid,
  .coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .stats-grid,
  .process-grid,
  .services-grid,
  .team-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-text h1 {
    font-size: clamp(2.3rem, 12vw, 4.1rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: auto;
    min-width: 220px;
  }

  .cta-content {
    padding: 1.5rem;
  }

  .cta-shell {
    min-height: 460px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
