:root {
  --bg: #fbf7f3;
  --surface: #ffffff;
  --ink: #2b2a2f;
  --muted: rgba(43, 42, 47, .70);
  --line: rgba(43, 42, 47, .10);

  --rose: #f3c6cf;
  --beige: #f6efe7;
  --gold: #d6b06a;
  --lav: #e7ddff;
  --mint: #dff4ee;

  --shadow: 0 18px 46px rgba(15, 12, 20, .10);
  --shadow-soft: 0 12px 28px rgba(15, 12, 20, .08);
  --r: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(250deg, var(--bg), #fff);
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fondo pastel controlado por sección (NO se mueve con el viewport) */
.bg-pastel{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), #fff);
}
/* Fondo beige elegante */
.bg-beige{
  position: relative;
  background: linear-gradient(
    180deg,
    #f8f4ef 0%,
    #f3ece6 50%,
    #efe7df 100%
  );
}

/* Layer decorativo */
.bg-pastel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(248, 213, 220, 0.7), transparent 60%),
    radial-gradient(860px 520px at 90% 0%, rgba(231,221,255,.65), transparent 60%),
    radial-gradient(980px 560px at 40% 100%, rgba(223,244,238,.70), transparent 60%);
  pointer-events:none;
  z-index:0;
}

/* Asegura que el contenido quede por encima del fondo */
.bg-pastel > *{
  position: relative;
  z-index:1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(251, 247, 243, .70);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  /* centra verticalmente */
  gap: 12px;
  text-decoration: none;
}

.brand .mark {
  display: flex;
  align-items: center;
  /* centra verticalmente la imagen */
  justify-content: center;
  /* centra en X */
}

.brand img {
  display: block;
}

.mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(243, 198, 207, .95), rgba(231, 221, 255, .92));
  box-shadow: 0 14px 26px rgba(214, 176, 106, .18);
}

.mark:before {
  content: "";
  position: absolute;
  inset: -60% -35% auto auto;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at 30% 30%, rgba(214, 176, 106, .65), transparent 62%);
  transform: rotate(18deg);
}

.brand strong {
  font-weight: 850;
  letter-spacing: .2px;
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

.links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.links a {
  font-size: 13px;
  font-weight: 750;
  color: rgba(43, 42, 47, .72);
  padding: 9px 10px;
  border-radius: 12px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}

.links a:hover {
  background: rgba(255, 255, 255, .55);
  color: var(--ink);
}

.cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  appearance: none;
  border: 1px solid rgba(43, 42, 47, .14);
  background: rgba(255, 255, 255, .58);
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 850;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  border-color: rgba(214, 176, 106, .35);
  background: linear-gradient(135deg, rgba(214, 176, 106, .96), rgba(243, 198, 207, .86));
  color: #2b1f14;
  box-shadow: 0 16px 36px rgba(214, 176, 106, .24);
}

.btn-ghost {
  background: rgba(255, 255, 255, .42);
}

.hamb {
  display: none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(43, 42, 47, .14);
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

/* Mobile menu */
.mobileMenu {
  display: none;
  padding: 0 0 14px;
}

.mobileMenu.is-open {
  display: block;
}

.mobileMenu__inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Hero */
.hero {
  padding: 44px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(43, 42, 47, .10);
  box-shadow: 0 10px 22px rgba(15, 12, 20, .06);
  font-weight: 850;
  font-size: 12px;
  color: rgba(43, 42, 47, .72);
  width: fit-content;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214, 176, 106, .18);
}

h1 {
  margin: 14px 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: .2px;
}

.sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 55ch;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.trust {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(43, 42, 47, .10);
  color: rgba(43, 42, 47, .72);
  font-weight: 800;
  font-size: 12px;
}

/* Graphic mock */
.mock {
  border-radius: var(--r);
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(43, 42, 47, .10);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  min-height: 420px;
}

.mock:before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(214, 176, 106, .48), transparent 60%);
  transform: rotate(12deg);
  pointer-events: none;
}

