:root {
  --navy-950: #061126;
  --navy-900: #0a1733;
  --navy-800: #10264f;
  --navy-700: #18396c;
  --blue: #4b8cff;
  --orange: #ff8a3d;
  --orange-dark: #e96a1f;
  --green: #25d366;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --text: #13213a;
  --muted: #65748b;
  --line: #dce4ef;
  --shadow: 0 24px 70px rgba(8, 26, 57, .14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(6, 17, 38, .91);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--orange), #ffb15f);
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: 0 10px 24px rgba(255, 138, 61, .25);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: -.04em;
}

.brand-copy span {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .74;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, .82);
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transition: width .25s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--navy-950);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(255, 138, 61, .25);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(255,255,255,.07);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  padding: 152px 0 102px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(30deg, rgba(255,255,255,.018) 1px, transparent 1px) 0 0 / 56px 56px,
    radial-gradient(circle at 82% 26%, rgba(75, 140, 255, .16), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #102752);
}

.hero::after {
  content: "";
  position: absolute;
  left: -3%;
  bottom: -86px;
  width: 106%;
  height: 145px;
  border-radius: 50% 50% 0 0;
  background: var(--off-white);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 320px;
  height: 320px;
  left: -150px;
  top: 110px;
  background: rgba(255, 138, 61, .09);
}

.hero-glow-two {
  width: 250px;
  height: 250px;
  right: -90px;
  bottom: 120px;
  background: rgba(75, 140, 255, .11);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 68px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #cfe0ff;
}

.eyebrow.dark {
  color: var(--orange-dark);
}

.eyebrow.light {
  color: #a6c7ff;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255,138,61,.13);
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(48px, 6vw, 80px);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy > p {
  max-width: 620px;
  margin-top: 26px;
  color: #c4d1e6;
  font-size: 18px;
  line-height: 1.72;
}

.hero-copy > p strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 16px;
  font-weight: 900;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.btn-primary {
  background: var(--orange);
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(255, 138, 61, .25);
}

.btn-primary:hover {
  background: #ff9b59;
  box-shadow: 0 18px 38px rgba(255, 138, 61, .32);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 33px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-contact span {
  color: #91a5c4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-contact a {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .02em;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.main-card {
  position: relative;
  width: min(100%, 525px);
  min-height: 505px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 38px;
  background: linear-gradient(155deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  box-shadow: 0 40px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  transform: rotate(1.2deg);
}

.visual-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #d9e6fa;
  font-size: 13px;
  font-weight: 800;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,138,61,.14);
  color: #ffc89f;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-illustration {
  width: 100%;
  height: auto;
  margin-top: 8px;
}

.visual-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.visual-labels span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(5,17,39,.34);
  color: #d4e1f4;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(12, 31, 66, .88);
  color: #e7effc;
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
}

.note-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--orange);
  color: var(--navy-950);
  font-size: 10px;
  font-weight: 900;
}

.note-one {
  left: -30px;
  top: 100px;
  animation: float 4.8s ease-in-out infinite;
}

.note-two {
  right: -24px;
  bottom: 68px;
  animation: float 5.4s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.service-strip {
  position: relative;
  z-index: 4;
  margin-top: -22px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.strip-grid article {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px 28px;
}

.strip-grid article + article {
  border-left: 1px solid var(--line);
}

.strip-number {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.strip-grid div {
  display: grid;
  line-height: 1.25;
}

.strip-grid strong {
  font-size: 16px;
}

.strip-grid div span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 660px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 460px;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(12, 35, 72, .07);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(75,140,255,.06);
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #c8d5e7;
  box-shadow: 0 28px 70px rgba(12, 35, 72, .12);
}

.service-card:hover::before {
  transform: scale(1.25);
}

.service-card.featured {
  background: linear-gradient(155deg, var(--navy-900), var(--navy-800));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 28px 70px rgba(7, 24, 52, .2);
}

.service-card.featured::before {
  background: rgba(255,138,61,.12);
}

.card-number {
  position: absolute;
  top: 30px;
  right: 28px;
  color: #b4c2d3;
  font-size: 12px;
  font-weight: 900;
}

.featured .card-number {
  color: #8099bd;
}

.service-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 20px;
  background: #edf4ff;
  color: var(--navy-700);
}

.featured .service-icon {
  background: var(--orange);
  color: var(--navy-950);
}

.service-icon svg {
  width: 41px;
  height: 41px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  max-width: 310px;
  margin-bottom: 14px;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.featured p {
  color: #afc0da;
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--navy-700);
  font-weight: 900;
}

.featured > a {
  color: var(--orange);
}

.service-card > a span {
  font-size: 22px;
  transition: transform .2s ease;
}

.service-card > a:hover span {
  transform: translateX(5px);
}

.contact-section {
  padding-top: 18px;
  padding-bottom: 118px;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  align-items: center;
  padding: 70px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(75,140,255,.16), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 35px 90px rgba(6, 23, 52, .22);
}

.contact-panel::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -130px;
  bottom: -180px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255,255,255,.025), 0 0 0 100px rgba(255,255,255,.018);
}

