:root {
  /* ── Paleta miel (tonal y elegante) ── */
  --honey: #FCF7EC;
  /* fondo base, cera de abeja pálida */
  --comb: #F6ECD6;
  /* secciones alternas, miel suave */
  --amber: #C0892B;
  /* acento dorado: cuchara, hexágonos, detalles */
  --amber-dp: #98680F;
  /* ámbar profundo: links y plan destacado */
  --bronze: #3A2A16;
  /* texto principal y títulos, miel oscura */
  --ink-soft: #7C6A4F;
  /* texto secundario */
  --line: #E7D8BC;
  /* líneas y bordes */
  --dark: #2A1F12;
  /* secciones oscuras (cierre) */
  --white: #FFFFFF;

  --max: 1120px;
  --r: 16px;
  --shadow: 0 18px 50px -28px rgba(58, 42, 22, .5);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  color: var(--bronze);
  background: var(--honey);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

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

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  position: relative
}

/* ── Tipografía ── */
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.6rem)
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem)
}

h3 {
  font-size: 1.3rem
}

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-dp);
  display: inline-flex;
  align-items: center;
  gap: .6rem
}

.eyebrow .hex {
  width: 13px;
  height: 13px;
  flex: none
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 54ch
}

/* ── Botones ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .98rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease
}

.btn-wa {
  background: var(--bronze);
  color: var(--honey)
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.btn-ghost {
  background: transparent;
  color: var(--bronze);
  border-color: var(--bronze)
}

.btn-ghost:hover {
  background: var(--bronze);
  color: var(--honey)
}

.wa-ico {
  width: 18px;
  height: 18px;
  fill: currentColor
}

/* ── Nav ── */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 247, 236, .84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line)
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px
}

.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--bronze)
}

.brand .dip {
  width: 20px;
  height: 34px;
  flex: none
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem
}

.nav-links a.lnk {
  font-size: .95rem;
  color: var(--ink-soft);
  font-weight: 500
}

.nav-links a.lnk:hover {
  color: var(--bronze)
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--bronze)
}

/* ── Hero ── */
.hero {
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
  text-align: center;
  position: relative;
  overflow: hidden
}

.hero .eyebrow {
  justify-content: center
}

.hero .dip-big {
  width: 34px;
  height: 58px;
  margin: 0 auto 1rem;
  display: block
}

.hero h1 {
  margin: .6rem auto .5rem;
  max-width: 16ch
}

.hero h1 em {
  font-style: italic;
  color: var(--amber-dp)
}

.hero .lead {
  margin: 0 auto 2rem;
  text-align: center
}

.hero-cta {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap
}

.hero-note {
  margin-top: 1.4rem;
  font-size: .86rem;
  color: var(--ink-soft)
}

/* hexágonos ambientales del hero */
.hex-deco {
  position: absolute;
  stroke: var(--amber);
  fill: none;
  stroke-width: 1.4;
  opacity: .22;
  pointer-events: none
}

.hx1 {
  width: 120px;
  height: 138px;
  top: -20px;
  left: -30px;
  transform: rotate(8deg)
}

.hx2 {
  width: 80px;
  height: 92px;
  top: 40px;
  right: -10px
}

.hx3 {
  width: 54px;
  height: 62px;
  bottom: 10px;
  left: 8%;
  opacity: .16
}

/* ── Secciones ── */
section {
  padding: clamp(3.5rem, 8vw, 6rem) 0
}

.sec-head {
  margin-bottom: 2.6rem;
  max-width: 60ch
}

.sec-head h2 {
  margin: .7rem 0 .6rem
}

.group-label {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 2.6rem 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .8rem
}

.group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line)
}

/* ── Galería de demos ── */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.preview {
  aspect-ratio: 2/1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem
}

.preview .mono {
  font-family: var(--sans);
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .85
}

.preview .names {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  margin: .5rem 0;
  line-height: 1.15
}

.preview .date {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .18em;
  opacity: .85
}

.preview .deco {
  width: 30px;
  height: 1px;
  background: currentColor;
  margin: .7rem auto;
  opacity: .6
}

/* temas de color de cada invitación de muestra */
.t-silver {
  background: #F3F4F6;
  color: #21262C;
}

.t-golden {
  background: #F9F4EA;
  color: #2E2518;
}