.mock:after {
  content: "";
  position: absolute;
  inset: auto -35% -45% auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 40% 40%, rgba(243, 198, 207, .62), transparent 60%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.mock-inner {
  position: relative;
  padding: 16px;
  height: 100%;
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(43, 42, 47, .08);
}

.dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dots i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
  background: rgba(43, 42, 47, .14);
}

.dots i:nth-child(2) {
  background: rgba(214, 176, 106, .50);
}

.dots i:nth-child(3) {
  background: rgba(243, 198, 207, .60);
}

.mock-title {
  font-weight: 900;
  font-size: 12px;
  color: rgba(43, 42, 47, .72);
  letter-spacing: .2px;
}

.mock-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card {
  border-radius: 18px;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(43, 42, 47, .08);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(15, 12, 20, .06);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 12, 20, .08);
}

.card .mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  background: linear-gradient(135deg, rgba(231, 221, 255, .80), rgba(223, 244, 238, .80));
  border: 1px solid rgba(43, 42, 47, .08);
  color: rgba(43, 42, 47, .74);
  white-space: nowrap;
}

.stat {
  font-weight: 950;
  font-size: 22px;
  letter-spacing: -.2px;
}

.hint {
  color: rgba(43, 42, 47, .68);
  font-weight: 750;
  font-size: 12px;
}

.route {
  grid-column: 1 / -1;
  padding: 14px;
}

.route svg {
  width: 100%;
  height: 120px;
  display: block;
}

.route .row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
  margin-top: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 12px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(43, 42, 47, .10);
  color: rgba(43, 42, 47, .72);
}

/* Sections */
section {
  padding: 60px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.tile {
  border-radius: var(--r);
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(43, 42, 47, .10);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 140px;
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(243, 198, 207, .82), rgba(231, 221, 255, .78));
  border: 1px solid rgba(43, 42, 47, .08);
  box-shadow: 0 14px 26px rgba(214, 176, 106, .12);
  font-size: 18px;
}

.tile h3 {
  margin: 12px 0 6px;
  font-size: 16px;
  font-weight: 950;
}

.tile p {
  margin: 0;
  color: rgba(43, 42, 47, .70);
  font-weight: 650;
  font-size: 13px;
  max-width: 42ch;
}

.step {
  border-radius: var(--r);
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(43, 42, 47, .10);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.step .n {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(214, 176, 106, .92), rgba(243, 198, 207, .78));
  border: 1px solid rgba(43, 42, 47, .08);
  color: #2b1f14;
  box-shadow: 0 16px 30px rgba(214, 176, 106, .20);
}

.step h3 {
  margin: 12px 0 6px;
  font-size: 16px;
  font-weight: 950;
}

.step p {
  margin: 0;
  color: rgba(43, 42, 47, .70);
  font-weight: 650;
  font-size: 13px;
}

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plans-3 {
  grid-template-columns: repeat(3, 1fr);
}

.plan {
  border-radius: var(--r);
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(43, 42, 47, .10);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 260px;
}

.plan:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.plan.featured {
  border-color: rgba(214, 176, 106, .40);
  box-shadow: 0 20px 50px rgba(214, 176, 106, .18);
  background:
    radial-gradient(520px 280px at 20% 0%, rgba(214, 176, 106, .22), transparent 60%),
    rgba(255, 255, 255, .66);
}

.plan .tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(214, 176, 106, .18);
  border: 1px solid rgba(214, 176, 106, .35);
  font-weight: 900;
  font-size: 11px;
  color: rgba(43, 42, 47, .78);
}

.plan h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
}

