/* =========================================================
   MayoristasARG.com — Claymorphism / Soft UI
   Paleta de marca: Azul Marino #1A365D · Naranja #F97316 · Blanco #FFFFFF
   ========================================================= */

:root {
  --cream: #f2f5fa;
  --cream-2: #e9eff7;
  --cream-3: #dae3f0;
  --card: #ffffff;
  --card-2: #fbfcfe;

  --ink: #0f2340;
  --body: #41526b;
  --muted: #78859b;

  --line: #e2e8f2;
  --line-2: #ccd7e6;

  --clay: #1a365d;
  --clay-hover: #24487a;
  --clay-dark: #0e2340;
  --clay-tint: #e7eef8;

  --accent: #f97316;
  --accent-hover: #fb8a3c;
  --accent-dark: #b8530b;
  --accent-tint: #fff0e3;

  --sage: #25be63;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --gold: #f97316;
  --doc-accent: #f97316;

  --font-heading: "Poppins", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius-card: 24px;
  --radius-card-sm: 20px;
  --radius-pill: 999px;
  --radius-input: 14px;

  --sh-sm: 0 1px 2px rgba(23, 40, 80, 0.05), 0 6px 16px -8px rgba(23, 40, 80, 0.12);
  --sh-md: 0 3px 8px -3px rgba(23, 40, 80, 0.1), 0 18px 36px -18px rgba(23, 40, 80, 0.16);
  --sh-inset: inset 0 1px 0 rgba(255, 255, 255, 0.7);

  --container-w: 1200px;
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@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;
  }
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (min-width: 900px) {
  body {
    padding-right: 24px;
  }
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-input);
  z-index: 2000;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 2px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section {
  position: relative;
}

.section-pad {
  padding-block: clamp(3.25rem, 7vw, 6rem);
  scroll-margin-top: 130px;
}

.bg-cream {
  background: var(--cream);
}

.bg-cream-2 {
  background: var(--cream-2);
}

.section-head {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent-dark);
  background: var(--accent-tint);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/* ---------- Botones squishy ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform 0.15s var(--bounce), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
}

.btn svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 5px 0 0 var(--clay-dark), var(--sh-sm);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--clay-hover);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 0 var(--clay-dark), var(--sh-md);
}

.btn-primary:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 0 var(--clay-dark);
}

.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line-2);
  box-shadow: 0 4px 0 0 var(--line-2), var(--sh-sm);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--clay);
  color: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 0 var(--line-2), var(--sh-md);
}

.btn-outline:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 0 var(--line-2);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 5px 0 0 var(--whatsapp-dark), var(--sh-sm);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #2fe077;
  transform: translateY(-2px);
  box-shadow: 0 7px 0 0 var(--whatsapp-dark), var(--sh-md);
}

.btn-whatsapp:active {
  transform: translateY(5px);
  box-shadow: 0 0 0 0 var(--whatsapp-dark);
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn.is-added {
  background: var(--sage);
  box-shadow: 0 5px 0 0 #189449, var(--sh-sm);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--whatsapp-dark);
  background: #dcf7e6;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

/* ---------- Barra de progreso de scroll ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ---------- Banner de oferta ---------- */
.offer-banner {
  background: var(--clay);
  color: #fff;
}

.offer-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-block: 0.65rem;
  position: relative;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.offer-banner svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.offer-banner .short {
  display: none;
}

@media (max-width: 560px) {
  .offer-banner .full {
    display: none;
  }
  .offer-banner .short {
    display: inline;
  }
}

/* ---------- Header / Nav ---------- */
.top-fixed {
  position: sticky;
  top: 0;
  z-index: 900;
}

.site-header {
  background: rgba(242, 245, 250, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-block: 1rem;
  transition: box-shadow 0.2s var(--ease), padding 0.2s var(--ease), background 0.2s var(--ease);
}

.top-fixed.is-scrolled .site-header {
  box-shadow: var(--sh-sm);
  padding-block: 0.65rem;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
}

@media (min-width: 900px) {
  .logo-img {
    height: 46px;
  }
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--body);
  transition: color 0.15s var(--ease);
}

.main-nav a:hover {
  color: var(--clay);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 899px) {
  .header-cta {
    display: none;
  }

  .site-header .container {
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    grid-auto-flow: dense;
    align-items: center;
    column-gap: 0.6rem;
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
  }

  .header-actions {
    display: contents;
  }

  .nav-toggle {
    grid-column: 1;
    grid-row: 1;
  }

  .cart-btn {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}

.cart-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
  transition: transform 0.15s var(--bounce), border-color 0.15s var(--ease);
}

