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

:root {
    --terra:       #9b5a4a;
    --terra-dk:    #7a3f31;
    --terra-lt:    #c4939e;
    --espresso:    #4a2828;
    --espresso-lt: #7a5252;
    --rose-bg:     #ede4e1;
    --rose-bg2:    #f8f4f2;
    --white:       #ffffff;
    --gray-50:     #f9fafb;
    --gray-100:    #f3f4f6;
    --gray-200:    #e5e7eb;
    --gray-500:    #6b7280;
    --gray-700:    #374151;
    --gray-900:    #111827;
    --green-wa:    #25D366;
    --r:           16px;
    --shadow-md:   0 4px 20px rgba(0,0,0,.08);
    --shadow-lg:   0 10px 40px rgba(0,0,0,.12);
    --shadow-p:    0 8px 32px rgba(155,90,74,.25);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(155,90,74,.12);
}
.nav-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: 'Poppins', sans-serif; font-weight: 700;
    font-size: 1.2rem; color: var(--terra); text-decoration: none;
}
.nav-cta {
    background: var(--green-wa); color: white;
    padding: 9px 22px; border-radius: 50px; text-decoration: none;
    font-weight: 600; font-size: .9rem;
    transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* ── Hero ── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden; padding-top: 64px;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(145deg, #f8f0ed 0%, #ede4e1 55%, #e5d8d4 100%);
}
.hero-bg::before {
    content: ''; position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    background: rgba(196,147,158,.18);
    top: -150px; right: -120px;
}
.hero-bg::after {
    content: ''; position: absolute;
    width: 380px; height: 380px; border-radius: 50%;
    background: rgba(155,90,74,.1);
    bottom: -80px; left: -60px;
}

/* floating notes */
.notes-wrap {
    position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;
}
.note {
    position: absolute; color: rgba(155,90,74,.12);
    animation: floatN 9s ease-in-out infinite;
}
.note:nth-child(1){left:4%;  top:18%; font-size:3.2rem; animation-delay:0s;}
.note:nth-child(2){left:14%; top:72%; font-size:2rem;   animation-delay:1.6s;}
.note:nth-child(3){left:79%; top:12%; font-size:2.6rem; animation-delay:.9s;}
.note:nth-child(4){left:88%; top:62%; font-size:3.8rem; animation-delay:2.2s;}
.note:nth-child(5){left:48%; top:82%; font-size:2.2rem; animation-delay:3.1s;}
.note:nth-child(6){left:68%; top:32%; font-size:1.6rem; animation-delay:1.1s;}
.note:nth-child(7){left:30%; top:50%; font-size:2.8rem; animation-delay:2.7s;}
@keyframes floatN {
    0%,100%{ transform:translateY(0) rotate(0deg);   opacity:.12; }
    50%    { transform:translateY(-28px) rotate(8deg); opacity:.22; }
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 800px;
    margin: 0 auto; padding: 80px 0 60px;
}
.pill {
    display: inline-block;
    background: rgba(155,90,74,.1); border: 1px solid rgba(155,90,74,.28);
    color: var(--terra); padding: 6px 20px; border-radius: 50px;
    font-size: .85rem; font-weight: 500; margin-bottom: 28px; letter-spacing:.02em;
}
.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 900; color: var(--espresso);
    line-height: 1.08; margin-bottom: 24px; letter-spacing:-.025em;
}
.grad {
    background: linear-gradient(135deg, #9b5a4a, #c4939e, #d4826a);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
    font-size: 1.15rem; color: var(--espresso-lt);
    max-width: 560px; margin: 0 auto 36px; line-height: 1.75;
}
.hero-btns {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px;
}

/* buttons */
.btn {
    display: inline-block; padding: 14px 30px; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 1rem; transition: all .25s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--terra), var(--terra-dk));
    color: white; box-shadow: var(--shadow-p);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(155,90,74,.4); }
