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

:root {
    --rosa:         #c46487;
    --rosa-hover:   #a84f70;
    --mora:         #3a1b2e;
    --mora-suave:   #5c4652;
    --fondo:        #fff8f9;
    --card-bg:      #ffffff;
    --borde:        rgba(196,100,135,0.15);
    --borde-hover:  rgba(196,100,135,0.4);
    --gris-texto:   #7a626e;
    --radio:        24px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--fondo);
    color: var(--mora);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: sticky; top: 0; z-index: 200;
    background: rgba(255,248,249,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--borde);
    padding: 0 clamp(1rem, 6vw, 2rem);
}

.nav-inner {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--mora); text-decoration: none;
}
.logo span { color: var(--rosa); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a, .btn-nav {
    font-size: 0.875rem; font-weight: 500;
    color: var(--mora-suave); text-decoration: none;
    background: none; border: none; cursor: pointer;
    font-family: inherit; transition: color .2s;
}
.nav-links a:hover, .btn-nav:hover { color: var(--rosa); }

.productos-menu { position: relative; }
.productos-trigger {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.875rem; font-weight: 500; color: var(--mora-suave);
    background: none; border: none; cursor: pointer; font-family: inherit;
    padding: 20px 0; transition: color .2s;
}
.productos-trigger:hover, .productos-menu.open .productos-trigger { color: var(--rosa); }
.productos-trigger svg {
    width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2;
    transition: transform .22s ease;
}
.productos-menu.open .productos-trigger svg { transform: rotate(180deg); }
.productos-dropdown {
    position: absolute; top: calc(100% - 5px); right: -20px;
    width: 270px; padding: 9px;
    background: rgba(255,255,255,.98); border: 1px solid var(--borde);
    border-radius: 17px; box-shadow: 0 18px 45px rgba(58,27,46,.13);
    opacity: 0; visibility: hidden; transform: translateY(-7px);
    transition: opacity .2s, transform .2s, visibility .2s;
}
.productos-menu.open .productos-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.productos-dropdown::before {
    content: "Mis productos"; display: block;
    color: var(--gris-texto); font-size: .61rem; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
    padding: 7px 11px 8px;
}
.productos-dropdown a {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 11px; border-radius: 11px; color: var(--mora);
    font-size: .79rem; font-weight: 600; text-decoration: none;
    transition: background .2s, color .2s;
}
.productos-dropdown a::after { content: "→"; color: var(--rosa); }
.productos-dropdown a:hover { background: rgba(196,100,135,.08); color: var(--rosa); }

.btn-nav-cta {
    background: var(--mora); color: #fff !important;
    padding: 9px 20px; border-radius: 30px;
    font-size: 0.85rem; font-weight: 600;
    text-decoration: none; transition: background .2s;
}
.btn-nav-cta:hover { background: var(--rosa) !important; color: #fff !important; }

/* HERO */
.hero {
    width: 100%;
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 6vw, 2rem);
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(196,100,135,0.1); color: var(--rosa);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 1.8px;
    text-transform: uppercase; padding: 6px 14px; border-radius: 20px;
    margin-bottom: 22px;
}
.hero-badge::before { content: "✦"; font-size: 0.65rem; }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 3.8rem);
    font-weight: 600; line-height: 1.08;
    color: var(--mora); margin-bottom: 24px;
}
.hero h1 em {
    font-style: italic; font-weight: 400;
    color: var(--rosa); display: block;
}
.hero p {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--mora-suave);
    max-width: 480px; margin-bottom: 38px; font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    background: var(--rosa); color: #fff;
    padding: 14px 28px; border-radius: 32px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: background .2s, transform .15s;
    box-shadow: 0 6px 20px rgba(196,100,135,0.25);
}
.btn-primary:hover { background: var(--rosa-hover); transform: translateY(-1px); }
.btn-ghost {
    border: 1.5px solid var(--borde-hover); color: var(--mora);
    padding: 13px 26px; border-radius: 32px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: border-color .2s, color .2s;
    background: none; cursor: pointer; font-family: inherit;
}
.btn-ghost:hover { border-color: var(--rosa); color: var(--rosa); }

