:root {
    /* ─── PALETA ESMERALDA ─── */
    --fondo:        hsl(160, 35%, 8%);   /* #0d1c17 — verde oscuro profundo */
    --secciones:    hsl(160, 28%, 18%);  /* #213d33 — verde medio */
    --acento:       hsl(44, 85%, 56%);   /* #eebb2f — dorado/amarillo */
    --acento-light: hsl(44, 80%, 65%);   /* #f0cc5a — dorado claro */
    --texto:        #f0e8d5;             /* crema cálido */
    --texto-medio:  rgba(240,232,213,0.65);
    --texto-suave:  rgba(240,232,213,0.4);

    /* Aliases para compatibilidad */
    --borgona:      var(--secciones);
    --borgona-dark: var(--fondo);
    --borgona-light: hsl(160, 22%, 28%);
    --crema:        var(--texto);
    --crema-dark:   #e0d8c5;
    --dorado:       var(--acento);
    --dorado-light: var(--acento-light);
    --texto-oscuro: hsl(160, 30%, 6%);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--fondo);
    color: var(--texto);
    overflow-x: hidden;
  }

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
  }

  /* ─── TYPOGRAPHY ─── */
  .brand-script {
    font-family: 'Great Vibes', cursive;
    color: var(--acento);
    letter-spacing: 0.02em;
  }

  .serif { font-family: 'Playfair Display', serif; }

  /* ─── FADE IN ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, hsla(160, 35%, 8%, 0.95) 0%, transparent 100%);
  }

  nav .logo { display: inline-flex; align-items: center; text-decoration: none; }
  nav .logo svg { height: 36px; width: auto; }

  @media (max-width: 400px) {
    nav .logo svg { height: 28px; }
    nav { padding: 1rem; }
  }

  nav a.cta-nav {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fondo);
    background: var(--acento);
    padding: 0.6rem 1.3rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  nav a.cta-nav:hover { background: var(--acento-light); transform: scale(1.03); }

  /* ─── HERO ─── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 40%, hsla(160, 28%, 18%, 0.5) 0%, var(--fondo) 70%);
  }

  #hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--fondo));
    pointer-events: none;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--acento);
    margin-bottom: 1.2rem;
    opacity: 0.9;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--texto);
    max-width: 720px;
    margin-bottom: 0.4rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--acento);
  }

  .hero-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    color: var(--acento-light);
    display: block;
    margin-top: 0.2rem;
    margin-bottom: 2rem;
  }

  .hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    font-weight: 300;
    color: var(--texto-medio);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 2.8rem;
  }

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

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--acento);
    color: var(--fondo);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px hsla(44, 85%, 56%, 0.25);
  }
  .btn-primary:hover { background: var(--acento-light); transform: translateY(-2px); box-shadow: 0 8px 32px hsla(44, 85%, 56%, 0.35); }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(240,232,213,0.3);
    color: var(--texto);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 1rem 1.8rem;
    border-radius: 100px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(240,232,213,0.7); background: rgba(240,232,213,0.05); }

  /* PETAL DECORATIONS — ahora partículas doradas */
  .petal {
    position: absolute;
    width: 6px;
    height: 10px;
    background: hsla(44, 85%, 56%, 0.15);
    border-radius: 50% 50% 50% 0;
    animation: float linear infinite;
  }

  @keyframes float {
    0%   { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
  }

  /* ─── SECTION BASE ─── */
  section { position: relative; z-index: 1; padding: 6rem 2rem; }

  .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--acento);
    margin-bottom: 0.8rem;
    display: block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--texto);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .section-title em { font-style: italic; color: var(--acento); }

  .section-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--texto-medio);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto;
  }

  .container { max-width: 1100px; margin: 0 auto; }
  .text-center { text-align: center; }

  /* DIVIDER */
  .divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--acento), transparent);
    margin: 2rem auto;
  }

  /* ─── HOW IT WORKS ─── */
  #how {
    background: linear-gradient(to bottom, var(--fondo), var(--secciones));
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
  }

  .step {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid hsla(44, 85%, 56%, 0.15);
    border-radius: 16px;
    background: rgba(240,232,213,0.03);
    transition: border-color 0.3s, background 0.3s;
  }
  .step:hover { border-color: hsla(44, 85%, 56%, 0.4); background: rgba(240,232,213,0.06); }

  .step-num {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--acento);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--texto);
    margin-bottom: 0.6rem;
  }

  .step p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--texto-medio);
    line-height: 1.7;
  }

  /* ─── DEMOS ─── */
  #demos { background: var(--secciones); }

  .demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .demo-card {
    background: rgba(240,232,213,0.05);
    border: 1px solid hsla(44, 85%, 56%, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  }
  .demo-card:hover {
    transform: translateY(-4px);
    border-color: hsla(44, 85%, 56%, 0.5);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }

  .demo-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--acento);
    border: 1px solid hsla(44, 85%, 56%, 0.4);
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 0.8rem;
  }

  .demo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--texto);
    margin-bottom: 0.3rem;
  }

  .demo-desc {
    font-size: 0.8rem;
    color: var(--texto-suave);
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }

  /* .audio-player nativo reemplazado por .demo-player custom */

  audio::-webkit-media-controls-panel { background: hsla(160, 28%, 18%, 0.8); }

  /* Placeholder audio button */
  .audio-placeholder {
    width: 100%;
    padding: 0.65rem 1rem;
    background: hsla(44, 85%, 56%, 0.1);
    border: 1px dashed hsla(44, 85%, 56%, 0.3);
    border-radius: 8px;
    color: var(--texto-suave);
    font-size: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    cursor: default;
  }

  /* ── Demo Player (estilo premium) ── */
  .demo-player {
    width: 100%;
    background: hsla(150, 30%, 12%, 0.45);
    backdrop-filter: blur(20px);
    border: 1px solid hsla(150, 30%, 20%, 0.35);
    border-radius: 100px;
    padding: 0.55rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .demo-player .dp-play {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--acento);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .demo-player .dp-play:hover { background: hsla(44, 85%, 66%, 1); transform: scale(1.08); }
  .demo-player .dp-play svg { fill: #1a2e1a; width: 13px; height: 13px; margin-left: 2px; }

  .demo-player .dp-info { flex: 1; min-width: 0; }

  .demo-player .dp-song {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.75rem;
    color: var(--texto);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 4px;
  }

  .demo-player .dp-progress {
    width: 100%; height: 2px;
    background: rgba(240,232,213,0.1);
    border-radius: 100px;
    cursor: pointer;
    position: relative;
  }
  .demo-player .dp-progress-fill {
    height: 100%; background: var(--acento);
    border-radius: 100px; width: 0%;
    pointer-events: none;
    transition: width 0.1s linear;
  }

  .demo-player .dp-time-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.55rem;
    color: rgba(240,232,213,0.3);
    margin-top: 3px;
  }

  .demo-player .dp-vol-wrap {
    display: flex; align-items: center; gap: 3px;
  }
  .demo-player .dp-vol-wrap svg {
    flex-shrink: 0; cursor: pointer;
  }
  .demo-player .dp-vol-wrap input[type="range"] {
    width: 42px; height: 2px;
    accent-color: var(--acento);
    cursor: pointer;
    vertical-align: middle;
  }



  @media (max-width: 768px) {
    .demo-player { padding: 0.45rem 0.75rem; gap: 0.5rem; }
    .demo-player .dp-play { width: 30px; height: 30px; }
    .demo-player .dp-play svg { width: 11px; height: 11px; }
    .demo-player .dp-song { font-size: 0.68rem; }
    .demo-player .dp-vol-wrap input[type="range"] { width: 32px; }
  }

  /* ─── PRECIOS ─── */
  #precios {
    background: linear-gradient(to bottom, var(--secciones), var(--fondo));
  }

  .precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
    align-items: start;
  }

  .precio-card {
    border: 1px solid rgba(240,232,213,0.1);
    border-radius: 20px;
    padding: 2.2rem 1.75rem;
    background: rgba(240,232,213,0.03);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .precio-card:hover { transform: translateY(-4px); }

  .precio-card.featured {
    border-color: var(--acento);
    background: hsla(44, 85%, 56%, 0.07);
    box-shadow: 0 0 60px hsla(44, 85%, 56%, 0.1);
  }

  .badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--acento);
    color: var(--fondo);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
  }

  .precio-nombre {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--acento);
    margin-bottom: 0.8rem;
  }

  .precio-monto {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--texto);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .precio-monto sup { font-size: 1.2rem; vertical-align: super; }

  .precio-entrega {
    font-size: 0.78rem;
    color: var(--texto-suave);
    margin-bottom: 1.5rem;
  }

  .precio-divider {
    height: 1px;
    background: rgba(240,232,213,0.1);
    margin-bottom: 1.5rem;
  }

  .precio-features {
    list-style: none;
    margin-bottom: 2rem;
  }

  .precio-features li {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(240,232,213,0.75);
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.4;
  }

  .precio-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--acento);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.45rem;
  }

  .btn-precio {
    display: block;
    text-align: center;
    padding: 0.85rem;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
  }

  .btn-precio-ghost {
    border: 1px solid rgba(240,232,213,0.25);
    color: var(--texto);
  }
  .btn-precio-ghost:hover { border-color: var(--acento); color: var(--acento); }

  .btn-precio-filled {
    background: var(--acento);
    color: var(--fondo);
    box-shadow: 0 4px 20px hsla(44, 85%, 56%, 0.3);
  }
  .btn-precio-filled:hover { background: var(--acento-light); transform: scale(1.02); }

  /* ─── TESTIMONIO ─── */
  #testimonio {
    background: var(--fondo);
    text-align: center;
  }

  .testimonial-block {
    max-width: 580px;
    margin: 0 auto;
  }

  .quote-mark {
    font-family: 'Great Vibes', cursive;
    font-size: 7rem;
    color: var(--acento);
    opacity: 0.2;
    line-height: 0.5;
    margin-bottom: 1rem;
    display: block;
  }

  .quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-style: italic;
    color: var(--texto);
    line-height: 1.6;
    margin-bottom: 1.8rem;
  }

  .quote-author {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--acento);
  }

  .quote-context {
    font-size: 0.75rem;
    color: var(--texto-suave);
    margin-top: 0.3rem;
  }

  /* ─── CTA FINAL ─── */
  #cta-final {
    background: linear-gradient(135deg, var(--secciones) 0%, var(--fondo) 100%);
    text-align: center;
    padding: 7rem 2rem;
  }

  #cta-final .hero-title { margin: 0 auto 1.5rem; }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1.1rem 2.4rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 30px rgba(37,211,102,0.3);
    margin-top: 2.5rem;
  }
  .whatsapp-btn:hover { background: #20ba5a; transform: translateY(-2px); box-shadow: 0 8px 40px rgba(37,211,102,0.45); }

  .whatsapp-icon {
    width: 22px;
    height: 22px;
    fill: white;
    flex-shrink: 0;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--fondo);
    text-align: center;
    padding: 2.5rem 2rem;
    border-top: 1px solid hsla(44, 85%, 56%, 0.1);
  }

  footer .logo { font-size: 1.6rem; display: block; margin-bottom: 0.5rem; }

  footer p {
    font-size: 0.75rem;
    color: var(--texto-suave);
    line-height: 1.8;
  }

  /* ─── FLOATING WHATSAPP ─── */
  .float-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }
  .float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
  .float-wa svg { width: 28px; height: 28px; fill: white; }

  #hero-script-text {
    transition: opacity 0.7s ease;
  }
  #hero-script-text.fade-out {
    opacity: 0;
  }
  .hero-microcopy {
    font-size: 0.72rem;
    color: var(--texto-suave);
    margin-top: 0.9rem;
    letter-spacing: 0.05em;
  }

  /* ─── PAIN POINTS ─── */
  .dolor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    text-align: left;
  }

  .dolor-card {
    background: rgba(240,232,213,0.04);
    border: 1px solid rgba(240,232,213,0.08);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    transition: border-color 0.3s;
  }
  .dolor-card:hover { border-color: hsla(44, 85%, 56%, 0.25); }

  .dolor-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    line-height: 1;
  }

  .dolor-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(240,232,213,0.7);
    line-height: 1.75;
  }

  .dolor-cierre {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(240,232,213,0.8);
    line-height: 1.6;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .dolor-cierre em { color: var(--acento); font-style: italic; }

  /* ─── DIFERENCIADOR ─── */
  .diferenciador-wrap { max-width: 820px; margin: 0 auto; text-align: center; }

  .diferenciador-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    text-align: left;
  }

  .dif-col { display: flex; flex-direction: column; gap: 0.5rem; }

  .dif-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .dif-list--contra .dif-label { color: var(--texto-suave); }
  .dif-list--pro .dif-label { color: var(--acento); }

  .dif-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .dif-list li {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
  }

  .dif-list--contra li { color: var(--texto-suave); }
  .dif-list--contra li::before {
    content: '✕';
    position: absolute;
    left: 0;
    font-size: 0.65rem;
    color: rgba(240,232,213,0.25);
    top: 0.1rem;
  }

  .dif-list--pro li { color: rgba(240,232,213,0.85); }
  .dif-list--pro li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    color: var(--acento);
    top: 0.05rem;
  }

  .dif-divider-vertical {
    width: 1px;
    background: rgba(240,232,213,0.1);
    align-self: stretch;
  }

  .dif-cierre {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--texto-medio);
    margin-top: 2.5rem;
    line-height: 1.7;
  }

  @media (max-width: 600px) {
    .diferenciador-grid {
      grid-template-columns: 1fr;
    }
    .dif-divider-vertical { display: none; }
  }

  .precio-extras-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--acento);
    text-align: center;
    margin: 1rem 0 0.75rem;
    position: relative;
  }
  .precio-extras-label::before,
  .precio-extras-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28%;
    height: 1px;
    background: hsla(44, 85%, 56%, 0.3);
  }
  .precio-extras-label::before { left: 0; }
  .precio-extras-label::after { right: 0; }

  .feature-extra {
    color: var(--acento) !important;
  }
  .feature-extra::before {
    background: var(--acento) !important;
  }

  /* ─── PRECIO MICROCOPY ─── */
  .precio-microcopy {
    font-size: 0.7rem;
    color: var(--texto-suave);
    text-align: center;
    margin-top: 0.6rem;
    letter-spacing: 0.04em;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 600px) {
    nav { padding: 1rem 1.25rem; }
    section { padding: 4rem 1.25rem; }
    .steps-grid, .demos-grid, .precios-grid { gap: 1rem; }
    .precios-grid { grid-template-columns: 1fr; }
  }

  /* ── VER EJEMPLO DE ENTREGA ── */
  .precio-ver-ejemplo {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(238,187,47,0.55);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
  }
  .precio-ver-ejemplo:hover {
    color: var(--acento);
    opacity: 1;
  }
