:root {
  --black: #0d0d10;
  --ink: #141417;
  --paper: #f7f7f4;
  --white: #ffffff;
  --muted: #6f7078;
  --muted-dark: #b8b8c2;
  --line: rgba(20, 20, 23, 0.12);
  --line-dark: rgba(255, 255, 255, 0.13);
  --purple: #5b00d6;
  --purple-deep: #2c1a94;
  --purple-soft: #efe7ff;
  --silver: #e8e8ec;
  --shadow: 0 24px 70px rgba(11, 11, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(247, 247, 244, 0.82);
  border-bottom: 1px solid rgba(20, 20, 23, 0.06);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 176px;
  min-width: 176px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #34343a;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--purple);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(20px, 5vw, 72px) 72px;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(247, 247, 244, 0.94) 41%, rgba(247, 247, 244, 0.32) 100%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(91, 0, 214, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(91, 0, 214, 0.06) 0 1px, transparent 1px 100%);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent 62%);
  pointer-events: none;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 74% center;
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 46%, rgba(91, 0, 214, 0.1), transparent 28%),
    linear-gradient(90deg, var(--paper) 0%, rgba(247, 247, 244, 0.97) 30%, rgba(247, 247, 244, 0.48) 66%, rgba(247, 247, 244, 0.08) 100%),
    linear-gradient(0deg, rgba(247, 247, 244, 0.86) 0%, rgba(247, 247, 244, 0) 25%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 72px);
  top: 36%;
  transform: translateY(-50%);
  width: min(430px, 37vw);
  padding: 20px;
}

.hero-panel span,
.contact-strip span,
.contact-list span,
.process-grid span,
.info-card span {
  color: var(--purple);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 10px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(1.18rem, 1.9vw, 1.42rem);
  line-height: 1;
  text-transform: uppercase;
}

.hero-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: 14px;
}

.hero-panel-tags small {
  border: 1px solid rgba(91, 0, 214, 0.16);
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--purple);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.stats-band strong {
  font-family: Rajdhani, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 620px;
  font-size: clamp(2.55rem, 4.85vw, 4.8rem);
  line-height: 0.92;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
  line-height: 0.96;
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.58rem;
  line-height: 1.02;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy {
  width: min(570px, 100%);
  color: #47474f;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(91, 0, 214, 0.25);
}

.button.primary:hover {
  background: var(--purple-deep);
}

.button.secondary {
  border: 1px solid rgba(20, 20, 23, 0.22);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.section {
  padding: clamp(68px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.info-card {
  border: 1px solid rgba(91, 0, 214, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(91, 0, 214, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(11, 11, 16, 0.08);
  backdrop-filter: blur(18px);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - clamp(40px, 10vw, 144px)));
  margin: clamp(-46px, -4.5vw, -26px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.contact-strip a {
  display: grid;
  gap: 6px;
  min-height: 92px;
  align-content: center;
  padding: 20px clamp(20px, 4vw, 42px);
  background: var(--white);
  transition: background 160ms ease, color 160ms ease;
}

.contact-strip a:hover {
  background: var(--purple-soft);
}

.contact-strip .contact-primary {
  background: var(--black);
}

.contact-strip .contact-primary span {
  color: #b99cff;
}

.contact-strip .contact-primary strong {
  color: var(--white);
}

.contact-strip .contact-primary:hover {
  background: var(--purple);
}

.contact-strip strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
}

.intro {
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(91, 0, 214, 0.08), transparent 34%),
    var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(320px, 420px);
  justify-content: space-between;
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}

.intro-card,
.heading-note {
  padding: clamp(22px, 3vw, 34px);
}

.intro-card span,
.heading-note span {
  display: block;
  margin-bottom: 12px;
}

.intro-card p,
.heading-note p {
  margin-bottom: 0;
}

.intro-grid p,
.section-heading p,
.instagram-copy p,
.contact-panel p,
.product-card p,
.stats-band span,
.site-footer {
  color: var(--muted);
}

.intro-grid p,
.instagram-copy p,
.contact-panel p {
  font-size: 1.08rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line-dark);
}

.stats-band div {
  display: grid;
  gap: 8px;
  min-height: 184px;
  align-content: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(91, 0, 214, 0.16), transparent 42%),
    var(--black);
}

.stats-band strong {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.stats-band span {
  color: var(--muted-dark);
}

.catalog {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(320px, 420px);
  justify-content: space-between;
  gap: clamp(32px, 6vw, 92px);
  margin-bottom: 36px;
  align-items: flex-start;
}

.heading-note {
  width: 100%;
}

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

.product-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(91, 0, 214, 0.08);
  border-radius: 999px;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 52px;
  border: 1px solid rgba(91, 0, 214, 0.16);
  border-radius: 8px;
  background: var(--purple-soft);
  color: var(--purple);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.product-card p {
  position: relative;
  z-index: 1;
}

.buying-context {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  background: var(--black);
  color: var(--white);
}

.buying-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--line-dark);
}

.buying-list article {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(91, 0, 214, 0.18), transparent 48%),
    #15151b;
}