/* Tarjeta decorativa hero */
.hero-card {
    background: var(--card-bg);
    border-radius: var(--radio);
    border: 1px solid var(--borde);
    padding: clamp(1.5rem, 5vw, 2.25rem);
    display: flex; flex-direction: column; gap: 20px;
    width: 100%;
    max-width: 420px;
}
.card-divider { height: 1px; background: var(--borde); margin: 4px 0; }

/* POR QUE */
.porqué {
    background: var(--mora);
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 6vw, 2rem);
    width: 100%;
}
.porqué-inner {
    width: 100%;
    margin: 0 auto;
}
.porqué h2 {
    font-family: 'Playfair Display', serif;
    color: #fff; font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 500; margin-bottom: 50px; text-align: center;
}
.porqué h2 em { font-style: italic; color: var(--rosa); font-weight: 400; }
.porqué-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}
.porqué-card {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: clamp(1.5rem, 4vw, 2rem);
    transition: border-color .25s;
}
.porqué-card:hover { border-color: rgba(196,100,135,0.5); }
.porqué-icon { font-size: 1.8rem; margin-bottom: 16px; }
.porqué-card h3 { font-size: clamp(0.9rem, 2vw, 1.05rem); font-weight: 600; color: #fff; margin-bottom: 10px; }
.porqué-card p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* CATÁLOGO */
.catalogo {
    width: 100%;
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 6vw, 2rem);
    margin: 0 auto;
}
.section-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--rosa); margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500; color: var(--mora);
    margin-bottom: 14px;
}
.section-title em { font-style: italic; font-weight: 400; }
.section-intro {
    max-width: 660px; color: var(--gris-texto);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.75; margin-bottom: 46px;
}

.catalogo-grid { display: grid; grid-template-columns: 1fr; gap: 34px; }

.producto-card {
    position: relative; isolation: isolate;
    background: rgba(255,255,255,0.82);
    border-radius: 32px; overflow: hidden;
    border: 1px solid rgba(196,100,135,0.17);
    display: grid;
    grid-template-columns: 1fr minmax(300px, 1fr);
    gap: 0;
    min-height: 560px;
    transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s;
}
.producto-card::before {
    content: ""; position: absolute; z-index: -1;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(196,100,135,0.07); filter: blur(2px);
    left: -120px; bottom: -150px;
}
.producto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(91,45,66,0.11);
    border-color: var(--borde-hover);
}

.producto-visual {
    position: relative; min-height: 560px; overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(255,255,255,.85) 0 7%, transparent 8%),
        linear-gradient(145deg, #f9e5ec 0%, #efd1dc 52%, #e7bdcd 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 48px 34px;
}
.producto-card:nth-child(even) .producto-visual {
    order: -1;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.7) 0 6%, transparent 7%),
        linear-gradient(145deg, #eadce5 0%, #d8bccb 48%, #cfa8bb 100%);
}