.btn-ghost {
    background: rgba(155,90,74,.08); border: 1.5px solid rgba(155,90,74,.38); color: var(--terra);
}
.btn-ghost:hover { background: rgba(155,90,74,.15); transform: translateY(-2px); }
.btn-white { background: white; color: var(--terra); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.btn-full { width: 100%; text-align: center; }

/* hero stats */
.hero-stats {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px;
    background: rgba(255,255,255,.78); border: 1px solid rgba(155,90,74,.18);
    border-radius: 20px; padding: 20px 32px; backdrop-filter: blur(8px);
    max-width: fit-content; margin: 0 auto;
    box-shadow: 0 4px 24px rgba(155,90,74,.1);
}
.hstat { display: flex; flex-direction: column; align-items: center; padding: 6px 28px; }
.hstat-n {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem; font-weight: 800; color: var(--espresso); line-height: 1;
}
.hstat-l { font-size: .78rem; color: var(--espresso-lt); margin-top: 4px; }
.hstat-div { width: 1px; height: 38px; background: rgba(155,90,74,.22); }

/* ── Sections shared ── */
section { padding: 96px 0; }
.sec-head { text-align: center; margin-bottom: 56px; }
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5e8e5, #edd9d4);
    color: var(--terra); padding: 5px 18px; border-radius: 50px;
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 14px;
}
.badge-light {
    background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
}
.sec-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 800; color: var(--espresso);
    margin-bottom: 12px; letter-spacing:-.02em;
}
.sec-head p { color: var(--gray-500); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }
.text-white { color: white !important; }
.text-muted { color: rgba(255,255,255,.55) !important; }

/* ── Tipos ── */
.tipos { background: var(--rose-bg); }
.tipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 18px;
    margin-bottom: 0;
}
.tipo-card {
    background: var(--rose-bg2); border-radius: var(--r); padding: 26px 18px;
    text-align: center; border: 1.5px solid rgba(155,90,74,.14);
    transition: all .25s; cursor: pointer;
    font-family: inherit; width: 100%;
}
.tipo-card:hover {
    border-color: var(--terra-lt); transform: translateY(-4px); box-shadow: var(--shadow-p);
}
.tipo-card.activo {
    border-color: var(--terra); background: linear-gradient(135deg, #f5e8e5, #edd9d4);
    transform: translateY(-4px); box-shadow: var(--shadow-p);
}
.tipo-card.activo h3 { color: var(--terra); }
.tipo-ico { display: block; font-size: 2.3rem; margin-bottom: 10px; }
.tipo-card h3 {
    font-family: 'Poppins', sans-serif; font-size: .95rem;
    font-weight: 700; color: var(--espresso); margin-bottom: 5px;
}
.tipo-card p { font-size: .82rem; color: var(--gray-500); line-height: 1.5; }
.tipo-card-madres {
    grid-column: 1/-1;
    max-width: 610px;
    margin: 0 auto;
    width: 100%;
    background: linear-gradient(135deg, #fce8f0, #f5d0e3);
    border-color: rgba(200,80,120,.25);
    position: relative;
    overflow: hidden;
}
.tipo-card-madres::before {
    content: '🌟 EXCLUSIVA';
    position: absolute; top: 10px; right: 12px;
    background: var(--terra); color: white;
    font-size: .62rem; font-weight: 700;
    padding: 3px 8px; border-radius: 20px; letter-spacing: .06em;
}
.tipo-card-madres:hover { border-color: rgba(200,80,120,.5); }
.tipo-card-madres.activo { background: linear-gradient(135deg, #f5c6db, #ecadc9); }
.tipo-card-madres .tipo-ico { font-size: 2.8rem; }
.tipo-card-madres h3 { font-size: 1.05rem; }

/* ── Tipo Panel ── */
.tipo-panel {
    max-height: 0; overflow: hidden;
    transition: max-height .45s ease, opacity .35s ease, margin .35s ease;
    opacity: 0; margin-top: 0;
    background: linear-gradient(135deg, #3a1f1f 0%, #5c3535 100%);
    border-radius: var(--r);
}
.tipo-panel.open {
    max-height: 9999px; opacity: 1; margin-top: 28px;
}
.tipo-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 28px 0;
}
#tipoPanelTitle {
    font-family: 'Poppins', sans-serif; font-size: 1.2rem;
    font-weight: 700; color: white;
}
.tipo-panel-close {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.7); padding: 6px 14px; border-radius: 50px;
    cursor: pointer; font-size: .82rem; transition: all .2s;
}
.tipo-panel-close:hover { background: rgba(255,255,255,.2); color: white; }
#tipoDemosGrid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px; padding: 20px 28px;
}
.panel-empty {
    color: rgba(255,255,255,.5); text-align: center; padding: 40px 0;
    grid-column: 1/-1; font-size: 1rem;
}
.tipo-panel .demos-tip {
    margin: 0 28px 24px; border-radius: 10px;
}

/* ── Genero filtros ── */
.genero-filtros {
    display: none; flex-wrap: wrap; gap: 8px; padding: 14px 28px 0;
}
.gen-btn {
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.75); padding: 6px 18px; border-radius: 50px;
    font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.gen-btn:hover { background: rgba(255,255,255,.18); color: white; }
.gen-btn.activo { background: var(--terra); border-color: var(--terra); color: white; }

/* ── FAQ ── */
.faq { background: var(--rose-bg2); }
.faq-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
}
.faq-item {
    background: var(--white); border-radius: var(--r); padding: 24px;
    border: 1.5px solid rgba(155,90,74,.12); transition: border-color .2s;
}
.faq-item:hover { border-color: var(--terra-lt); }
.faq-item h3 {
    font-family: 'Poppins', sans-serif; font-size: 1rem;
    font-weight: 700; color: var(--espresso); margin-bottom: 8px;
}
.faq-item p { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* ── Proceso ── */
.steps { max-width: 680px; margin: 0 auto; }
.step-row { display: flex; gap: 22px; align-items: flex-start; }
.step-line {
    width: 2px; height: 30px;
    background: linear-gradient(to bottom, var(--terra), var(--terra-dk));
    margin-left: 26px; border-radius: 2px; opacity: .3;
}
.step-num {
    width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--terra), var(--terra-dk));
    color: white; font-family: 'Poppins', sans-serif;
    font-size: 1.25rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-p);
}
.step-txt { padding: 10px 0 4px; flex: 1; }
.step-txt h3 {
    font-family: 'Poppins', sans-serif; font-size: 1.05rem;
    font-weight: 700; color: var(--gray-900); margin-bottom: 3px;
}
.step-txt p { color: var(--gray-500); font-size: .92rem; }