.buying-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.buying-list p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.process {
  background:
    linear-gradient(135deg, rgba(91, 0, 214, 0.1), transparent 36%),
    var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-grid article {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 48px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.seo-section {
  background: var(--paper);
}

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

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(11, 11, 16, 0.08);
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(91, 0, 214, 0.08), transparent 34%),
    var(--white);
  color: var(--ink);
}

.instagram-copy {
  max-width: 620px;
}

.instagram-copy h2 {
  max-width: 600px;
  font-size: clamp(1.95rem, 3.9vw, 3.55rem);
  line-height: 1;
}

.instagram-copy p {
  max-width: 560px;
  color: var(--muted);
}

.content-card {
  padding: clamp(26px, 3.5vw, 38px);
}

.content-card span,
.message-card span {
  color: var(--purple);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-card strong {
  display: block;
  margin: 12px 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(1.55rem, 2.85vw, 2.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.content-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  background: var(--paper);
}

.contact-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(32px, 7vw, 72px);
  background:
    linear-gradient(135deg, rgba(91, 0, 214, 0.12), transparent 44%),
    var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  max-width: 760px;
}

.message-card {
  display: grid;
  gap: 8px;
  width: min(680px, 100%);
  margin-top: 26px;
  border-left: 4px solid var(--purple);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--purple-soft);
}

.message-card p {
  margin-bottom: 0;
  color: #34343a;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.contact-list div {
  display: grid;
  gap: 8px;
  min-height: 108px;
  align-content: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-list strong {
  overflow-wrap: anywhere;
  color: var(--ink);
}

.contact-list a {
  color: inherit;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5.5vw, 66px) clamp(20px, 5vw, 72px) 28px;
  background:
    linear-gradient(135deg, rgba(91, 0, 214, 0.22), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(91, 0, 214, 0.2), transparent 30%),
    var(--black);
  color: var(--muted-dark);
  font-size: 0.94rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%);
  background-size: 74px 74px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.55), transparent 68%);
  pointer-events: none;
}

.footer-main,
.footer-links,
.footer-legal {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding-bottom: clamp(28px, 4vw, 42px);
}

.footer-brand {
  max-width: 620px;
}

.footer-brand p {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-social a:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-social a:nth-child(2) svg,
.footer-social a:nth-child(3) svg {
  width: 27px;
  height: 27px;
}

.footer-cta {
  display: grid;
  gap: 14px;
  justify-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.footer-cta span,
.footer-links span {
  color: #b99cff;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta strong {
  color: var(--white);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.footer-cta .button {
  margin-top: 4px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--line-dark);
}

.footer-links nav,
.footer-links div {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 188px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-links p {
  margin: 0;
  color: inherit;
}

.site-footer a {
  color: inherit;
  width: fit-content;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.site-footer .footer-social a {
  width: 48px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.footer-legal p {
  max-width: none;
  margin-bottom: 0;
  color: rgba(232, 232, 236, 0.68);
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: clamp(18px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.whatsapp-float:hover {
  background: #1fbd5a;
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 44px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    transform: none;
    width: min(100%, 560px);
    margin-top: 32px;
  }

  .hero-panel-tags {
    flex-wrap: wrap;
  }

  .hero-image {
    object-position: 74% center;
    opacity: 0.38;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, var(--paper) 0%, rgba(247, 247, 244, 0.94) 74%, rgba(247, 247, 244, 0.62) 100%),
      linear-gradient(0deg, var(--paper) 0%, rgba(247, 247, 244, 0) 26%);
  }

  .intro-grid,
  .content-section,
  .buying-context,
  .section-heading,
  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .contact-strip {
    width: 100%;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .stats-band,
  .product-grid,
  .process-grid,
  .faq-grid,
  .contact-strip,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .stats-band div,
  .product-card,
  .process-grid article {
    min-height: 0;
  }

  .process-grid span {
    margin-bottom: 30px;
  }

  .card-icon {
    margin-bottom: 34px;
  }

}

@media (max-width: 540px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    width: 144px;
    min-width: 144px;
  }

  .site-nav {
    top: 68px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: 88svh;
    padding: 92px 18px 28px;
  }

  h1 {
    font-size: clamp(2.25rem, 10.4vw, 3.35rem);
    line-height: 0.92;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section,
  .content-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-strip {
    width: calc(100% - 28px);
    margin: -30px auto 0;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .product-card,
  .stats-band div,
  .contact-panel,
  .process-grid article,
  .intro-card,
  .heading-note,
  .contact-strip a,
  .faq-grid article {
    padding: 24px;
  }

  .hero-panel {
    display: none;
  }
  .site-footer {
    padding: 38px 18px 24px;
  }

  .footer-brand p {
    font-size: 1rem;
  }

  .footer-links nav,
  .footer-links div {
    min-height: 0;
    padding: 22px;
  }

  .footer-legal {
    display: block;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