.cart-btn:hover {
  transform: translateY(-2px);
  border-color: var(--clay);
}

.cart-btn svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: transform 0.25s var(--bounce), opacity 0.2s var(--ease);
  box-shadow: 0 2px 0 0 var(--accent-dark);
}

.cart-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

.cart-badge.bump {
  animation: badge-bump 0.4s var(--bounce);
}

@keyframes badge-bump {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--ink);
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }
  .nav-toggle {
    display: none;
  }
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 890;
  padding: 8rem 1.5rem 2.5rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  background: #fff;
  border-radius: var(--radius-card-sm);
  box-shadow: var(--sh-sm);
  transition: transform 0.15s var(--bounce), box-shadow 0.15s var(--ease);
}

.mobile-nav a:active {
  transform: scale(0.98);
}

.mn-ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--clay-tint);
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mn-ic svg {
  width: 17px;
  height: 17px;
}

.mobile-nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.mobile-nav-social a {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s var(--bounce), background 0.15s var(--ease), color 0.15s var(--ease);
  color: var(--ink);
}

.mobile-nav-social a:hover,
.mobile-nav-social a:active {
  background: var(--clay);
  color: #fff;
  transform: translateY(-2px);
}

.mobile-nav-social svg {
  width: 27px;
  height: 27px;
}

.mobile-nav .btn {
  margin-top: 1.5rem;
  background: var(--clay);
  color: #fff;
  box-shadow: 0 5px 0 0 var(--clay-dark), var(--sh-sm);
}

body.nav-open,
body.cart-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .mobile-nav {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.hero .container {
  display: grid;
  gap: clamp(2.5rem, 6vw, 3.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .hero-visual {
    order: 2;
  }
  .hero-copy {
    order: 1;
  }
}

@media (max-width: 959px) {
  .hero-copy {
    text-align: center;
  }
  .hero-badge {
    margin-inline: auto;
  }
  .hero-sub {
    margin-inline: auto;
  }
  .hero-trust {
    align-items: center;
  }
  .hero-trust li {
    justify-content: center;
  }
  .hero-price {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 2px solid var(--line);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--body);
  box-shadow: var(--sh-sm);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero h1 .hl {
  background: var(--accent-tint);
  color: var(--accent-dark);
  padding: 0.05em 0.25em;
  border-radius: 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: nowrap;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--body);
  margin-bottom: 1.5rem;
  max-width: 46ch;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.hero-trust li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #dcf7e6;
  color: var(--sage);
  padding: 4px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hero-price .from {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-price strong {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Hero visual: doc card ---------- */
.hero-visual {
  position: relative;
}

.doc-mockup {
  position: relative;
  z-index: 0;
  max-width: 420px;
  margin-inline: auto;
}

.doc-mockup::before,
.doc-mockup::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10px 16px 16px 16px;
  background: var(--cream-2);
  border-radius: var(--radius-card);
  box-shadow: var(--sh-sm);
}

.doc-mockup::before {
  transform: rotate(-4deg) translateY(6px);
}

.doc-mockup::after {
  transform: rotate(4deg) translateY(10px);
  background: var(--cream-3);
}

.doc-card {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--sh-md), var(--sh-inset);
  padding: 0;
  position: relative;
  overflow: hidden;
  animation: doc-float 5s ease-in-out infinite;
}

.doc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  color: #fff;
  padding: 0.85rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.doc-card-top-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.doc-card-top-left svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.doc-card-top-right {
  opacity: 0.9;
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}

.doc-card-body {
  padding: 1.75rem;
}

@keyframes doc-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-7px) rotate(-0.6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .doc-card {
    animation: none;
  }
}

.doc-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.doc-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.doc-brand strong {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ink);
}

.doc-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.doc-card-body > p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.doc-card hr {
  border: none;
  border-top: 1px solid var(--line);
  margin-bottom: 1rem;
}

.doc-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.doc-rows li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.doc-row-dots {
  flex: 1;
  border-bottom: 2px dotted var(--line);
  margin-bottom: 0.2rem;
}

.doc-rows li b {
  color: var(--doc-accent);
  font-family: var(--font-heading);
  font-weight: 800;
}

.doc-more-btn {
  width: 100%;
  background: var(--clay-tint);
  color: var(--clay-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem;
  border-radius: var(--radius-input);
  text-align: center;
  transition: background 0.15s var(--ease), transform 0.15s var(--bounce);
}

.doc-more-btn:hover {
  background: #d9e4fb;
  transform: translateY(-1px);
}

.float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border-radius: var(--radius-card-sm);
  box-shadow: var(--sh-md), var(--sh-inset);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  animation: float-bob 4s ease-in-out infinite;
}

.float-pill .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--clay-tint);
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-pill .ic svg {
  width: 17px;
  height: 17px;
}