/* ── Demos ── */
.demos {
    background: linear-gradient(135deg, #3a1f1f 0%, #5c3535 100%);
}
.demos-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
    margin-bottom: 32px;
}
.demo-card {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--r); padding: 24px;
    display: flex; flex-direction: column; gap: 14px; transition: all .25s;
}
.demo-card:hover { background: rgba(255,255,255,.11); transform: translateY(-3px); }
.demo-header { display: flex; align-items: flex-start; gap: 14px; }
.demo-ico { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.demo-info h3 {
    font-family: 'Poppins', sans-serif; font-weight: 700;
    font-size: .95rem; color: white; margin-bottom: 3px; line-height: 1.4;
}
.demo-info p { font-size: .8rem; color: rgba(255,255,255,.5); }
.demo-audio { width: 100%; accent-color: var(--terra-lt); }
.copy-btn {
    background: rgba(196,147,158,.15); border: 1px solid rgba(196,147,158,.35);
    color: var(--terra-lt); padding: 9px 16px; border-radius: 50px;
    font-size: .82rem; font-weight: 600; cursor: pointer;
    transition: all .2s; width: 100%; text-align: center;
}
.copy-btn:hover { background: rgba(196,147,158,.28); border-color: var(--terra-lt); }
.copy-btn.copied { background: rgba(74,222,128,.15); border-color: #4ade80; color: #4ade80; }
.demos-loading { color: rgba(255,255,255,.45); text-align: center; padding: 48px 0; font-size: 1.1rem; }
.demos-tip {
    text-align: center; color: rgba(255,255,255,.6); font-size: .92rem;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px; padding: 14px 20px; line-height: 1.6;
}
.demos-tip em { font-style: normal; }
.demos-tip strong { color: white; }

/* ── Testimonios ── */
.testimonios { background: var(--rose-bg); }
.testi-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.testi-card {
    background: var(--white); border-radius: var(--r); padding: 28px 24px;
    border: 1.5px solid rgba(155,90,74,.12); box-shadow: var(--shadow-md);
    display: flex; flex-direction: column; gap: 14px;
}
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.testi-card > p { color: var(--gray-700); font-size: .95rem; line-height: 1.7; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--terra), var(--terra-dk));
    color: white; font-weight: 700; font-size: .85rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--gray-900); font-size: .9rem; }