.t-beige {
  background: #F1ECE4;
  color: #3B3836;
}

.t-blue {
  background: #E9F1F8;
  color: #16283B;
}

.t-olive {
  background: #F2F2E8;
  color: #343725;
}

.t-green {
  background: #EAF8F1;
  color: #112D20;
}

.t-rust {
  background: #B57A68;
  color: #F9F1E0;
}

.t-purple {
  background: #F1EAF8;
  color: #2A163B;
}

.card-foot {
  padding: 1.05rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem
}

.card-foot .name {
  font-family: var(--serif);
  font-size: 1.08rem
}

.card-foot .style {
  font-size: .8rem;
  color: var(--ink-soft)
}

.see {
  font-size: .9rem;
  font-weight: 600;
  color: var(--amber-dp);
  white-space: nowrap
}

.see:hover {
  text-decoration: underline
}

/* ── Cómo funciona (panal) ── */
.how {
  background: var(--comb)
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 2.2rem
}

.cell {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: .9rem
}

.cell svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.cell span {
  position: relative;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--amber-dp)
}

.step h3 {
  font-size: 1.12rem;
  margin: 0 0 .35rem
}

.step p {
  font-size: .93rem;
  color: var(--ink-soft)
}

/* ── Planes ── */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
  align-items: start
}

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.plan.featured {
  border-color: var(--amber-dp);
  box-shadow: var(--shadow);
  position: relative
}

.plan.featured .tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-dp);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  white-space: nowrap
}

.plan .pname {
  font-family: var(--serif);
  font-size: 1.5rem
}

.price {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1
}

.price small {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 500
}

.feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .93rem
}

.feats li {
  display: flex;
  gap: .6rem;
  align-items: flex-start
}

.feats li::before {
  content: "⬡";
  color: var(--amber);
  font-size: .9rem;
  line-height: 1.4
}

.feats li.off {
  color: #B6A77F
}

.feats li.off::before {
  content: "⬡";
  color: #D8C9A6
}

.plan .btn {
  justify-content: center
}

/* ── Testimonios ── */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.2rem
}

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem
}

.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--bronze);
  margin-bottom: 1rem
}

.quote .who {
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 600
}

/* ── FAQ ── */
.faq {
  background: var(--comb)
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 3rem;
  margin-top: 2rem
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem
}

.faq-item p {
  font-size: .95rem;
  color: var(--ink-soft)
}

/* ── Cierre ── */
.closer {
  text-align: center;
  background: var(--dark);
  color: var(--honey);
  position: relative;
  overflow: hidden
}

.closer .eyebrow {
  color: var(--amber);
  justify-content: center
}

.closer .dip-big {
  width: 34px;
  height: 58px;
  margin: 0 auto 1rem;
  display: block
}

.closer h2 {
  margin: .6rem 0 1.4rem;
  color: var(--honey)
}

.closer .btn-wa {
  background: var(--honey);
  color: var(--bronze)
}

.closer .hex-deco {
  stroke: var(--amber);
  opacity: .18
}

.cx1 {
  width: 140px;
  height: 160px;
  top: -30px;
  right: -20px
}

.cx2 {
  width: 70px;
  height: 80px;
  bottom: 20px;
  left: 6%;
  opacity: .12
}

/* ── Footer ── */
footer.ft {
  padding: 2.6rem 0;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--ink-soft)
}

.ft-in {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center
}

.ft-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap
}

.ft-links a:hover {
  color: var(--bronze)
}

/* ── FAB WhatsApp ── */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .4);
  transition: transform .18s ease
}

.fab:hover {
  transform: scale(1.07)
}

.fab svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease
}

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

/* ── Responsivo ── */
@media(max-width:860px) {

  .grid,
  .plans,
  .quotes {
    grid-template-columns: 1fr 1fr
  }

  .steps {
    grid-template-columns: 1fr 1fr
  }

  .faq-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:620px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--honey);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.3rem 22px;
    border-bottom: 1px solid var(--line);
    display: none
  }

  .nav-links.open {
    display: flex
  }

  .nav-toggle {
    display: block
  }

  .grid,
  .plans,
  .quotes,
  .steps {
    grid-template-columns: 1fr
  }

  .plan.featured {
    order: -1
  }

  .hx1,
  .hx2 {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto !important
  }

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