:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-elevated: #080808;
  --bg-subtle: #030303;
  --card: #111;
  --card-deep: #090909;
  --surface: #0d0d0d;
  --text: #fff;
  --text-strong: #fff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(214, 162, 29, 0.22);
  --section-border: rgba(214, 162, 29, 0.12);
  --header-bg: rgba(0, 0, 0, 0.88);
  --nav-mobile-bg: rgba(5, 5, 5, 0.93);
  --hero-overlay-1: rgba(0, 0, 0, 0.92);
  --hero-overlay-2: rgba(0, 0, 0, 0.75);
  --hero-overlay-3: rgba(0, 0, 0, 0.5);
  --hero-overlay-4: rgba(0, 0, 0, 0.85);
  --hero-after-side: rgba(0, 0, 0, 0.2);
  --hero-fade-bottom: #050505;
  --hero-mobile-bg: linear-gradient(135deg, #020202 0%, #080808 45%, #101010 100%);
  --page-hero-bg: linear-gradient(135deg, #050505, #101010);
  --section-dark-bg: linear-gradient(180deg, #080808, #050505);
  --service-card-bg: linear-gradient(180deg, #111, #090909);
  --contact-card-bg: linear-gradient(180deg, #111, #080808);
  --panel-bg: rgba(255, 255, 255, 0.035);
  --panel-border: rgba(214, 162, 29, 0.18);
  --stat-bg: rgba(255, 255, 255, 0.03);
  --faq-bg: rgba(255, 255, 255, 0.03);
  --btn-secondary-bg: rgba(0, 0, 0, 0.35);
  --btn-secondary-text: #fff;
  --shadow: rgba(0, 0, 0, 0.35);
  --shadow-lg: rgba(0, 0, 0, 0.5);
  --text-shadow-hero: 0 12px 50px rgba(0, 0, 0, 0.6);
  --footer-text: rgba(255, 255, 255, 0.62);
  --link-hover: #fff;
  --on-gold: #070707;
  --on-gold-hover: #090909;
  --skip-link-text: #050505;
  --nav-pill-active-text: #050505;
  --nav-pill-bg: rgba(255, 255, 255, 0.035);
  --nav-pill-border: rgba(214, 162, 29, 0.18);
  --hero-mobile-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  --hero-mobile-card-border: rgba(214, 162, 29, 0.16);
  --wpp-header-bg: rgba(214, 162, 29, 0.055);
  --video-bg: #000;
  --map-bg: #0a0a0a;
  --grid-line: rgba(214, 162, 29, 0.026);
  --gold: #d6a21d;
  --gold2: #f2c95b;
  --font-main: Inter, Arial, Helvetica, sans-serif;
  --font-display: "Arial Black", Impact, Arial, sans-serif;
  --scroll-padding: 92px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding);
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

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

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

section[id],
main[id] {
  scroll-margin-top: var(--scroll-padding);
}

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--gold2);
  color: var(--skip-link-text);
  font-weight: 900;
  border-radius: 0 0 8px 8px;
}

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

/* Header */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 92px;
  background: var(--header-bg);
  transition: background-color 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  width: min(92%, 1440px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand picture {
  display: block;
  line-height: 0;
}

.brand img {
  display: block;
  height: 58px;
  width: auto;
  object-fit: contain;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.nav a {
  opacity: 0.9;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--gold2);
  border-color: var(--gold);
}

.header-wpp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 206px;
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  background: var(--wpp-header-bg);
  color: var(--gold2);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.header-wpp:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--on-gold-hover);
  border-color: transparent;
}

.header-wpp .wpp-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: url("assets/images/whatsapp-icon.svg") center / contain no-repeat;
  filter: invert(78%) sepia(73%) saturate(576%) hue-rotate(359deg) brightness(98%);
}

.header-wpp:hover .wpp-icon {
  filter: brightness(0);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  padding: 132px 0 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(214, 162, 29, 0.16), transparent 28%),
    radial-gradient(circle at 14% 78%, rgba(214, 162, 29, 0.09), transparent 26%),
    linear-gradient(
      90deg,
      var(--hero-overlay-1) 0%,
      var(--hero-overlay-2) 40%,
      var(--hero-overlay-3) 70%,
      var(--hero-overlay-4) 100%
    ),
    url("assets/images/hero-bg.webp") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.45;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--hero-after-side), transparent 42%, rgba(214, 162, 29, 0.035)),
    linear-gradient(180deg, transparent 70%, var(--hero-fade-bottom) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 360px);
  justify-content: space-between;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  color: var(--gold2);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2.5px;
  margin-bottom: 28px;
}