.testi-author span { font-size: .8rem; color: var(--gray-500); }

/* ── Precio ── */
.precio { background: var(--white); }
.price-wrap { max-width: 440px; margin: 0 auto; }
.price-card {
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.14);
    border: 2px solid var(--gray-200); position: relative;
}
.price-tag {
    position: absolute; top: 18px; right: 18px;
    background: linear-gradient(135deg, var(--terra), var(--terra-dk));
    color: white; padding: 4px 14px; border-radius: 50px;
    font-size: .72rem; font-weight: 700; z-index: 1;
}
.price-top {
    background: linear-gradient(135deg, #3a1f1f, #5c3535);
    padding: 44px 36px; text-align: center;
}
.price-name {
    font-size: .95rem; color: rgba(255,255,255,.7); margin-bottom: 18px; font-weight: 500;
}
.price-amt {
    display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-bottom: 8px;
}
.cur { font-size: 1.8rem; font-weight: 700; color: rgba(255,255,255,.65); padding-top: 10px; }
.amt { font-family: 'Poppins', sans-serif; font-size: 5.5rem; font-weight: 900; color: white; line-height: 1; }
.mxn { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.55); align-self: flex-end; padding-bottom: 14px; }
.price-note { font-size: .8rem; color: rgba(255,255,255,.45); }
.price-feats { list-style: none; padding: 32px 36px; display: flex; flex-direction: column; gap: 14px; }
.price-feats li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--gray-700); font-weight: 500; }
.ck { color: var(--terra); font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.price-footer { padding: 0 36px 36px; }

/* ── CTA Final ── */
.cta-final {
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dk) 100%);
    padding: 100px 0;
}
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-ico { font-size: 3rem; display: block; margin-bottom: 16px; }
.cta-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800; color: white; margin-bottom: 14px; letter-spacing:-.02em;
}
.cta-inner p { color: rgba(255,255,255,.72); font-size: 1.1rem; margin-bottom: 32px; }

/* ── Footer ── */
footer { background: var(--espresso); padding: 60px 0 28px; color: rgba(255,255,255,.55); }
.footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 40px; flex-wrap: wrap; margin-bottom: 40px;
}
.footer-logo {
    font-family: 'Poppins', sans-serif; font-size: 1.15rem;
    font-weight: 700; color: white; display: block; margin-bottom: 10px;
}
.footer-brand p { font-size: .88rem; max-width: 300px; line-height: 1.65; margin-bottom: 16px; }
.footer-links { display: flex; gap: 16px; }
.footer-links a {
    color: var(--terra-lt); text-decoration: none; font-size: .88rem; font-weight: 500;
}
.footer-links a:hover { color: white; }
.footer-info { font-size: .88rem; line-height: 1.9; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 22px; text-align: center; font-size: .82rem;
}

/* ── Floating WhatsApp ── */
.wa-float {
    position: fixed; bottom: 26px; right: 26px;
    width: 62px; height: 62px; background: var(--green-wa); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(37,211,102,.4);
    transition: all .3s; z-index: 99; text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 14px 44px rgba(37,211,102,.5); }
.wa-float::before {
    content: ''; position: absolute; inset: -5px; border-radius: 50%;
    background: var(--green-wa); opacity: .25;
    animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
    0%,100%{ transform:scale(1); opacity:.25; }
    50%    { transform:scale(1.35); opacity:0; }
}