.float-pill small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.74rem;
}

.float-pill.pill-a {
  top: -9%;
  left: -14%;
  animation-delay: 0s;
}

.float-pill.pill-b {
  bottom: -7%;
  right: -12%;
  background: var(--ink);
  color: #fff;
  animation-delay: 0.6s;
}

.float-pill.pill-b small {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 640px) {
  .float-pill {
    display: none;
  }
}

@keyframes float-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-pill {
    animation: none;
  }
}

/* ---------- Stats ---------- */
.stats-row {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.stats-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.stats-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: stats-scroll 22s linear infinite;
}

@keyframes stats-scroll {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats-track {
    animation: none;
  }
}

.stats-marquee:hover .stats-track {
  animation-play-state: paused;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-card-sm);
  padding: 1.5rem 1rem;
  box-shadow: var(--sh-sm);
  text-align: center;
}

.stats-track .stat-card {
  flex-shrink: 0;
  width: 200px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--clay);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Precios ---------- */
.pricing-grid {
  grid-template-columns: 1fr;
  max-width: 1180px;
  margin-inline: auto;
  align-items: stretch;
}

@media (min-width: 700px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-sm), var(--sh-inset);
  transition: transform 0.2s var(--bounce), box-shadow 0.2s var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md), var(--sh-inset);
}

.price-card.popular {
  border: 2px solid var(--accent);
  box-shadow: var(--sh-md), var(--sh-inset);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.price-desc {
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 2.5em;
  margin-bottom: 1.25rem;
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--sh-sm);
  white-space: nowrap;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.15rem;
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 600;
}

.price-off {
  background: #fdeee0;
  color: #b0620f;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
}

.price-new {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
}

.price-save {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--whatsapp-dark);
  background: #dcf7e6;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin: 0.6rem 0 1.4rem;
}

.price-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--body);
}

.price-features li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dcf7e6;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.price-features li.popular-feature {
  color: var(--ink);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-top: 2.25rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.pricing-note svg {
  width: 16px;
  height: 16px;
  color: var(--whatsapp);
}

/* ---------- Rubros ---------- */
.category-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 560px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.category-card {
  background: var(--card);
  border-radius: var(--radius-card-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform 0.2s var(--bounce), box-shadow 0.2s var(--ease);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.category-card .cat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--clay-tint);
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}

.category-card .cat-icon svg {
  width: 22px;
  height: 22px;
}

.category-card span {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.category-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---------- Beneficios ---------- */
.benefits-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--sh-sm), var(--sh-inset);
  transition: transform 0.2s var(--bounce), box-shadow 0.2s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--body);
  font-size: 0.92rem;
}

/* ---------- Cómo funciona ---------- */
.steps-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--sh-sm), var(--sh-inset);
  text-align: center;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 0 0 var(--clay-dark);
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--body);
  font-size: 0.9rem;
}

/* ---------- Testimonios ---------- */
.testimonial-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--sh-sm), var(--sh-inset);
}

.testimonial-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--cream-2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
}

.stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.testimonial-card > p {
  color: var(--body);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clay-tint);
  color: var(--clay-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius-card-sm);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.faq-question .chevron {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--clay-tint);
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--bounce), background 0.15s var(--ease), color 0.15s var(--ease);
}

.faq-question .chevron svg {
  width: 15px;
  height: 15px;
}