.hero h1,
.page-hero h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 74px;
  line-height: 0.98;
  letter-spacing: 0.4px;
  max-width: 720px;
  text-shadow: var(--text-shadow-hero);
}

.hero h1 span,
.page-hero h2 span {
  display: block;
  background: linear-gradient(90deg, var(--gold2), #a97909);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 20px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin: 24px 0 32px;
}

.actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.section-cta {
  margin-top: 28px;
}

.btn {
  height: 60px;
  padding: 0 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid var(--line);
  transition: transform 0.25s, background 0.25s, color 0.25s;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--on-gold);
  box-shadow: 0 16px 40px rgba(214, 162, 29, 0.25);
}

.btn.secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border-color: var(--gold);
}

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

.hero-panels {
  display: grid;
  gap: 14px;
  max-width: 340px;
}

.panel {
  padding: 18px 20px;
  border: 1px solid var(--panel-border);
  border-radius: 15px;
  background: var(--panel-bg);
  box-shadow: 0 18px 55px var(--shadow-lg), inset 0 0 25px rgba(214, 162, 29, 0.025);
}

.panel strong {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 7px;
}

.panel span {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Sections */
.section {
  padding: 92px 0;
  border-top: 1px solid var(--section-border);
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

#inicio.hero,
.topbar {
  content-visibility: visible;
}

.section.tight {
  padding-top: 50px;
}

.section.dark {
  background: var(--section-dark-bg);
  transition: background 0.35s ease;
}

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

.section-title p {
  color: var(--gold2);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 48px;
  line-height: 1.05;
  max-width: 820px;
}

.desc {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 820px;
  margin-top: 18px;
}

/* Cards & grids */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

.service-card {
  background: var(--service-card-bg);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px var(--shadow);
  transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s;
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 201, 91, 0.55);
  box-shadow: 0 28px 70px var(--shadow-lg);
}

.service-card .photo {
  position: relative;
  width: 100%;
  height: 225px;
  overflow: hidden;
  background: var(--card-deep);
}

.service-card .photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s;
}

.service-card:hover .photo img {
  transform: scale(1.05);
}

.body {
  padding: 21px;
}

.body h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 23px;
  margin-bottom: 12px;
}

.body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.about-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px var(--shadow-lg);
}

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

.stat {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 18px 16px;
  background: var(--stat-bg);
  content-visibility: auto;
  contain-intrinsic-size: 1px 120px;
}

.stat strong {
  font-family: var(--font-display);
  color: var(--gold2);
  font-size: 32px;
  display: block;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  padding: 155px 0 70px;
  background: var(--page-hero-bg);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease;
}

.page-hero > .container {
  width: min(92%, 1440px);
  margin-inline: auto;
}

.onepage-section .section > .container {
  width: min(92%, 1440px);
  margin-inline: auto;
}

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

.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

.video-card video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--video-bg);
}

.video-card .body {
  padding: 24px;
}