.price {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -.3px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price__now {
  font-size: 30px;
}

.price__per {
  font-size: 12px;
  color: rgba(43, 42, 47, .68);
  font-weight: 800;
}

.price__was {
  margin-top: 6px;
  color: rgba(43, 42, 47, .62);
  font-weight: 800;
  font-size: 12px;
}

.price__was s {
  color: rgba(43, 42, 47, .55);
}

.price__was--off{
  color: rgba(43,42,47,.65);
  font-weight: 800;
  font-size: 12px;
  margin-top: 8px;
}

.bullets {
  margin: 12px 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(43, 42, 47, .72);
  font-weight: 750;
  font-size: 13px;
}

.tick {
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(223, 244, 238, .95), rgba(231, 221, 255, .85));
  border: 1px solid rgba(43, 42, 47, .10);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
  font-size: 12px;
}

.plan .btn {
  width: 100%;
  justify-content: center;
}

.plans-foot {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Promo 24h */
.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(214, 176, 106, .28);
  box-shadow: 0 12px 28px rgba(214, 176, 106, .12);
  min-width: 320px;
}

.promo__title {
  font-weight: 950;
  font-size: 13px;
}

.promo__sub {
  color: rgba(43, 42, 47, .68);
  font-weight: 750;
  font-size: 12px;
}