/* ── Demo Card — estilo álbum ── */
.demo-card { cursor: pointer; }
.demo-cover {
    position: relative; border-radius: 14px; overflow: hidden;
    aspect-ratio: 1; width: 100%;
    background: linear-gradient(135deg, rgba(155,90,74,.55), rgba(196,147,158,.45));
    display: flex; align-items: center; justify-content: center;
}
.demo-cover-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: none; z-index: 1;
}
.demo-cover-ico { font-size: 3.8rem; z-index: 1; position: relative; }
.demo-play-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.38); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .2s; font-size: 2.2rem; color: white; z-index: 2;
}
.demo-card:hover .demo-play-overlay { opacity: 1; }
.demo-meta h3 {
    font-family: 'Poppins', sans-serif; font-weight: 700;
    font-size: .92rem; color: white; margin-bottom: 3px; line-height: 1.4;
}
.demo-meta p { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ── Reproductor Modal ── */
.player-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(58,31,31,.82); backdrop-filter: blur(10px);
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.player-overlay.open { display: flex; }
.player-modal {
    background: var(--rose-bg2); border-radius: 28px;
    padding: 28px 28px 32px; max-width: 400px; width: 100%;
    position: relative; box-shadow: 0 32px 100px rgba(74,40,40,.5);
    display: flex; flex-direction: column; gap: 18px;
    animation: playerIn .28s ease;
}
@keyframes playerIn {
    from { transform: scale(.92) translateY(20px); opacity: 0; }
    to   { transform: scale(1)   translateY(0);    opacity: 1; }
}
.player-close {
    position: absolute; top: 14px; right: 14px;
    background: rgba(155,90,74,.12); border: 1px solid rgba(155,90,74,.22);
    color: var(--terra); width: 34px; height: 34px; border-radius: 50%;
    cursor: pointer; font-size: .85rem;
    display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.player-close:hover { background: rgba(155,90,74,.25); }
.player-artwork {
    width: 100%; aspect-ratio: 1; border-radius: 20px;
    background: linear-gradient(135deg, var(--terra), var(--terra-lt));
    display: flex; align-items: center; justify-content: center;
    font-size: 7rem; box-shadow: 0 12px 40px rgba(155,90,74,.3);
}
.player-meta { text-align: center; }
.player-title {
    font-family: 'Poppins', sans-serif; font-size: 1.15rem;
    font-weight: 700; color: var(--espresso); margin-bottom: 4px; line-height: 1.35;
}
.player-info { color: var(--espresso-lt); font-size: .88rem; }
.player-audio { width: 100%; accent-color: var(--terra); }
.player-nav {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.player-nav-btn {
    background: rgba(155,90,74,.1); border: 1.5px solid rgba(155,90,74,.22);
    color: var(--terra); padding: 8px 16px; border-radius: 50px;
    font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .2s; flex: 1;
}
.player-nav-btn:hover:not(:disabled) { background: rgba(155,90,74,.2); }
.player-nav-btn:disabled { opacity: .28; cursor: default; }
.player-counter { color: var(--espresso-lt); font-size: .8rem; white-space: nowrap; }
.player-copy {
    background: linear-gradient(135deg, var(--terra), var(--terra-dk));
    color: white; border: none; border-radius: 50px; padding: 12px 20px;
    font-size: .88rem; font-weight: 600; cursor: pointer; transition: all .2s; width: 100%;
}
.player-copy:hover { box-shadow: var(--shadow-p); }

/* ── Responsive ── */
@media (max-width: 768px) {
    section { padding: 72px 0; }
    .hstat-div { display: none; }
    .hero-stats { padding: 16px 20px; }
    .hstat { padding: 6px 16px; }
    .tipos-grid { grid-template-columns: repeat(2, 1fr); }
    .demos-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .footer-top { flex-direction: column; }
    .price-feats { padding: 28px 24px; }
    .price-footer { padding: 0 24px 28px; }
    .price-top { padding: 36px 24px; }
    .amt { font-size: 4.5rem; }
}
@media (max-width: 480px) {
    .tipos-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .tipo-card { padding: 20px 12px; }
    .testi-grid { grid-template-columns: 1fr; }
}


/* ──────────────────────────────────────────
   PROMO DÍA DE LAS MADRES
   ────────────────────────────────────────── */

/* Saludo en navbar (rosita) */
.md-nav-greeting {
    display: none;
    background: linear-gradient(90deg, #ec4899 0%, #db2777 50%, #be185d 100%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: .92rem;
    padding: 7px 18px;
    border-radius: 50px;
    letter-spacing: .3px;
    box-shadow: 0 4px 14px rgba(219,39,119,.45);
    animation: mdGreetPulse 2.5s ease-in-out infinite;
}
body.md-active .md-nav-greeting { display: inline-block; }
@keyframes mdGreetPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(219,39,119,.45); }
    50% { transform: scale(1.04); box-shadow: 0 6px 22px rgba(219,39,119,.7); }
}
@media (max-width: 720px) {
    .md-nav-greeting {
        font-size: .72rem;
        padding: 5px 12px;
        order: 3;
        margin-top: 6px;
    }
}

/* Mensajes laterales con frases rotativas */
.md-side {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 245, 235, .96);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(217, 126, 84, .6);
    padding: 18px 16px;
    border-radius: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: #4a1d10;
    line-height: 1.45;
    width: 175px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(184, 95, 62, .35);
    z-index: 80;
    display: none;
    animation: floatSideR 5s ease-in-out infinite;
}
body.md-active .md-side { display: block; }
.md-side-left { left: 18px; animation-name: floatSideL; }
.md-side-right { right: 18px; animation-delay: 2.5s; }
@keyframes floatSideR {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(4px); }
}
@keyframes floatSideL {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-4px); }
}
.md-side-emoji {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.md-rotate {
    position: relative;
    min-height: 4.8em;
}
.md-r-item {
    position: absolute;
    inset: 0;
    margin: 0 !important;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .6s ease, transform .6s ease;
    pointer-events: none;
}
.md-r-item.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .md-side { display: none !important; }
}