.video-card .body h3 {
  font-size: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  background: var(--contact-card-bg);
  content-visibility: auto;
  contain-intrinsic-size: 1px 320px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-card p,
.contact-card li {
  color: var(--muted);
  line-height: 1.8;
}

.contact-card a {
  color: var(--gold2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card a:hover {
  color: var(--link-hover);
}

.contact-card ul {
  padding-left: 20px;
}

.contact-actions {
  margin-top: 26px;
}

.differentials-grid .contact-card {
  padding: 22px;
}

.differentials-grid .contact-card h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.differentials-grid .contact-card p {
  font-size: 15px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 88px;
  color: var(--footer-text);
  text-align: center;
  background: var(--bg-subtle);
  transition: background-color 0.35s ease, color 0.35s ease;
}

.footer p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer a {
  color: var(--gold2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer a:hover {
  color: var(--link-hover);
}

#faq.faq-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#faq .section-title {
  text-align: center;
  margin-inline: auto;
  max-width: 640px;
}

#faq .section-title h2,
#faq .section-title .desc {
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--faq-bg);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  text-align: left;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold2);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Localização */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.location-address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
  margin: 20px 0 24px;
}

.location-address strong {
  color: var(--text-strong);
  font-size: 18px;
}

.location-address a {
  color: var(--gold2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-address a:hover {
  color: var(--link-hover);
}

.location-actions {
  flex-wrap: wrap;
}

.location-map {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px var(--shadow-lg);
  min-height: 320px;
  background: var(--map-bg);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 6px rgba(37, 211, 102, 0.16);
  transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.52);
}

/* Desktop: painel do menu ocupa só a área visível abaixo do header fixo */
@media (min-width: 769px) {
  #inicio.hero {
    min-height: calc(100dvh - var(--scroll-padding));
    min-height: calc(100vh - var(--scroll-padding));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(20px, 3vh, 40px);
    padding-inline: 0;
    box-sizing: border-box;
  }

  .onepage-section > .page-hero:first-of-type {
    min-height: calc(100dvh - var(--scroll-padding));
    min-height: calc(100vh - var(--scroll-padding));
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding-block: clamp(20px, 3vh, 40px);
    padding-inline: 4%;
  }

  #portfolio.section.dark {
    min-height: calc(100dvh - var(--scroll-padding));
    min-height: calc(100vh - var(--scroll-padding));
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding-block: clamp(20px, 3vh, 40px);
    padding-inline: 4%;
  }

  #portfolio.section.dark > .container {
    width: min(92%, 1440px);
    margin-inline: auto;
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-panels {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1,
  .page-hero h2 {
    font-size: 56px;
  }

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

  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    height: 300px;
  }

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

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

  .topbar-inner {
    width: 94%;
    gap: 20px;
  }

  .nav {
    gap: 24px;
  }

  .header-wpp {
    min-width: 180px;
    padding: 0 14px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --scroll-padding: 168px;
  }

  .container {
    width: min(91%, 560px);
  }

  .topbar {
    height: 82px;
  }

  .topbar-inner {
    width: 100%;
    padding-inline: 18px;
    gap: 12px;
  }

  .brand img {
    height: 46px;
  }

  .nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    z-index: 49;
    flex: none;
    gap: 8px;
    padding: 9px 18px 10px;
    overflow-x: auto;
    background: var(--nav-mobile-bg);
    border-bottom: 1px solid var(--section-border);
    backdrop-filter: blur(12px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid var(--nav-pill-border);
    border-radius: 999px;
    background: var(--nav-pill-bg);
    font-size: 11px;
    letter-spacing: 0.25px;
    line-height: 1;
    border-bottom-width: 1px;
  }

  .nav a.active,
  .nav a:hover {
    color: var(--nav-pill-active-text);
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-color: transparent;
  }

  .header-wpp {
    min-width: auto;
    height: 42px;
    padding: 0 12px;
    font-size: 12px;
    gap: 6px;
  }

  .header-wpp .wpp-icon {
    width: 18px;
    height: 18px;
  }

  .hero {
    min-height: auto;
    padding: 155px 0 48px;
    align-items: flex-start;
    background:
      radial-gradient(circle at 85% 10%, rgba(214, 162, 29, 0.18), transparent 28%),
      var(--hero-mobile-bg),
      url("assets/images/hero-bg.webp") center / cover no-repeat;
  }

  .hero-grid > div:first-child {
    padding: 22px 18px 20px;
    border: 1px solid var(--hero-mobile-card-border);
    border-radius: 20px;
    background: var(--hero-mobile-card-bg);
    box-shadow: 0 22px 60px var(--shadow-lg);
  }

  .topbar-actions {
    gap: 8px;
  }

  .hero-panels {
    display: none;
  }

  .hero h1,
  .page-hero h2 {
    font-size: 35px;
    line-height: 1.04;
    text-wrap: balance;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
  }

  .lead {
    font-size: 15.5px;
    line-height: 1.58;
    margin: 18px 0 22px;
  }

  .btn {
    height: 50px;
    padding: 0 16px;
    font-size: 12.5px;
    border-radius: 12px;
  }

  .section {
    padding: 52px 0;
  }

  .section.tight {
    padding-top: 40px;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .section-title h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .desc {
    font-size: 15.5px;
    margin-top: 12px;
  }

  .services-grid,
  .services-preview {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card .photo {
    height: 200px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat {
    text-align: center;
    padding: 16px 12px;
  }

  .stat strong {
    font-size: 29px;
  }

  .page-hero {
    padding: 150px 0 46px;
  }

  .video-card video {
    height: 230px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card h3 {
    font-size: 28px;
  }

  .actions .btn {
    width: 100%;
  }

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

  .whatsapp-float img {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 420px) {
  :root {
    --scroll-padding: 160px;
  }

  .topbar-inner {
    padding-inline: 14px;
  }

  .brand img {
    height: 42px;
  }

  .nav {
    padding-inline: 14px;
  }

  .header-wpp {
    height: 39px;
    padding: 0 10px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .header-wpp .wpp-number {
    display: none;
  }

  .header-wpp {
    width: 40px;
    padding: 0;
    border-radius: 50%;
  }
}

@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;
  }
}