.promo__timer {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tbox {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(43, 42, 47, .10);
}

.tbox b {
  font-size: 20px;
  letter-spacing: .4px;
}

.tbox small {
  color: rgba(43, 42, 47, .65);
  font-weight: 850;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

details {
  border-radius: var(--r);
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(43, 42, 47, .10);
  box-shadow: var(--shadow-soft);
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-weight: 950;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

summary::-webkit-details-marker {
  display: none;
}

.chev {
  transition: transform .18s ease;
}

details[open] .chev {
  transform: rotate(180deg);
}

details p {
  margin: 10px 0 0;
  color: rgba(43, 42, 47, .70);
  font-weight: 650;
  font-size: 13px;
}

.faq-cta {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Footer */
footer {
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .40);
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.fine {
  color: rgba(43, 42, 47, .70);
  font-weight: 650;
  font-size: 13px;
  max-width: 58ch;
}

.foot a {
  text-decoration: underline;
  text-decoration-color: rgba(214, 176, 106, .55);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-title {
  font-weight: 950;
}

.foot-note {
  margin-top: 10px;
}

.foot-links-title {
  font-weight: 900;
  margin-bottom: 8px;
}

.foot-links {
  display: grid;
  gap: 6px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(1px);
}

.reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
  transition: opacity .60s ease, transform .60s ease, filter .60s ease;
}

.reveal[data-anim="fade"] {
  transform: none;
}

.reveal[data-anim="fade"].in {
  transition: opacity .65s ease;
}

.reveal[data-anim="zoom"] {
  transform: scale(.98);
}

.reveal[data-anim="zoom"].in {
  transform: scale(1);
  transition: opacity .60s ease, transform .60s ease;
}

.reveal[data-anim="left"] {
  transform: translateX(-14px);
}

.reveal[data-anim="right"] {
  transform: translateX(14px);
}

.reveal.in.delay-1 {
  transition-delay: .06s;
}

.reveal.in.delay-2 {
  transition-delay: .12s;
}

.reveal.in.delay-3 {
  transition-delay: .18s;
}

.reveal.in.delay-4 {
  transition-delay: .24s;
}

/* Floating accents */
.floaty {
  position: absolute;
  inset: auto auto 12px 12px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(243, 198, 207, .75), rgba(243, 198, 207, .0) 62%);
  filter: blur(.2px);
  animation: drift 7.2s ease-in-out infinite;
  pointer-events: none;
}

.floaty.f2 {
  inset: 18px 18px auto auto;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 35% 35%, rgba(223, 244, 238, .85), rgba(223, 244, 238, .0) 60%);
  animation-duration: 8.8s;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(8px, -10px);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .mock {
    min-height: 380px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .how {
    grid-template-columns: 1fr;
  }

  .plans {
    grid-template-columns: 1fr;
  }

  .faq {
    grid-template-columns: 1fr;
  }

  .links {
    display: none;
  }

  .hamb {
    display: inline-flex;
  }

  .promo {
    width: 100%;
    min-width: unset;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .floaty {
    animation: none;
  }

  .btn,
  .tile,
  .card,
  .plan {
    transition: none;
  }
}

/* Media blocks (Imagen + contenido) */
.grid-media {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: center;
}

.grid-media--reverse {
  grid-template-columns: 1.05fr .95fr;
}

.media-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.media-frame {
  border-radius: var(--r);
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(43, 42, 47, .10);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.media-frame:before {
  content: "";
  position: absolute;
  inset: -35% -30% auto auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 30% 30%, rgba(214, 176, 106, .35), transparent 60%);
  transform: rotate(10deg);
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 340px;
}

.media-caption {
  color: rgba(43, 42, 47, .68);
  font-weight: 750;
  font-size: 12px;
  padding-left: 2px;
}

/* Cuando grid-3 vive dentro de grid-media, lo hacemos más “compacto” */
.grid-3--inside {
  gap: 12px;
}

/* Responsive */
@media (max-width: 980px) {

  .grid-media,
  .grid-media--reverse {
    grid-template-columns: 1fr;
  }

  .media-frame img {
    min-height: 260px;
  }
}

/* Sección necesidad en una fila horizontal */
.necesidad-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.necesidad-row::-webkit-scrollbar {
  height: 8px;
}

.necesidad-row::-webkit-scrollbar-thumb {
  background: rgba(214, 176, 106, .4);
  border-radius: 10px;
}

.necesidad-row .tile {
  min-width: 260px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* Tarjeta final con énfasis emocional */
.tile-warning {
  border-color: rgba(214, 176, 106, .35);
  background:
    radial-gradient(520px 260px at 0% 0%, rgba(214, 176, 106, .16), transparent 55%),
    rgba(255, 255, 255, .66);
  box-shadow: 0 18px 46px rgba(214, 176, 106, .14);
}

/* Footer WhatsApp */
.foot-contact {
  margin-top: 10px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .2);
}

.wa-icon {
  font-size: 16px;
}

/* PLANES */
/* Switch Moneda (COP / USD) */
.currency-switch{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.cur-btn{
  appearance:none;
  border: 1px solid rgba(43,42,47,.14);
  background: rgba(255,255,255,.62);
  padding: 10px 12px;
  border-radius: 999px;
  cursor:pointer;

  display:inline-flex;
  align-items:center;
  gap:10px;

  box-shadow: 0 12px 28px rgba(15,12,20,.06);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
}

.cur-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(15,12,20,.08);
}

.cur-btn:active{
  transform: translateY(0);
}

.cur-btn .flag{
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(243,198,207,.55), rgba(231,221,255,.55));
  border: 1px solid rgba(43,42,47,.10);
  font-size: 16px;
}

.cur-btn .cur-text{
  font-weight: 900;
  font-size: 13px;
  color: rgba(43,42,47,.82);
  white-space:nowrap;
}

.cur-btn .cur-code{
  font-weight: 950;
  font-size: 11px;
  color: rgba(43,42,47,.70);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(43,42,47,.06);
  border: 1px solid rgba(43,42,47,.08);
}

/* Estado activo */
.cur-btn.is-active{
  border-color: rgba(214,176,106,.40);
  background: linear-gradient(135deg, rgba(214,176,106,.30), rgba(255,255,255,.70));
  box-shadow: 0 18px 42px rgba(214,176,106,.18);
}

.cur-btn.is-active .cur-code{
  background: rgba(214,176,106,.18);
  border-color: rgba(214,176,106,.28);
  color: rgba(43,42,47,.82);
}

/* clase para banderas */
.flag{
  width:28px;
  height:28px;
  border-radius:8px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
}

.flag img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Responsive: en móvil se pone debajo del título */
@media (max-width: 980px){
  .currency-switch{
    width:100%;
    justify-content:flex-start;
    margin-top: 10px;
  }
}