/* Mockups fotográficos de producto */
.producto-visual.mockup-real {
    display: block; padding: 0; margin: 0; min-height: 100%;
    background: #ead5dd;
}
.mockup-real img {
    width: 100%; height: 100%; min-height: 100%; display: block;
    object-fit: cover; object-position: center;
    transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.producto-card:hover .mockup-real img { transform: scale(1.025); }
.mockup-real::after {
    content: ""; position: absolute; inset: auto 0 0; height: 26%;
    background: linear-gradient(to top, rgba(58,27,46,.48), transparent);
    pointer-events: none;
}
.mockup-real figcaption {
    position: absolute; z-index: 12; left: 26px; right: 26px; bottom: 22px;
    color: #fff; font: italic 500 1.05rem 'Playfair Display', serif;
    text-shadow: 0 2px 12px rgba(58,27,46,.38);
}

.img-overlay-badge {
    position: absolute; z-index: 15; top: 24px; left: 24px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    color: var(--rosa); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 7px 13px; border-radius: 20px;
    box-shadow: 0 8px 22px rgba(58,27,46,.08);
}
.img-overlay-badge.pronto { background: var(--mora); color: #fff; }

.device-stage { position: relative; width: 100%; height: 405px; }
.device {
    position: absolute; background: #2e2229;
    border: 4px solid #352730;
    box-shadow: 0 24px 45px rgba(58,27,46,.24);
    overflow: hidden;
}
.device-screen { width: 100%; height: 100%; background: #fffafb; overflow: hidden; }
.device-desktop {
    width: 84%; height: 275px; right: 0; top: 35px;
    border-radius: 12px; transform: perspective(900px) rotateY(-5deg);
}
.device-desktop::after {
    content: ""; position: absolute; width: 34%; height: 18px;
    background: #3a2932; left: 33%; bottom: -20px; border-radius: 0 0 9px 9px;
}
.device-tablet {
    width: 42%; height: 285px; left: 0; bottom: 4px;
    border-radius: 18px; border-width: 7px; transform: rotate(-4deg);
    z-index: 4;
}
.device-phone {
    width: 21%; height: 220px; right: 4%; bottom: 0;
    border-radius: 20px; border-width: 6px; z-index: 6;
    transform: rotate(3deg);
}
.device-phone::before {
    content: ""; position: absolute; z-index: 4; top: 3px; left: 35%;
    width: 30%; height: 5px; border-radius: 5px; background: #352730;
}

/* Pantallas del Cuaderno Digital */
.app-topbar { height: 11%; background: #fff; border-bottom: 1px solid #f0dce4; display: flex; align-items: center; padding: 0 5%; gap: 5px; }
.app-dot { width: 5px; height: 5px; border-radius: 50%; background: #db8ca8; }
.app-logo { margin-left: auto; font: 600 7px 'Playfair Display', serif; color: #6a3d50; }
.notebook-ui { display: grid; grid-template-columns: 24% 1fr; height: 89%; }
.notebook-side { background: #f9edf2; padding: 12% 10%; }
.side-line { height: 5px; background: #deb0c0; border-radius: 5px; margin-bottom: 9px; opacity: .65; }
.side-line.short { width: 65%; }
.notebook-main { padding: 8%; }
.ui-greeting { font: 600 12px 'Playfair Display', serif; color: #4c2d3b; margin-bottom: 8%; }
.cover-row { display: flex; gap: 6%; height: 58%; }
.ui-cover { flex: 1; border-radius: 7px; box-shadow: 0 5px 12px rgba(58,27,46,.12); }
.ui-cover:nth-child(1) { background: linear-gradient(145deg,#62256f,#f180bc); }
.ui-cover:nth-child(2) { background: linear-gradient(145deg,#ffb28d,#f3d7b6 52%,#7cb5b8); }
.ui-cover:nth-child(3) { background: linear-gradient(145deg,#1e80a8,#18365e); }
.tablet-page { height: 100%; padding: 15% 10% 9%; background: repeating-linear-gradient(#fffafb 0 21px,#ecdbe2 22px); }
.page-title { font: italic 600 13px 'Playfair Display', serif; color: #803d59; margin-bottom: 22px; }
.hand-line { width: 80%; height: 4px; border-radius: 5px; background: #b98398; opacity: .6; margin: 17px 0; }
.hand-line.short { width: 54%; }
.phone-library { padding: 25% 10% 10%; }
.phone-title { font: 600 9px 'Playfair Display', serif; color: #5b3043; margin-bottom: 12px; }
.phone-cover { height: 58px; margin-bottom: 8px; border-radius: 6px; background: linear-gradient(135deg,#aa4f91,#f5a4c4); }

/* Pantallas de Mi Diario de Gratitud */
.journal-ui { height: 100%; background: #fffaf8; padding: 7% 6%; }
.journal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7%; }
.journal-title { font: 600 12px 'Playfair Display', serif; color: #573344; }
.journal-date { font-size: 5px; color: #9d6b80; }
.mood-row { display: flex; gap: 5%; margin-bottom: 7%; }
.mood { flex: 1; aspect-ratio: 1; border-radius: 50%; background: #f0d2dd; border: 4px solid #fff; box-shadow: 0 0 0 1px #e9bdcd; }
.journal-panels { display: grid; grid-template-columns: 1.15fr .85fr; gap: 6%; height: 55%; }
.journal-card { background: #fff; border: 1px solid #efdce4; border-radius: 8px; padding: 8%; }
.journal-card strong { display: block; font: 600 7px 'Playfair Display', serif; color: #71465a; margin-bottom: 8px; }
.habit { height: 5px; background: #f3e4e9; border-radius: 5px; margin: 9px 0; overflow: hidden; }
.habit::before { content:""; display:block; width:72%; height:100%; background:#cf7e9b; border-radius:inherit; }
.gratitude-line { height: 3px; border-radius: 3px; background:#e8cfd9; margin: 10px 0; }
.journal-phone { padding: 25% 10% 10%; background: #fff9f7; height: 100%; }
.journal-phone .journal-title { font-size: 9px; margin-bottom: 12px; }
.check-card { background:#fff; border:1px solid #efd9e2; padding:10px 8px; border-radius:8px; margin-bottom:8px; }
.check-row { display:flex; align-items:center; gap:6px; font-size:5px; color:#765665; margin:7px 0; }
.check { width:7px; height:7px; border-radius:50%; background:#d98eaa; }

.producto-info {
    padding: clamp(2rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.producto-kicker {
    color: var(--rosa); font-size: .71rem; font-weight: 700;
    letter-spacing: 1.7px; text-transform: uppercase;
    margin-bottom: 13px;
}
.producto-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.55rem);
    line-height: 1.15; font-weight: 500;
    color: var(--mora); margin-bottom: 16px;
}
.producto-info > p {
    font-size: clamp(0.85rem, 2vw, 0.94rem);
    color: var(--mora-suave); margin-bottom: 24px;
    line-height: 1.75;
}
.producto-info .producto-subtitulo {
    color: var(--rosa); margin: -8px 0 12px; font-size: .8rem;
    font-weight: 700; letter-spacing: .4px;
}
.producto-info .producto-resumen { margin-bottom: 22px; }

.detalle-bloque { margin-bottom: 22px; }
.detalle-bloque h4 {
    font-family: 'Playfair Display', serif; font-size: 1rem;
    font-weight: 600; color: var(--mora); margin-bottom: 12px;
}
.detalle-lista {
    list-style: none; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 9px 16px;
}
.detalle-lista li {
    position: relative; padding-left: 18px; color: #604653;
    font-size: .73rem; line-height: 1.48;
}
.detalle-lista li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    color: var(--rosa); font-weight: 800;
}
.proposito-card {
    display: flex; gap: 12px; align-items: flex-start;
    background: linear-gradient(135deg, rgba(196,100,135,.10), rgba(196,100,135,.035));
    border: 1px solid rgba(196,100,135,.14); border-radius: 16px;
    padding: 15px 16px; margin-bottom: 22px;
}
.proposito-icon {
    width: 28px; height: 28px; border-radius: 50%; flex: 0 0 28px;
    display: grid; place-items: center; background: #fff; color: var(--rosa);
    box-shadow: 0 5px 13px rgba(58,27,46,.08); font-weight: 700;
}
.proposito-card strong { display: block; font-size: .78rem; color: var(--mora); margin-bottom: 3px; }
.proposito-card p { color: var(--mora-suave); font-size: .72rem; line-height: 1.5; }

.beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 26px;
}
.beneficio {
    background: rgba(196,100,135,0.065); border: 1px solid rgba(196,100,135,.10);
    border-radius: 14px; padding: 13px 12px; display: flex; gap: 9px; align-items: flex-start;
    color: #5a3d4b; font-size: .77rem; line-height: 1.45;
}
.beneficio-icon { color: var(--rosa); font-size: .8rem; flex-shrink: 0; }

.precio-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-top: 1px solid var(--borde);
    padding-top: 22px;
    margin: 0 0 20px;
}
.precio-label {
    display: block; color: var(--gris-texto); font-size: .7rem; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 2px;
}
.precio {
    font-family: 'Playfair Display', serif; color: var(--mora);
    font-size: clamp(1.4rem, 5vw, 2rem);
    line-height: 1; font-weight: 600;
}
.precio-tipo {
    color: var(--rosa); background: rgba(196,100,135,.09);
    border-radius: 20px; padding: 6px 11px;
    font-size: .7rem; font-weight: 700; white-space: nowrap;
    width: fit-content;
}

.device-note {
    position: absolute; z-index: 10; right: 3%; top: 6%;
    background: rgba(255,255,255,.94); color: #71465a;
    border: 1px solid rgba(196,100,135,.15); border-radius: 14px;
    padding: 9px 12px; font-size: .65rem; font-weight: 600;
    box-shadow: 0 10px 24px rgba(58,27,46,.10);
}

.btn-whatsapp {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    background: var(--rosa); color: #fff; text-decoration: none;
    padding: 14px 20px; border-radius: 28px;
    font-weight: 600; font-size: 0.875rem;
    transition: background .2s, transform .15s;
    box-shadow: 0 5px 16px rgba(196,100,135,0.22);
}
.btn-whatsapp:hover { background: var(--rosa-hover); transform: scale(1.01); }
.btn-whatsapp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

.btn-whatsapp-outline {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    border: 1.5px solid var(--borde-hover); color: var(--mora);
    text-decoration: none; padding: 13px 20px; border-radius: 28px;
    font-weight: 600; font-size: 0.875rem;
    transition: border-color .2s, color .2s, background .2s;
}
.btn-whatsapp-outline:hover { border-color: var(--rosa); color: var(--rosa); background: rgba(196,100,135,0.05); }
.btn-whatsapp-outline svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* TESTIMONIOS */
.testimonios {
    background: #fff;
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 6vw, 2rem);
}
.test-inner { width: 100%; margin: 0 auto; }
.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 48px;
}
.test-card {
    background: var(--fondo); border: 1px solid var(--borde);
    border-radius: 20px; padding: clamp(1.5rem, 4vw, 2rem);
}
.stars { color: var(--rosa); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.test-card p { font-size: 0.875rem; color: var(--mora-suave); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.test-autor { display: flex; align-items: center; gap: 10px; }
.avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(196,100,135,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; color: var(--rosa);
}
.test-autor strong { font-size: 0.82rem; color: var(--mora); display: block; }
.test-autor span { font-size: 0.72rem; color: var(--gris-texto); }

/* FOOTER */
footer {
    background: var(--mora);
    color: rgba(255,255,255,0.5);
    padding: clamp(2rem, 6vw, 3.5rem) clamp(1rem, 6vw, 2rem);
}
.footer-inner { width: 100%; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 36px;
}
.footer-brand .logo { color: #fff; font-size: 1.3rem; }
.footer-brand .logo span { color: var(--rosa); }
.footer-brand p { font-size: 0.83rem; margin-top: 10px; max-width: 220px; line-height: 1.6; }
.footer-links h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.footer-links a { display: block; font-size: 0.83rem; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.footer-links a:hover { color: var(--rosa); }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.social-pill {
    background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
    padding: 8px 16px; border-radius: 20px; font-size: 0.78rem; font-weight: 500;
    text-decoration: none; transition: background .2s, color .2s;
}
.social-pill:hover { background: var(--rosa); color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px; font-size: 0.78rem; text-align: center;
}

/* MODAL */
.modal-overlay {
    position: fixed; inset: 0; z-index: 400;
    background: rgba(58,27,46,0.18); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .35s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-card {
    background: #fff; border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    max-width: 560px; width: 92%;
    box-shadow: 0 30px 70px rgba(58,27,46,0.14);
    transform: scale(0.96); transition: transform .35s;
}
.modal-overlay.active .modal-card { transform: scale(1); }
.modal-tag { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--rosa); font-weight: 700; margin-bottom: 12px; display: block; }
.modal-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 500; color: var(--mora); margin-bottom: 20px;
}
.modal-card h2 em { font-style: italic; color: var(--rosa); }
.modal-card p { font-size: 0.93rem; color: var(--mora-suave); line-height: 1.8; margin-bottom: 16px; }
.btn-cerrar { background: var(--fondo); color: var(--rosa); border: 1.5px solid var(--borde-hover); padding: 10px 24px; border-radius: 24px; font-size: 0.83rem; font-weight: 600; cursor: pointer; transition: all .2s; font-family: inherit; margin-top: 10px; }
.btn-cerrar:hover { background: var(--rosa); color: #fff; border-color: var(--rosa); }

/* TARJETA PERSONAL NATI */
.nati-avatar-wrap { display: flex; align-items: center; gap: 14px; }
.nati-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, #e8a0b8 0%, #c46487 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 600; color: #fff;
    flex-shrink: 0;
}
.nati-nombre { display: block; font-size: 1rem; font-weight: 700; color: var(--mora); }
.nati-rol { font-size: 0.78rem; color: var(--gris-texto); }
.nati-bio { font-size: 0.875rem; color: var(--mora-suave); line-height: 1.7; }
.nati-redes { display: flex; flex-direction: column; gap: 10px; }
.red-pill {
    display: flex; align-items: center; gap: 9px;
    padding: 10px 16px; border-radius: 14px;
    font-size: 0.82rem; font-weight: 600; text-decoration: none;
    transition: opacity .2s, transform .15s;
}
.red-pill:hover { opacity: 0.85; transform: translateX(3px); }
.red-pill svg { width: 17px; height: 17px; flex-shrink: 0; }
.red-pill.ig { background: rgba(196,100,135,0.1); color: var(--rosa); }
.red-pill.tt { background: rgba(58,27,46,0.07); color: var(--mora); }

/* WHATSAPP FLOTANTE */
.wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 300;
    background: #25D366; color: #fff;
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 22px rgba(37,211,102,0.4);
    text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ========== RESPONSIVE MEJORADO ========== */

/* Tabletas medianas (768px - 1023px) */
@media (max-width: 1023px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: clamp(2rem, 6vw, 3rem);
    }
    .hero p { max-width: 100%; }
    .hero-ctas { justify-content: center; }
    .hero-card { max-width: 100%; }

    .producto-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .producto-card:nth-child(even) .producto-visual {
        order: 0;
    }
    .producto-visual {
        min-height: 400px;
    }
    .producto-visual.mockup-real {
        min-height: 450px;
    }

    .test-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Teléfonos grandes y tabletas pequeñas (600px - 767px) */
@media (max-width: 767px) {
    body { font-size: 15px; }

    nav { padding: 0 4vw; }
    .nav-inner { height: 56px; }
    .logo { font-size: 1.2rem; }
    .nav-links { gap: clamp(10px, 3vw, 20px); }
    .nav-links a:not(.btn-nav-cta) { display: none; }
    .productos-trigger { font-size: .75rem; }
    .productos-dropdown {
        position: fixed;
        top: 57px;
        left: 4vw;
        right: 4vw;
        width: auto;
        max-width: none;
    }

    .hero {
        padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 1.5rem);
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    .hero h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); }

    .catalogo { padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 1.5rem); }

    .producto-card {
        border-radius: clamp(1.5rem, 4vw, 2rem);
        min-height: auto;
    }
    .producto-info {
        padding: clamp(1.5rem, 4vw, 2rem);
    }
    .producto-visual {
        min-height: 320px;
        padding: clamp(1.5rem, 3vw, 2.5rem);
    }
    .producto-visual.mockup-real {
        min-height: 300px;
        padding: 0;
    }

    .beneficios { grid-template-columns: 1fr; }
    .detalle-lista { grid-template-columns: 1fr; gap: 6px; }
    .precio { font-size: clamp(1.3rem, 5vw, 1.8rem); }

    .device-stage { height: 280px; transform: scale(.85); }
    .device-desktop { width: 90%; height: 190px; }
    .device-tablet { height: 200px; width: 45%; }
    .device-phone { height: 160px; width: 24%; }

    .img-overlay-badge { top: 12px; left: 12px; font-size: 0.6rem; }
    .device-note { display: none; }

    .test-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; }
}

/* Teléfonos pequeños (máximo 599px) */
@media (max-width: 599px) {
    body { font-size: 14px; }

    nav { padding: 0 3vw; }
    .nav-inner { height: 52px; }
    .logo { font-size: 1rem; }
    .nav-links { gap: 8px; }
    .btn-nav-cta { padding: 8px 16px; font-size: 0.75rem; }

    .hero {
        padding: clamp(1.5rem, 4vw, 2rem) 3vw;
        gap: 1rem;
    }
    .hero h1 { font-size: clamp(1.3rem, 3.5vw, 1.8rem); }
    .hero p { font-size: clamp(0.85rem, 2vw, 0.95rem); }
    .hero-ctas { gap: 10px; }
    .btn-primary, .btn-ghost {
        padding: 11px 20px;
        font-size: 0.8rem;
    }

    .porqué { padding: clamp(1.5rem, 4vw, 2rem) 3vw; }
    .porqué h2 { font-size: clamp(1.3rem, 3.5vw, 1.7rem); }
    .porqué-grid { gap: clamp(1rem, 2vw, 1.5rem); }
    .porqué-card { padding: clamp(1rem, 3vw, 1.5rem); }

    .catalogo { padding: clamp(1.5rem, 4vw, 2rem) 3vw; }
    .section-title { font-size: clamp(1.3rem, 3.5vw, 1.7rem); }
    .section-intro { font-size: clamp(0.8rem, 1.8vw, 0.9rem); }

    .producto-card {
        border-radius: 1.5rem;
        min-height: auto;
    }
    .producto-card::before {
        width: 200px;
        height: 200px;
        left: -100px;
        bottom: -120px;
    }
    .producto-info {
        padding: clamp(1.2rem, 3vw, 1.5rem);
    }
    .producto-info h3 {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    }
    .producto-kicker { font-size: 0.65rem; }
    .producto-visual {
        min-height: 280px;
        padding: clamp(1rem, 2.5vw, 1.5rem);
    }
    .producto-visual.mockup-real {
        min-height: 280px;
    }

    .detalle-lista { gap: 4px; }
    .detalle-lista li { font-size: 0.68rem; }
    .precio { font-size: clamp(1.2rem, 4vw, 1.6rem); }

    .device-stage { height: 240px; transform: scale(.75); }
    .device-desktop { height: 160px; }
    .device-tablet { height: 170px; }
    .device-phone { height: 140px; }

    .img-overlay-badge { display: none; }

    .testimonios { padding: clamp(1.5rem, 4vw, 2rem) 3vw; }
    .test-grid { gap: clamp(1rem, 2vw, 1.5rem); }
    .test-card { padding: clamp(1rem, 3vw, 1.5rem); }

    footer { padding: clamp(1.5rem, 4vw, 2rem) 3vw; }
    .footer-brand .logo { font-size: 1rem; }

    .modal-card {
        padding: clamp(1.5rem, 4vw, 2rem);
    }
    .modal-card h2 { font-size: clamp(1.4rem, 3.5vw, 1.8rem); }
}

/* Pantallas ultra grandes (1920px+) */
@media (min-width: 1920px) {
    .nav-inner,
    .hero,
    .porqué-inner,
    .catalogo,
    .test-inner,
    .footer-inner {
        max-width: 1600px;
    }

    .producto-card {
        grid-template-columns: 1.2fr 1fr;
        min-height: 680px;
    }

    .producto-info {
        padding: 80px 70px;
    }

    .hero {
        padding: 130px 4vw 100px;
        gap: 100px;
    }

    .porqué,
    .testimonios {
        padding: 100px 4vw;
    }

    .catalogo {
        padding: 100px 4vw;
    }

    .detalle-lista {
        gap: 14px 32px;
    }
}