/* Flores ascendentes */
.md-rising-flowers {
    display: none;
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}
body.md-active .md-rising-flowers { display: block; }
.md-rising-flower {
    position: absolute;
    bottom: -40px;
    opacity: 0;
    animation: riseFloat linear forwards;
    --sway: 0px;
    will-change: transform, opacity;
    filter: drop-shadow(0 2px 6px rgba(184,95,62,.25));
}
@keyframes riseFloat {
    0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
    10%  { opacity: .8; }
    90%  { opacity: .8; }
    100% { transform: translateY(-105vh) translateX(var(--sway)) rotate(360deg); opacity: 0; }
}

/* Popup overlay */
.md-overlay {
    position: fixed;
    inset: 0;
    background: rgba(58, 31, 31, .55);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    display: flex;
}
.md-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.md-overlay-card {
    background: linear-gradient(135deg, #fff 0%, #fff5ed 100%);
    border-radius: 26px;
    padding: 38px 30px 30px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,.4), 0 0 0 4px rgba(255,255,255,.3);
    border: 2px solid rgba(217, 126, 84, .3);
    transform: scale(.92);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.md-overlay.active .md-overlay-card { transform: scale(1); }
.md-overlay-close {
    position: absolute;
    top: 12px; right: 14px;
    background: rgba(0,0,0,.08);
    border: none;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #555;
    transition: all .15s;
    line-height: 1;
}
.md-overlay-close:hover { background: rgba(184,95,62,.2); color: #b85f3e; transform: scale(1.1); }
.md-overlay-emoji {
    font-size: 3.6rem;
    margin-bottom: 6px;
    animation: floatEmoji 2.5s ease-in-out infinite;
}
@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}
.md-overlay-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    color: #4a1d10;
    margin-bottom: 12px;
    line-height: 1.2;
}
.md-h-grad {
    background: linear-gradient(135deg, #d97e54, #b85f3e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.md-overlay-card p {
    color: #6a2916;
    font-size: .95rem;
    margin-bottom: 22px;
    line-height: 1.5;
}
.md-overlay-cta {
    display: inline-block;
    background: linear-gradient(135deg, #d97e54 0%, #b85f3e 100%);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 22px rgba(184,95,62,.5);
    transition: transform .2s, box-shadow .2s;
}
.md-overlay-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(184,95,62,.65);
}
.md-overlay-hint {
    font-size: .72rem !important;
    color: #999 !important;
    margin: 14px 0 0 !important;
}