.faq-item.is-open .faq-question .chevron {
  transform: rotate(180deg);
  background: var(--clay);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-answer p {
  padding: 0 1.5rem 1.35rem;
  color: var(--body);
  font-size: 0.92rem;
}

/* ---------- CTA final ---------- */
.cta-final {
  background: var(--clay);
  color: #fff;
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.cta-final h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  margin-bottom: 0.85rem;
  text-wrap: balance;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

.cta-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-final-actions .btn-primary {
  background: #fff;
  color: var(--clay-dark);
  box-shadow: 0 5px 0 0 var(--clay-dark), var(--sh-sm);
}

.cta-final-actions .btn-primary:hover {
  background: #f3f6ff;
  box-shadow: 0 7px 0 0 var(--clay-dark), var(--sh-md);
}

.cta-final-actions .btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  box-shadow: none;
}

.cta-final-actions .btn-outline:hover {
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

.cta-final-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 700px) {
  .footer-top {
    grid-template-columns: 1.2fr 2fr;
  }
}

.footer-brand p {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s var(--ease), transform 0.15s var(--bounce);
}

.footer-social a:hover {
  background: var(--clay);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.88rem;
  transition: color 0.15s var(--ease);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-block: 1.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ---------- WhatsApp flotante ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  z-index: 850;
  animation: wsp-bob 2.4s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

@keyframes wsp-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

/* ---------- Botón volver arriba ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 5.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
  z-index: 840;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--bounce);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  border-color: var(--clay);
}

.back-to-top svg {
  width: 19px;
  height: 19px;
  color: var(--ink);
}

@media (max-width: 640px) {
  .back-to-top {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
  }
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}

/* ---------- Toast ---------- */
.toast-stack {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: min(360px, calc(100vw - 2.5rem));
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border-radius: var(--radius-card-sm);
  box-shadow: var(--sh-md);
  padding: 1rem 1.1rem;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s var(--bounce), opacity 0.3s var(--ease);
}

.toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.toast .toast-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dcf7e6;
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast .toast-ic svg {
  width: 17px;
  height: 17px;
}

.toast p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .toast {
    transition: opacity 0.2s linear;
  }
}

/* ---------- Carrito (paso 1) y Checkout (paso 2) ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 35, 60, 0.45);
  z-index: 960;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  width: min(480px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: var(--radius-card);
  z-index: 970;
  padding: 2rem;
  box-shadow: var(--sh-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--bounce);
}

.cart-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.cart-modal .modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
  transition: transform 0.15s var(--bounce);
}

.cart-modal .modal-close:hover {
  transform: rotate(90deg);
}

.cart-modal .modal-close svg {
  width: 17px;
  height: 17px;
}

.cart-modal h3 {
  font-size: 1.35rem;
  margin-bottom: 1.35rem;
  padding-right: 2rem;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
}

.cart-empty svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  color: var(--line-2);
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #fff;
  border-radius: var(--radius-input);
  padding: 0.9rem 1rem;
  box-shadow: var(--sh-sm);
}

.cart-item-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
}

.cart-item-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

.cart-item-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream-2);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.5rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
  transition: transform 0.15s var(--bounce);
}

.qty-btn:hover {
  transform: scale(1.1);
}

.qty-val {
  min-width: 1.2em;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-total {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--ink);
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}

.cart-item-remove:hover {
  color: #d13a3a;
  background: #fdeaea;
}

.cart-item-remove svg {
  width: 15px;
  height: 15px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-input);
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.cart-total-row strong {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ink);
}

.checkout-summary {
  background: #fff;
  border-radius: var(--radius-input);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}

.checkout-summary .cs-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  color: var(--body);
  padding: 0.25rem 0;
}

.checkout-summary .cs-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  border-top: 1px dashed var(--line-2);
  margin-top: 0.5rem;
  padding-top: 0.6rem;
}

.cart-modal label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.cart-modal input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--line);
  background: #fff;
  border-radius: var(--radius-input);
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 0.3rem;
  transition: border-color 0.15s var(--ease);
}

.cart-modal input:focus {
  border-color: var(--clay);
}

.cart-modal input.has-error {
  border-color: #d13a3a;
}

.field-error {
  display: block;
  color: #d13a3a;
  font-size: 0.78rem;
  min-height: 1.2em;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.cart-modal .btn {
  margin-top: 0.5rem;
}

.checkout-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.85rem;
}

.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1rem;
  transition: color 0.15s var(--ease);
}

.checkout-back:hover {
  color: var(--clay);
}

.checkout-back svg {
  width: 15px;
  height: 15px;
}

.checkout-success {
  text-align: center;
  padding: 1rem 0;
}

.checkout-success .ok-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcf7e6;
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.checkout-success .ok-icon svg {
  width: 30px;
  height: 30px;
}

.checkout-success h3 {
  margin-bottom: 0.6rem;
}

.checkout-success p {
  color: var(--body);
  margin-bottom: 1.5rem;
  font-size: 0.94rem;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 70ms);
}

/* ---------- Páginas legales ---------- */
.legal-page {
  padding-top: clamp(7rem, 12vw, 8.5rem);
  padding-bottom: 4rem;
}

.legal-page h1 {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.legal-page .updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--body);
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.legal-page a {
  color: var(--clay);
  font-weight: 600;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--clay);
  margin-bottom: 2rem;
}

.legal-back svg {
  width: 18px;
  height: 18px;
}