.contact-copy,
.contact-action {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  max-width: 650px;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.contact-copy > p {
  max-width: 630px;
  margin-top: 22px;
  color: #b5c4d9;
  font-size: 17px;
}

.contact-data {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 36px;
}

.contact-data div {
  display: grid;
  gap: 4px;
}

.contact-data span,
.footer-contact span {
  color: #8da2c1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-data a,
.contact-data strong {
  font-size: 17px;
  font-weight: 900;
}

.contact-action {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.whatsapp-orbit {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(37,211,102,.1);
}

.whatsapp-orbit svg {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  fill: var(--green);
}

.orbit-ring {
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(37,211,102,.45);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit-ring::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(37,211,102,.65);
}

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

.btn-whatsapp {
  min-width: 200px;
  background: var(--green);
  color: #051d0e;
  box-shadow: 0 15px 36px rgba(37,211,102,.23);
}

.site-footer {
  padding: 68px 0 26px;
  background: #040c1c;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid > div:first-child > p {
  color: #7f93b2;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 12px;
  color: #a5b5cc;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-contact a {
  font-size: 19px;
  font-weight: 900;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #6e83a2;
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 35px rgba(15, 89, 43, .35);
  transition: transform .22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 95px;
  z-index: 899;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 12px 28px rgba(8, 26, 57, .15);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(255, 138, 61, .7);
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .hero-grid {
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(48px, 6.5vw, 70px);
  }

  .main-card {
    min-height: 465px;
  }

  .note-one {
    left: -5px;
  }

  .note-two {
    right: -2px;
  }

  .contact-panel {
    padding: 56px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 auto auto;
    width: min(85vw, 360px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    padding: 90px 30px 40px;
    background: rgba(5, 14, 31, .98);
    box-shadow: -20px 0 50px rgba(0,0,0,.25);
    transform: translateX(104%);
    transition: transform .3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > a:not(.nav-cta) {
    padding: 15px 6px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 17px;
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .hero-copy > p,
  .hero h1 {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-contact {
    justify-content: center;
  }

  .hero-visual {
    min-height: 470px;
  }

  .main-card {
    max-width: 540px;
  }

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

  .strip-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .service-card {
    min-height: 350px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-copy h2,
  .contact-copy > p {
    margin-inline: auto;
  }

  .contact-data {
    justify-content: center;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 112px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.5vw, 60px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-contact {
    flex-direction: column;
    gap: 5px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .main-card {
    min-height: 0;
    padding: 16px;
    border-radius: 26px;
  }

  .visual-topline {
    font-size: 11px;
  }

  .visual-labels {
    grid-template-columns: 1fr;
  }

  .floating-note {
    display: none;
  }

  .service-strip {
    margin-top: -12px;
  }

  .strip-grid article {
    padding: 19px 20px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .service-card {
    min-height: 365px;
    padding: 24px;
  }

  .contact-section {
    padding-top: 0;
    padding-bottom: 84px;
  }

  .contact-panel {
    padding: 42px 22px;
    border-radius: 25px;
  }

  .contact-data {
    flex-direction: column;
    gap: 22px;
  }

  .whatsapp-orbit {
    width: 126px;
    height: 126px;
  }

  .whatsapp-orbit svg {
    width: 58px;
    height: 58px;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }

  .back-to-top {
    right: 22px;
    bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
