:root {
    --ink: #111318;
    --navy: #122940;
    --navy-2: #0b1f33;
    --blue: #38b6ff;
    --blue-2: #167ce8;
    --blue-soft: #eaf6ff;
    --white: #ffffff;
    --paper: #f7f9fc;
    --soft: #f0f5fb;
    --line: #dfe7f0;
    --muted: #677487;
    --green: #28c76f;
    --purple: #7857eb;
    --pink: #f14690;
    --shadow: 0 28px 70px rgba(20, 53, 86, .12);
    --shadow-soft: 0 16px 40px rgba(20, 53, 86, .09);
    --radius: 28px;
    --container: 1240px;
    --heading: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
    --body: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-white { background: var(--white); }
.section-soft { background: linear-gradient(180deg, #fbfcfe 0%, #f2f6fb 100%); }
.section-navy { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--navy-2), #173b5d); }
.skip-link { position: fixed; z-index: 999; left: 15px; top: -70px; padding: 12px 16px; color: #fff; background: #000; border-radius: 10px; }
.skip-link:focus { top: 15px; }

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(28, 61, 93, .08);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
}
.header-row { min-height: 78px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 220px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { color: var(--blue-2); font-size: 1rem; letter-spacing: .16em; }
.brand small { margin-top: 7px; color: #9aa4b2; font-size: .48rem; letter-spacing: .08em; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.main-nav a { position: relative; padding: 29px 0 24px; color: #242a32; font-size: .76rem; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: 17px; height: 2px; background: var(--blue); transition: left .2s ease, right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { left: 0; right: 0; }
.header-cta { margin-left: 5px; }
.menu-button { display: none; width: 45px; height: 45px; margin-left: auto; padding: 11px; border: 0; border-radius: 13px; background: var(--blue-soft); }
.menu-button span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border: 1px solid transparent; border-radius: 12px; font-size: .78rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, #1684ef, #2e9bf5); box-shadow: 0 12px 25px rgba(22, 132, 239, .25); }
.button-primary:hover { box-shadow: 0 18px 35px rgba(22, 132, 239, .34); }
.button-dark { color: #fff; background: #10141a; box-shadow: 0 14px 30px rgba(13, 20, 29, .18); }
.button-text { padding-inline: 6px; color: var(--blue-2); background: transparent; }
.button-whatsapp { color: #d9ffe7; border-color: #28d679; background: rgba(14, 46, 36, .75); }
.button-large { min-height: 60px; padding-inline: 28px; font-size: .9rem; }
.play { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #9fd8ff; border-radius: 50%; font-size: .58rem; }
.plain-link { padding-bottom: 5px; color: var(--blue-2); border-bottom: 1px solid rgba(22, 124, 232, .25); font-size: .8rem; font-weight: 800; }

.eyebrow { display: inline-block; color: var(--blue-2); font-size: .62rem; font-weight: 900; letter-spacing: .17em; }
.eyebrow.light { color: #75cfff; }
.title-line { width: 82px; height: 4px; margin-top: 24px; border-radius: 999px; background: linear-gradient(90deg, var(--blue-2), #7ad1ff); box-shadow: 0 0 20px rgba(56, 182, 255, .35); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--heading); font-stretch: condensed; letter-spacing: -.04em; }
h1 span, h1 em, h2 span, h2 em { display: block; }
h1 em, h2 em { color: var(--blue); font-family: var(--body); font-style: normal; font-weight: 800; letter-spacing: -.055em; }

.hero { position: relative; overflow: hidden; padding: 76px 0 90px; }
.hero-grid { min-height: 690px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 46px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 22px 0 0; font-size: clamp(4.3rem, 7vw, 7.2rem); line-height: .86; }
.hero h1 em { margin-top: 14px; font-size: .63em; }
.hero-lead { max-width: 530px; margin: 24px 0 0; color: #313943; font-size: 1.06rem; line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.benefit-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 24px; }
.benefit-row > div { display: flex; align-items: center; gap: 10px; padding-right: 22px; border-right: 1px solid var(--line); }
.benefit-row > div:last-child { border-right: 0; }
.mini-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #ccd6e0; border-radius: 50%; color: #172333; font-weight: 900; }
.benefit-row p, .benefit-row strong, .benefit-row small { margin: 0; display: block; }
.benefit-row strong { font-size: .72rem; }
.benefit-row small { margin-top: 4px; color: var(--muted); font-size: .62rem; }
.hero-showcase { position: relative; min-height: 690px; }
.phone-glow { position: absolute; left: 50%; bottom: 25px; width: 470px; height: 170px; transform: translateX(-50%); border-radius: 50%; background: rgba(34, 129, 255, .18); filter: blur(35px); }
.hero-phone { position: absolute; z-index: 2; left: 50%; top: 15px; width: min(44vw, 410px); height: 650px; object-fit: contain; transform: translateX(-50%); filter: drop-shadow(0 35px 28px rgba(27, 54, 83, .25)); }
.feature-callout { position: absolute; z-index: 4; max-width: 190px; display: flex; align-items: center; gap: 12px; }
.feature-callout::after { content: ""; position: absolute; top: 50%; width: 58px; height: 2px; background: linear-gradient(90deg, #3389ff, #9cd9ff); }
.feature-callout p, .feature-callout strong, .feature-callout small { margin: 0; display: block; }
.feature-callout strong { font-size: .75rem; }
.feature-callout small { margin-top: 5px; color: #4c5664; font-size: .62rem; line-height: 1.35; }
.feature-icon { flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center; border: 7px solid #fff; border-radius: 50%; color: #fff; background: var(--blue-2); box-shadow: 0 8px 25px rgba(42, 95, 153, .19); font-size: 1rem; font-weight: 900; }
.feature-icon.green { background: var(--green); }
.feature-icon.pink { background: linear-gradient(135deg, #8d3cf4, #ff416c); }
.feature-icon.purple { background: var(--purple); }
.callout-1 { left: 0; top: 240px; }
.callout-1::after, .callout-2::after { left: calc(100% + 10px); }
.callout-2 { left: 15px; top: 470px; }
.callout-3 { right: 0; top: 140px; }
.callout-4 { right: -8px; top: 330px; }
.callout-5 { right: 0; top: 520px; }
.callout-3::after, .callout-4::after, .callout-5::after { right: calc(100% + 10px); transform: rotate(180deg); }
.pattern-dots { position: absolute; left: -70px; bottom: 15px; width: 360px; height: 280px; opacity: .2; background-image: radial-gradient(circle, #258cff 1.8px, transparent 2px); background-size: 14px 14px; -webkit-mask-image: radial-gradient(circle at left bottom, #000, transparent 70%); mask-image: radial-gradient(circle at left bottom, #000, transparent 70%); }
.pattern-rings { position: absolute; right: -160px; top: 40px; width: 520px; height: 520px; border: 1px solid rgba(56, 182, 255, .13); border-radius: 50%; box-shadow: 0 0 0 50px rgba(56,182,255,.035), 0 0 0 100px rgba(56,182,255,.025), 0 0 0 150px rgba(56,182,255,.018); }

.how { padding: 100px 0; }
.section-heading { margin-bottom: 44px; }
.split-heading { display: grid; grid-template-columns: .75fr 1fr; gap: 50px; align-items: end; }
.split-heading h2, .feature-copy h2, .product-copy h2, .touch-copy h2, .faq-title h2 { margin: 18px 0 0; font-size: clamp(3.7rem, 6vw, 6rem); line-height: .88; }
.split-heading h2 em, .feature-copy h2 em, .product-copy h2 em, .touch-copy h2 em, .faq-title h2 em { margin-top: 10px; font-size: .73em; }
.split-heading > p { max-width: 620px; margin: 0 0 4px auto; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.process-card { padding: 44px 48px; display: grid; grid-template-columns: 1fr 55px 1fr 55px 1fr; gap: 25px; align-items: center; border: 1px solid #e8edf4; border-radius: var(--radius); background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.process-step { position: relative; text-align: center; }
.step-number { position: absolute; z-index: 3; left: 12px; top: 8px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #0f63ef; font-size: 1rem; font-weight: 900; box-shadow: 0 9px 20px rgba(15,99,239,.24); }
.step-visual { width: min(100%, 260px); height: 245px; margin: auto; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle, #edf3ff 0 58%, transparent 59%); }
.process-step h3 { margin: 12px 0 0; font-size: 1.35rem; }
.process-step p { margin: 5px 0 0; color: #27303a; }
.process-arrow { color: #1267f0; font-size: 2.3rem; }
.smart-card { position: relative; width: 225px; height: 136px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: linear-gradient(145deg, #262b33, #0d1015); box-shadow: 0 22px 35px rgba(22,28,38,.25); transform: rotate(-7deg); }
.smart-card b { width: 74px; height: 74px; display: grid; place-items: center; border: 2px dashed rgba(255,255,255,.65); border-radius: 50%; font-size: 2rem; font-weight: 300; }
.nfc-symbol { position: absolute; right: 18px; top: 16px; font-style: normal; letter-spacing: -5px; transform: rotate(90deg); }
.phone-mini img { width: 160px; height: 260px; object-fit: contain; filter: drop-shadow(0 15px 18px rgba(28,52,86,.18)); }
.success-phone { width: 170px; height: 245px; margin: auto; border: 7px solid #141b24; border-radius: 28px; background: #fff; box-shadow: 0 20px 35px rgba(26,43,66,.18); }
.success-phone span { width: 75px; height: 75px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #6ab6ff, #6c5ce7); font-size: 2.4rem; }
.success-phone i { width: 72%; height: 11px; margin: 10px auto 0; border-radius: 8px; background: #e5ebf3; }
.success-phone i:nth-of-type(2) { width: 55%; }
.success-phone i:nth-of-type(3) { height: 55px; }

.paperless { padding: 110px 0 90px; }
.feature-grid { display: grid; grid-template-columns: .9fr 1.05fr; gap: 40px 70px; align-items: center; }
.feature-copy p { max-width: 510px; margin: 28px 0; color: #29333e; font-size: 1.05rem; line-height: 1.65; }
.feature-image { position: relative; min-height: 650px; display: grid; place-items: center; }
.feature-image::before { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(59,156,255,.14), transparent 67%); }
.feature-image img { position: relative; z-index: 2; max-height: 650px; object-fit: contain; filter: drop-shadow(0 28px 28px rgba(31,58,88,.16)); }
.feature-benefits { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-top: 26px; }
.feature-benefits article { display: flex; align-items: center; justify-content: center; gap: 15px; padding: 8px 25px; border-right: 1px solid var(--line); }
.feature-benefits article:last-child { border-right: 0; }
.feature-benefits span { font-size: 2rem; }
.feature-benefits p, .feature-benefits strong, .feature-benefits small { margin: 0; display: block; }
.feature-benefits strong { font-size: .85rem; }
.feature-benefits small { margin-top: 4px; color: var(--muted); font-size: .72rem; }

.products-intro { padding: 100px 0 40px; }
.mesh { position: absolute; inset: 0; opacity: .25; background-image: radial-gradient(circle at 80% 15%, rgba(56,182,255,.65) 0 1px, transparent 1.4px); background-size: 18px 18px; -webkit-mask-image: linear-gradient(90deg, transparent 20%, #000 100%); mask-image: linear-gradient(90deg, transparent 20%, #000 100%); }
.product-intro-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.product-intro-grid h2 { max-width: 760px; margin: 20px 0 0; font-size: clamp(3.2rem, 5.7vw, 5.8rem); line-height: .92; }
.product-intro-grid > p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.75; }
.product-tabs { position: relative; z-index: 2; margin-top: 65px; display: grid; grid-template-columns: repeat(3, 1fr); }
.product-tabs a { min-height: 135px; padding: 28px; display: grid; grid-template-columns: 48px 1fr; align-content: center; gap: 4px 16px; border-top: 1px solid rgba(255,255,255,.16); border-right: 1px solid rgba(255,255,255,.12); transition: background .2s ease; }
.product-tabs a:last-child { border-right: 0; }
.product-tabs a:hover { background: rgba(255,255,255,.07); }
.product-tabs span { grid-row: 1 / 3; color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.product-tabs strong { font-size: 1.15rem; }
.product-tabs small { color: rgba(255,255,255,.5); font-size: .72rem; }

.product-section { padding: 115px 0; }
.product-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.product-layout.reverse { grid-template-columns: 1.18fr .82fr; }
.product-index { color: var(--blue-2); font-size: .63rem; font-weight: 900; letter-spacing: .16em; }
.product-copy h2 { margin-top: 22px; }
.product-copy > p { max-width: 560px; margin: 28px 0; color: var(--muted); line-height: 1.75; }
.product-actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.product-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.product-visual > img { position: relative; z-index: 2; width: 100%; max-height: 690px; object-fit: contain; filter: drop-shadow(0 32px 35px rgba(28,54,84,.16)); }
.color-list { margin: 32px 0 0; padding: 0; list-style: none; display: grid; gap: 17px; }
.color-list li { display: flex; align-items: center; gap: 14px; }
.color-list p, .color-list strong, .color-list small { margin: 0; display: block; }
.color-list strong { font-size: .88rem; }
.color-list small { margin-top: 4px; color: var(--muted); font-size: .76rem; }
.swatch { width: 20px; height: 20px; border: 4px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px #d6dee7; }
.swatch.black { background: #111; }
.swatch.silver { background: linear-gradient(135deg, #d9dde2, #858c95); }
.swatch.gold { background: linear-gradient(135deg, #f8d57b, #b98925); }
.floating-label { position: absolute; z-index: 3; min-width: 185px; padding: 14px 18px; border: 1px solid rgba(32,87,140,.12); border-radius: 14px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); color: var(--blue-2); font-size: .72rem; font-weight: 900; backdrop-filter: blur(10px); }
.floating-label small { margin-top: 4px; display: block; color: var(--muted); font-size: .63rem; font-weight: 600; }
.label-nfc { right: 0; top: 110px; }
.label-qr { left: 15px; bottom: 70px; }

.contact-touch { padding: 105px 0; overflow: hidden; }
.touch-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; align-items: center; }
.touch-copy > p { margin: 25px 0; color: var(--muted); font-size: 1.08rem; }
.annotation-grid { margin-top: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.annotation-grid article { padding: 18px; display: flex; align-items: center; gap: 13px; border: 1px solid #e0e8f1; border-radius: 17px; background: rgba(255,255,255,.85); }
.annotation-grid article > span { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border: 1px solid #cbd6e2; border-radius: 50%; font-weight: 900; }
.annotation-grid p, .annotation-grid strong, .annotation-grid small { margin: 0; display: block; }
.annotation-grid strong { font-size: .72rem; }
.annotation-grid small { margin-top: 3px; color: var(--muted); font-size: .66rem; }
.touch-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.touch-visual::after { content: ""; position: absolute; right: -280px; bottom: -230px; width: 700px; height: 700px; border: 1px solid rgba(56,182,255,.12); border-radius: 50%; box-shadow: 0 0 0 60px rgba(56,182,255,.025), 0 0 0 120px rgba(56,182,255,.018); }
.touch-visual img { position: relative; z-index: 2; max-height: 680px; object-fit: contain; filter: drop-shadow(0 25px 30px rgba(25,49,78,.16)); }

.bracelet-section { overflow: hidden; }
.bracelet-visual { min-height: 610px; }
.bracelet-backdrop { position: absolute; left: 2%; top: 10%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(56,182,255,.18), transparent 64%); }
.bracelet-visual > img { max-height: 550px; object-fit: contain; }
.emergency-card { position: absolute; z-index: 4; right: 5px; bottom: 15px; width: 285px; padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; color: #fff; background: linear-gradient(160deg, #17334e, #0d2034); box-shadow: 0 22px 50px rgba(13,32,52,.25); }
.emergency-card > span { color: #7fd4ff; font-size: .55rem; font-weight: 900; letter-spacing: .13em; }
.emergency-card > strong { margin: 10px 0 18px; display: block; font-size: 1rem; line-height: 1.35; }
.emergency-card div { padding: 10px 0; display: flex; align-items: center; gap: 10px; border-top: 1px solid rgba(255,255,255,.1); }
.emergency-card i { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(56,182,255,.12); }
.emergency-card p { margin: 0; color: rgba(255,255,255,.72); font-size: .68rem; }
.use-cases { margin: 28px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.use-cases article { padding: 17px; display: flex; gap: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.use-cases article > span { color: var(--blue-2); font-size: .58rem; font-weight: 900; }
.use-cases p, .use-cases strong, .use-cases small { margin: 0; display: block; }
.use-cases strong { font-size: .76rem; }
.use-cases small { margin-top: 4px; color: var(--muted); font-size: .65rem; line-height: 1.35; }

.tag-section { overflow: hidden; }
.tag-features { margin: 30px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tag-features article { min-height: 100px; padding: 18px; display: flex; gap: 12px; border: 1px solid #dce5ef; border-radius: 16px; background: rgba(255,255,255,.75); }
.tag-features article > span { color: var(--blue-2); font-size: 1.2rem; }
.tag-features p, .tag-features strong, .tag-features small { margin: 0; display: block; }
.tag-features strong { font-size: .75rem; }
.tag-features small { margin-top: 5px; color: var(--muted); font-size: .66rem; line-height: 1.35; }
.tag-visual { min-height: 560px; }
.tag-visual img { border-radius: 28px; box-shadow: var(--shadow); filter: none; }
.tag-note { position: absolute; z-index: 4; right: 35px; bottom: 30px; padding: 15px 20px; border-radius: 14px; background: rgba(13,33,53,.9); color: #fff; box-shadow: 0 15px 35px rgba(13,33,53,.22); }
.tag-note strong, .tag-note small { display: block; }
.tag-note strong { color: #75cfff; font-size: .82rem; }
.tag-note small { margin-top: 4px; color: rgba(255,255,255,.65); font-size: .65rem; }

.profile-section { padding: 110px 0; }
.mesh-alt { opacity: .18; transform: scaleX(-1); }
.profile-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.profile-copy h2 { margin: 20px 0 0; font-size: clamp(3.5rem, 5.8vw, 6rem); line-height: .92; }
.profile-copy h2 em { margin-top: 10px; color: var(--blue); font-family: var(--body); font-size: .63em; font-style: normal; font-weight: 800; }
.profile-copy > p { max-width: 570px; margin: 28px 0; color: rgba(255,255,255,.66); line-height: 1.75; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.profile-stats div { padding-top: 17px; border-top: 1px solid rgba(255,255,255,.15); }
.profile-stats strong, .profile-stats span { display: block; }
.profile-stats strong { color: var(--blue); font-size: 2rem; }
.profile-stats span { margin-top: 5px; color: rgba(255,255,255,.56); font-size: .68rem; line-height: 1.4; }
.profile-phone-card { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: rgba(255,255,255,.07); backdrop-filter: blur(15px); }
.profile-phone-card img { border-radius: 20px; }

.faq { padding: 110px 0; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.faq-title > p { max-width: 460px; margin: 25px 0 0; color: var(--muted); line-height: 1.7; }
.faq-list { display: grid; }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .9rem; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary span { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border: 1px solid #cbd7e3; border-radius: 50%; color: var(--blue-2); font-size: 1.15rem; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 680px; margin: -3px 0 24px; color: var(--muted); font-size: .85rem; line-height: 1.75; }

.final-cta { position: relative; overflow: hidden; padding: 100px 0 34px; color: #fff; background: linear-gradient(135deg, #071b2f, #0c2f50 55%, #103c65); }
.cta-rings { position: absolute; right: -280px; top: -330px; width: 760px; height: 760px; border: 1px solid rgba(56,182,255,.22); border-radius: 50%; box-shadow: 0 0 0 80px rgba(56,182,255,.04), 0 0 0 160px rgba(56,182,255,.025), 0 0 0 240px rgba(56,182,255,.015); }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.cta-grid h2 { margin: 18px 0 0; font-size: clamp(3.7rem, 6vw, 6.4rem); line-height: .9; }
.cta-grid h2 em { margin-top: 12px; color: var(--blue); font-family: var(--heading); font-style: normal; }
.cta-grid p { max-width: 680px; margin: 25px 0 0; color: rgba(255,255,255,.65); line-height: 1.7; }
.cta-actions { display: grid; gap: 14px; }
.trust-row { position: relative; z-index: 2; margin-top: 70px; padding-top: 25px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); font-size: .68rem; text-align: center; }

.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.66); background: #08111c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; }
.brand.inverse strong { color: #62c6ff; }
.footer-brand p { max-width: 380px; margin: 18px 0 0; font-size: .75rem; line-height: 1.6; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; font-size: .74rem; }
.footer-grid > div > strong { margin-bottom: 8px; color: #fff; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a:hover { color: var(--blue); }
.footer-bottom { margin-top: 52px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.38); font-size: .62rem; }
.whatsapp-float { position: fixed; z-index: 90; right: 20px; bottom: 20px; min-height: 52px; padding: 8px 17px 8px 9px; display: flex; align-items: center; gap: 9px; border-radius: 999px; color: #0c3220; background: #58e794; box-shadow: 0 18px 45px rgba(22,105,58,.26); font-size: .7rem; }
.whatsapp-float span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #fff; }

@media (max-width: 1120px) {
    .main-nav { gap: 17px; }
    .main-nav a { font-size: .7rem; }
    .hero-grid { grid-template-columns: .9fr 1.1fr; }
    .feature-callout { max-width: 160px; }
    .feature-callout::after { width: 35px; }
    .callout-4, .callout-5 { right: -10px; }
    .product-layout, .product-layout.reverse { gap: 40px; }
}

@media (max-width: 960px) {
    .header-cta { display: none; }
    .menu-button { display: block; }
    .main-nav { position: fixed; left: 0; right: 0; top: 78px; height: calc(100vh - 78px); padding: 26px 24px 50px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: rgba(255,255,255,.98); transform: translateX(100%); transition: transform .25s ease; }
    .main-nav.open { transform: translateX(0); }
    .main-nav a { padding: 20px 5px; border-bottom: 1px solid var(--line); font-size: 1rem; }
    .main-nav a::after { display: none; }
    .hero { padding-top: 45px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-lead { margin-inline: auto; }
    .title-line { margin-inline: auto; }
    .benefit-row, .hero-actions { justify-content: center; }
    .hero-showcase { min-height: 660px; }
    .feature-callout::after { display: none; }
    .callout-1 { left: 5%; top: 210px; }
    .callout-2 { left: 7%; top: 445px; }
    .callout-3 { right: 4%; top: 120px; }
    .callout-4 { right: 3%; top: 320px; }
    .callout-5 { right: 4%; top: 500px; }
    .split-heading, .feature-grid, .product-intro-grid, .product-layout, .product-layout.reverse, .touch-grid, .profile-grid, .faq-grid, .cta-grid { grid-template-columns: 1fr; }
    .split-heading { text-align: center; }
    .split-heading > p { margin-inline: auto; }
    .process-card { padding: 34px 22px; grid-template-columns: 1fr; }
    .process-arrow { transform: rotate(90deg); }
    .feature-copy, .product-copy, .touch-copy, .faq-title { text-align: center; }
    .feature-copy p, .product-copy > p, .touch-copy > p, .faq-title > p { margin-inline: auto; }
    .feature-benefits { grid-template-columns: 1fr; gap: 5px; }
    .feature-benefits article { border-right: 0; border-bottom: 1px solid var(--line); }
    .feature-benefits article:last-child { border-bottom: 0; }
    .product-intro-grid { text-align: center; }
    .product-tabs { margin-top: 45px; }
    .product-layout.reverse .product-visual { order: 2; }
    .product-layout.reverse .product-copy { order: 1; }
    .color-list { max-width: 360px; margin-inline: auto; text-align: left; }
    .product-actions { justify-content: center; }
    .touch-visual { min-height: 560px; }
    .annotation-grid { max-width: 640px; margin-inline: auto; }
    .use-cases, .tag-features { max-width: 680px; margin-inline: auto; text-align: left; }
    .profile-copy { text-align: center; }
    .profile-copy > p { margin-inline: auto; }
    .trust-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 3; }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .brand { min-width: auto; }
    .brand span { display: none; }
    .hero { padding-bottom: 60px; }
    .hero h1 { font-size: clamp(3.25rem, 17vw, 5rem); }
    .hero h1 em { font-size: .6em; }
    .hero-lead { font-size: .92rem; }
    .benefit-row { gap: 10px; }
    .benefit-row > div { width: calc(50% - 6px); padding: 12px; justify-content: flex-start; border: 1px solid var(--line); border-radius: 14px; }
    .benefit-row > div:last-child { width: 100%; border: 1px solid var(--line); }
    .hero-actions .button { width: 100%; }
    .hero-showcase { min-height: 620px; }
    .hero-phone { width: 290px; height: 590px; }
    .feature-callout { max-width: 130px; gap: 7px; }
    .feature-icon { flex-basis: 40px; width: 40px; height: 40px; border-width: 5px; }
    .feature-callout strong { font-size: .66rem; }
    .feature-callout small { display: none; }
    .callout-1 { left: 0; top: 225px; }
    .callout-2 { left: 0; top: 420px; }
    .callout-3 { right: 0; top: 130px; }
    .callout-4 { right: 0; top: 315px; }
    .callout-5 { right: 0; top: 490px; }
    .how, .paperless, .product-section, .contact-touch, .profile-section, .faq { padding-block: 78px; }
    .split-heading h2, .feature-copy h2, .product-copy h2, .touch-copy h2, .faq-title h2 { font-size: clamp(3.1rem, 15vw, 4.6rem); }
    .process-card { padding: 28px 14px; }
    .step-visual { height: 220px; }
    .feature-image { min-height: 500px; }
    .feature-image img { max-height: 500px; }
    .product-tabs { grid-template-columns: 1fr; }
    .product-tabs a { min-height: 105px; border-right: 0; }
    .product-visual, .bracelet-visual, .tag-visual { min-height: 440px; }
    .floating-label { display: none; }
    .annotation-grid, .use-cases, .tag-features { grid-template-columns: 1fr; }
    .touch-visual { min-height: 470px; }
    .touch-visual img { max-height: 500px; }
    .emergency-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: -20px; }
    .bracelet-visual { display: flex; flex-direction: column; }
    .profile-stats { grid-template-columns: 1fr; }
    .profile-stats div { text-align: left; }
    .cta-grid h2 { font-size: clamp(3.1rem, 14vw, 4.5rem); }
    .trust-row { grid-template-columns: 1fr; text-align: left; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .whatsapp-float strong { display: none; }
    .whatsapp-float { width: 52px; padding: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Productos de emergencia y galería editorial */
.emergency-product-layout { align-items: center; }
.editorial-product-visual { min-height: 760px; }
.editorial-frame {
    position: relative;
    z-index: 2;
    width: min(100%, 540px);
    padding: 12px;
    border: 1px solid rgba(22, 124, 232, .12);
    border-radius: 34px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 36px 90px rgba(18, 41, 64, .16);
    transform: rotate(-1.2deg);
}
.tag-section .editorial-frame { transform: rotate(1.2deg); }
.editorial-frame::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 9% -8% -5% 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 182, 255, .2), transparent 68%);
    filter: blur(12px);
}
.editorial-frame img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}
.editorial-chip {
    position: absolute;
    z-index: 4;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 999px;
    color: #fff;
    background: rgba(10, 34, 57, .88);
    box-shadow: 0 14px 35px rgba(10, 34, 57, .2);
    backdrop-filter: blur(12px);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
}
.editorial-chip.chip-top { right: 2%; top: 12%; }
.editorial-chip.chip-bottom { left: 3%; bottom: 10%; color: #08243d; background: rgba(255,255,255,.93); }

.emergency-gallery { padding: 110px 0 120px; overflow: hidden; }
.gallery-heading {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 70px;
    align-items: end;
}
.gallery-heading h2,
.marketplace-copy h2 {
    margin: 18px 0 0;
    font-size: clamp(3.7rem, 6vw, 6.2rem);
    line-height: .88;
}
.gallery-heading h2 em,
.marketplace-copy h2 em {
    margin-top: 11px;
    font-size: .64em;
}
.gallery-heading > p {
    max-width: 580px;
    margin: 0 0 4px auto;
    color: var(--muted);
    line-height: 1.75;
}
.story-carousel { margin-top: 48px; }
.carousel-toolbar {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.carousel-status { display: flex; align-items: center; gap: 13px; color: var(--muted); font-size: .66rem; font-weight: 900; letter-spacing: .1em; }
.carousel-status span:first-child { color: var(--blue-2); font-size: 1rem; }
.carousel-status i { width: 82px; height: 2px; display: block; background: linear-gradient(90deg, var(--blue-2), #dfe8f2); }
.carousel-controls { display: flex; gap: 9px; }
.carousel-controls button {
    width: 48px;
    height: 48px;
    border: 1px solid #dbe5ef;
    border-radius: 50%;
    color: var(--navy);
    background: #fff;
    box-shadow: 0 10px 25px rgba(28, 54, 84, .08);
    cursor: pointer;
    font-size: 1.15rem;
    transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.carousel-controls button:hover { transform: translateY(-2px); border-color: #8fd2ff; color: var(--blue-2); }
.story-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(310px, 34%);
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    outline: none;
}
.story-track::-webkit-scrollbar { display: none; }
.story-slide {
    position: relative;
    margin: 0;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid #e1e9f2;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 50px rgba(18, 41, 64, .1);
}
.story-slide img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.story-slide figcaption {
    min-height: 92px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #eef2f6;
}
.story-slide figcaption strong { font-size: .86rem; }
.story-slide figcaption span { margin-top: 6px; color: var(--muted); font-size: .7rem; line-height: 1.45; }
.carousel-dots { margin-top: 23px; display: flex; justify-content: center; gap: 8px; }
.carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cdd8e4;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}
.carousel-dots button.active { width: 30px; background: var(--blue-2); }

/* Mercado Libre */
.marketplace-section { padding: 115px 0; overflow: hidden; }
.marketplace-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 65px;
    align-items: center;
}
.market-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #655800;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
}
.market-badge i { width: 9px; height: 9px; border-radius: 50%; background: #ffe600; box-shadow: 0 0 0 6px rgba(255, 230, 0, .2); }
.marketplace-copy > p { max-width: 560px; margin: 28px 0; color: var(--muted); line-height: 1.75; }
.market-benefits { display: grid; gap: 12px; }
.market-benefits article {
    padding: 16px 17px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    border: 1px solid #dde6ef;
    border-radius: 17px;
    background: rgba(255,255,255,.78);
}
.market-benefits article > span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #403800;
    background: #ffe600;
    font-weight: 900;
}
.market-benefits p,
.market-benefits strong,
.market-benefits small { margin: 0; display: block; }
.market-benefits strong { font-size: .77rem; }
.market-benefits small { margin-top: 5px; color: var(--muted); font-size: .67rem; line-height: 1.45; }
.market-actions { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button-market { color: #2d2a00; background: #ffe600; box-shadow: 0 14px 30px rgba(147, 127, 0, .18); }
.button-market:hover { box-shadow: 0 18px 38px rgba(147, 127, 0, .27); }
.market-browser {
    overflow: hidden;
    border: 1px solid rgba(19, 54, 84, .12);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 35px 85px rgba(18, 41, 64, .15);
}
.browser-bar {
    min-height: 62px;
    padding: 12px 17px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid #e6edf4;
    background: #f6f8fb;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 9px; height: 9px; border-radius: 50%; background: #c6d1dd; }
.browser-dots i:first-child { background: #ff7c75; }
.browser-dots i:nth-child(2) { background: #fbc64f; }
.browser-dots i:nth-child(3) { background: #54c98c; }
.browser-address {
    min-width: 0;
    padding: 10px 14px;
    overflow: hidden;
    border: 1px solid #e0e7ef;
    border-radius: 10px;
    color: #687587;
    background: #fff;
    font-size: .64rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.browser-lock { color: #91a0b1; }
.market-frame-stage { position: relative; min-height: 620px; background: linear-gradient(145deg, #fff9b8, #ffe600); }
.market-frame-stage iframe { width: 100%; height: 620px; border: 0; background: #fff; }
.market-frame-cover {
    position: absolute;
    z-index: 2;
    inset: 0;
    padding: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.75), transparent 35%),
        linear-gradient(145deg, #fff7a4, #ffe600);
}
.market-frame-cover.is-hidden { display: none; }
.market-symbol {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border: 4px solid rgba(45,42,0,.12);
    border-radius: 28px;
    color: #2d2a00;
    background: rgba(255,255,255,.72);
    box-shadow: 0 20px 45px rgba(94,81,0,.14);
    font-family: var(--heading);
    font-size: 2.6rem;
    font-weight: 900;
}
.market-frame-cover strong { font-size: 1.18rem; }
.market-frame-cover p { max-width: 360px; margin: 10px 0 22px; color: rgba(45,42,0,.68); font-size: .8rem; line-height: 1.55; }
.market-frame-footer {
    min-height: 76px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #e8edf3;
    background: #fff;
}
.market-frame-footer p { max-width: 520px; margin: 0; color: var(--muted); font-size: .62rem; line-height: 1.45; }
.market-frame-footer a { flex: 0 0 auto; color: var(--blue-2); font-size: .66rem; font-weight: 900; }

@media (max-width: 1120px) {
    .story-track { grid-auto-columns: minmax(300px, 43%); }
    .marketplace-grid { gap: 42px; }
}

@media (max-width: 960px) {
    .gallery-heading,
    .marketplace-grid { grid-template-columns: 1fr; }
    .gallery-heading,
    .marketplace-copy { text-align: center; }
    .gallery-heading > p,
    .marketplace-copy > p { margin-inline: auto; }
    .marketplace-copy .title-line { margin-inline: auto; }
    .market-benefits { max-width: 720px; margin-inline: auto; text-align: left; }
    .market-actions { justify-content: center; }
    .editorial-product-visual { min-height: 720px; }
    .story-track { grid-auto-columns: minmax(300px, 57%); }
}

@media (max-width: 680px) {
    .emergency-gallery,
    .marketplace-section { padding-block: 78px; }
    .gallery-heading h2,
    .marketplace-copy h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
    .editorial-product-visual { min-height: auto; padding-block: 15px; }
    .editorial-frame { width: min(100%, 480px); padding: 8px; border-radius: 24px; transform: none; }
    .tag-section .editorial-frame { transform: none; }
    .editorial-frame img { border-radius: 18px; }
    .editorial-chip { display: none; }
    .carousel-toolbar { align-items: flex-end; }
    .story-track { grid-auto-columns: 86%; gap: 14px; }
    .story-slide { border-radius: 22px; }
    .story-slide figcaption { min-height: 88px; }
    .market-actions .button { width: 100%; }
    .market-browser { border-radius: 21px; }
    .browser-address { font-size: .55rem; }
    .market-frame-stage,
    .market-frame-stage iframe { min-height: 510px; height: 510px; }
    .market-frame-cover { padding: 28px 20px; }
    .market-frame-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 1180px) {
    .header-cta { display: none; }
}

html, body { overflow-x: hidden; }
@supports (overflow: clip) {
    html, body { overflow-x: clip; }
}

/* ========================================================================== 
   Ajustes 2026-07-31: galería sin scroll, tienda oficial y WhatsApp
   ========================================================================== */

.button-whatsapp {
    color: #fff;
    border-color: #25d366;
    background: linear-gradient(135deg, #25d366, #19b957);
    box-shadow: 0 14px 30px rgba(37, 211, 102, .25);
}
.button-whatsapp:hover {
    background: linear-gradient(135deg, #2be06d, #1caf56);
    box-shadow: 0 18px 38px rgba(37, 211, 102, .34);
}
.button-wa-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-grid;
    place-items: center;
}
.button-wa-icon svg { width: 100%; height: 100%; }

/* Galería editorial completa: sin carrusel, sin cortes verticales */
.emergency-gallery {
    padding: 105px 0 115px;
    overflow: visible;
}
.emergency-story-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.emergency-story-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dfe7f0;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(18, 41, 64, .1);
    transition: transform .25s ease, box-shadow .25s ease;
}
.emergency-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 72px rgba(18, 41, 64, .14);
}
.emergency-story-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff, #f5f8fc);
}
.emergency-story-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 55px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(7, 25, 43, .05));
}
.emergency-story-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    object-position: center;
}
.emergency-story-card figcaption {
    min-height: 112px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 16px;
    border-top: 1px solid #edf1f5;
}
.emergency-story-card figcaption > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #167ce8, #38b6ff);
    box-shadow: 0 10px 22px rgba(22, 124, 232, .22);
    font-size: .68rem;
    font-weight: 900;
}
.emergency-story-card figcaption p,
.emergency-story-card figcaption strong,
.emergency-story-card figcaption small {
    display: block;
    margin: 0;
}
.emergency-story-card figcaption strong {
    color: #122940;
    font-size: .88rem;
}
.emergency-story-card figcaption small {
    margin-top: 7px;
    color: var(--muted);
    font-size: .69rem;
    line-height: 1.5;
}

/* Tienda oficial: reemplaza por completo el iframe bloqueado */
.marketplace-section {
    padding: 110px 0;
    overflow: hidden;
}
.marketplace-grid {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 52px;
    align-items: center;
}
.marketplace-copy,
.store-showcase { min-width: 0; }
.market-actions .button-whatsapp {
    min-height: 60px;
    padding-inline: 24px;
}
.store-showcase {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(56, 182, 255, .24), transparent 32%),
        linear-gradient(145deg, #0a2036 0%, #12395d 100%);
    box-shadow: 0 36px 85px rgba(18, 41, 64, .2);
}
.store-showcase::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: #ffe600;
}
.store-showcase-head {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.store-showcase-head > div:first-child span,
.store-showcase-head > div:first-child strong {
    display: block;
}
.store-showcase-head > div:first-child span {
    color: #7ed3ff;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
}
.store-showcase-head > div:first-child strong {
    margin-top: 8px;
    font-size: 1.35rem;
}
.ml-brand {
    min-width: 170px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 18px;
    color: #282400;
    background: #ffe600;
    box-shadow: 0 16px 34px rgba(255, 230, 0, .16);
}
.ml-handshake { font-size: 1.55rem; }
.ml-brand b {
    display: block;
    font-size: .88rem;
    line-height: .83;
    letter-spacing: -.04em;
}
.store-product-marquee {
    position: relative;
    z-index: 2;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    padding: 8px 0 14px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.store-product-track {
    width: max-content;
    display: flex;
    gap: 16px;
    will-change: transform;
    animation: storeProductScroll 38s linear infinite;
}
.store-product-group {
    flex: 0 0 auto;
    display: flex;
    gap: 16px;
}
.store-product-marquee:hover .store-product-track,
.store-product-marquee:focus-within .store-product-track {
    animation-play-state: paused;
}
.store-mini-card {
    width: 258px;
    flex: 0 0 258px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    color: #102840;
    background: #fff;
    box-shadow: 0 18px 38px rgba(2, 14, 27, .2);
    text-decoration: none;
    transform: translateZ(0);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.store-mini-card:hover,
.store-mini-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(126, 211, 255, .72);
    box-shadow: 0 25px 50px rgba(2, 14, 27, .28);
    outline: none;
}
.store-mini-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, #fff 0, #fff 45%, #eef4f9 100%);
    border-bottom: 1px solid #e7edf3;
}
.store-mini-image::after {
    content: "MERCADO LIBRE";
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 7px 9px;
    border-radius: 999px;
    color: #3c3600;
    background: #ffe600;
    box-shadow: 0 7px 18px rgba(137, 119, 0, .2);
    font-size: .48rem;
    font-weight: 900;
    letter-spacing: .08em;
}
.store-mini-image img {
    width: 100%;
    height: 100%;
    padding: 8px;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform .35s ease;
}
.store-mini-card:hover .store-mini-image img { transform: scale(1.035); }
.store-mini-body {
    min-height: 154px;
    padding: 17px 17px 18px;
    display: flex;
    flex-direction: column;
}
.store-mini-body small,
.store-mini-body strong,
.store-mini-body em,
.store-mini-body b {
    display: block;
    margin: 0;
}
.store-mini-body small {
    margin-bottom: 7px;
    color: #168ad2;
    font-size: .54rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.store-mini-body strong {
    color: #102840;
    font-size: .84rem;
    line-height: 1.2;
}
.store-mini-body em {
    margin-top: 8px;
    color: #6a7888;
    font-size: .62rem;
    font-style: normal;
    line-height: 1.48;
}
.store-mini-body b {
    margin-top: auto;
    padding-top: 13px;
    color: #0e8fe6;
    font-size: .61rem;
    font-weight: 900;
}
.store-mini-body b span { margin-left: 3px; }
@keyframes storeProductScroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-50% - 8px), 0, 0); }
}
.store-cta-row {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: rgba(3, 15, 27, .34);
}
.store-cta-row strong,
.store-cta-row span { display: block; }
.store-cta-row strong { font-size: .78rem; }
.store-cta-row span {
    max-width: 390px;
    margin-top: 5px;
    color: rgba(255, 255, 255, .62);
    font-size: .62rem;
    line-height: 1.45;
}
.store-cta-row .button { flex: 0 0 auto; }

/* Perfil: proporción estable y sin deformación */
.profile-section { padding: 92px 0; }
.profile-grid {
    grid-template-columns: .92fr 1.08fr;
    gap: 56px;
}
.profile-copy h2 {
    font-size: clamp(3.3rem, 5.2vw, 5.4rem);
    line-height: .94;
}
.profile-phone-card {
    position: relative;
    padding: 18px;
    overflow: hidden;
    border-radius: 30px;
}
.profile-phone-card::after {
    content: "PERFIL DE EMERGENCIA";
    position: absolute;
    left: 34px;
    bottom: 30px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    color: #fff;
    background: rgba(8, 31, 52, .72);
    backdrop-filter: blur(12px);
    font-size: .54rem;
    font-weight: 900;
    letter-spacing: .12em;
}
.profile-phone-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

/* WhatsApp flotante con identidad visual oficial */
.whatsapp-float {
    min-height: 58px;
    padding: 8px 20px 8px 9px;
    gap: 11px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    background: linear-gradient(135deg, #25d366, #19b957);
    box-shadow: 0 18px 45px rgba(22, 140, 67, .34);
    font-size: .72rem;
}
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float span {
    width: 40px;
    height: 40px;
    color: #25d366;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}
.whatsapp-float span svg { width: 25px; height: 25px; }

@media (max-width: 1120px) {
    .marketplace-grid { grid-template-columns: 1fr; }
    .store-showcase { max-width: 900px; margin-inline: auto; }
}

@media (max-width: 960px) {
    .emergency-story-grid { gap: 20px; }
    .profile-grid { grid-template-columns: 1fr; }
    .profile-phone-card { max-width: 860px; margin-inline: auto; }
}

@media (max-width: 760px) {
    .emergency-story-grid { grid-template-columns: 1fr; }
    .emergency-story-card { max-width: 620px; margin-inline: auto; }
    .store-mini-card { width: 230px; flex-basis: 230px; }
    .store-mini-body { min-height: 150px; }
    .store-product-track,
    .store-product-group { gap: 13px; }
    @keyframes storeProductScroll {
        from { transform: translate3d(0, 0, 0); }
        to { transform: translate3d(calc(-50% - 6.5px), 0, 0); }
    }
    .store-cta-row { align-items: stretch; flex-direction: column; }
    .store-cta-row .button { width: 100%; }
    .ml-brand { min-width: 150px; }
}

@media (max-width: 560px) {
    .emergency-gallery,
    .marketplace-section { padding-block: 72px; }
    .emergency-story-card figcaption { padding: 18px; }
    .store-showcase { padding: 22px 16px 16px; border-radius: 24px; }
    .store-showcase-head { align-items: flex-start; flex-direction: column; }
    .ml-brand { width: 100%; }
    .store-product-marquee {
        margin-inline: -4px;
        width: calc(100% + 8px);
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
    }
    .store-mini-card { width: min(78vw, 220px); flex-basis: min(78vw, 220px); }
    .store-mini-image::after { left: 10px; top: 10px; }
    .profile-phone-card { padding: 10px; border-radius: 22px; }
    .profile-phone-card::after { left: 22px; bottom: 20px; }
    .profile-phone-card img { border-radius: 16px; }
    .market-actions .button { width: 100%; }
    .whatsapp-float { width: 58px; padding: 8px; }
    .whatsapp-float strong { display: none; }
}

/* ========================================================================== 
   Tarjetas premium metalizadas
   ========================================================================== */
.swatch.rose { background: linear-gradient(135deg, #f4d0ca, #c7816d); }

.premium-metal-section {
    padding: 30px 0 115px;
    overflow: hidden;
}
.premium-metal-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 56px;
    align-items: start;
}
.premium-metal-copy > p {
    max-width: 590px;
    margin: 26px 0;
    color: var(--muted);
    line-height: 1.78;
}
.premium-metal-highlights {
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.premium-metal-highlights article {
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid #dae5ef;
    border-radius: 18px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 18px 35px rgba(18, 41, 64, .05);
}
.premium-metal-highlights article > span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #167ce8, #38b6ff);
    font-size: .58rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(22, 124, 232, .22);
}
.premium-metal-highlights p,
.premium-metal-highlights strong,
.premium-metal-highlights small {
    display: block;
    margin: 0;
}
.premium-metal-highlights strong { font-size: .77rem; }
.premium-metal-highlights small {
    margin-top: 5px;
    color: var(--muted);
    font-size: .65rem;
    line-height: 1.42;
}
.premium-color-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
}
.premium-metal-visuals {
    display: grid;
    gap: 24px;
}
.premium-guide-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid #dbe6ef;
    border-radius: 28px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 28px 64px rgba(18, 41, 64, .11);
}
.premium-guide-card img {
    width: 100%;
    height: auto;
    display: block;
}
.premium-tone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.premium-tone-card {
    overflow: hidden;
    border: 1px solid #dfe8f1;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(18, 41, 64, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.premium-tone-card:hover {
    transform: translateY(-4px);
    border-color: #b8dfff;
    box-shadow: 0 26px 56px rgba(18, 41, 64, .12);
}
.premium-tone-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    object-position: center;
    background: linear-gradient(180deg, #fff, #f3f6f9);
}
.premium-tone-card div {
    padding: 16px 17px 18px;
}
.premium-tone-card strong,
.premium-tone-card small {
    display: block;
    margin: 0;
}
.premium-tone-card strong { font-size: .83rem; color: #102840; }
.premium-tone-card small {
    margin-top: 5px;
    color: var(--muted);
    font-size: .65rem;
}

.store-product-track { animation-duration: 54s; }

@media (max-width: 1080px) {
    .premium-metal-grid { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 760px) {
    .premium-metal-section { padding: 18px 0 80px; }
    .premium-metal-highlights,
    .premium-color-list,
    .premium-tone-grid { grid-template-columns: 1fr; }
    .premium-guide-card { border-radius: 22px; }
    .premium-tone-card { border-radius: 18px; }
}

/* ========================================================================== 
   Correcciones finales: premium compacta, un solo carrusel y WhatsApp alineado
   ========================================================================== */

/* Botones e iconos de WhatsApp perfectamente centrados */
.button-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.1;
    white-space: nowrap;
}
.button-wa-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .15);
    line-height: 0;
}
.button-wa-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    transform: translateY(-.25px);
}
.whatsapp-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.whatsapp-float span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.whatsapp-float span svg {
    display: block;
    transform: translateY(-.25px);
}
.whatsapp-float strong {
    display: block;
    line-height: 1;
}

/* Sección premium más compacta y equilibrada */
.premium-metal-section {
    padding: 88px 0 94px;
}
.premium-top-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
}
.premium-metal-copy h2 {
    margin: 20px 0 0;
    font-size: clamp(3.1rem, 5vw, 5.2rem);
    line-height: .9;
}
.premium-metal-copy h2 em {
    margin-top: 10px;
    font-size: .58em;
}
.premium-metal-copy > p {
    max-width: 570px;
    margin: 24px 0;
}
.premium-quick-features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.premium-quick-features span {
    padding: 10px 13px;
    border: 1px solid #d6e3ee;
    border-radius: 999px;
    color: #173149;
    background: rgba(255,255,255,.82);
    font-size: .62rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(18, 41, 64, .05);
}
.premium-hero-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce6ef;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 28px 65px rgba(18, 41, 64, .12);
}
.premium-hero-card img {
    width: 100%;
    height: 410px;
    display: block;
    object-fit: cover;
    object-position: center;
}
.premium-hero-overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 17px;
    color: #fff;
    background: rgba(6, 24, 40, .78);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 32px rgba(0,0,0,.18);
}
.premium-hero-overlay span,
.premium-hero-overlay strong {
    display: block;
}
.premium-hero-overlay span {
    color: #71ceff;
    font-size: .53rem;
    font-weight: 900;
    letter-spacing: .13em;
}
.premium-hero-overlay strong {
    margin-top: 6px;
    font-size: .82rem;
}
.premium-color-showcase {
    margin-top: 42px;
    padding-top: 32px;
    border-top: 1px solid #dce6ef;
}
.premium-color-heading {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 40px;
    align-items: end;
}
.premium-color-heading h3 {
    margin: 8px 0 0;
    color: #112b43;
    font-size: clamp(1.5rem, 2.4vw, 2.25rem);
    line-height: 1.08;
}
.premium-color-heading > p {
    max-width: 520px;
    margin: 0 0 2px auto;
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.6;
}
.premium-tone-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.premium-tone-card {
    border-radius: 18px;
}
.premium-tone-card img {
    width: 100%;
    height: 145px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
}
.premium-tone-card > div {
    min-height: 78px;
    padding: 14px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
}
.premium-tone-card > div p,
.premium-tone-card > div strong,
.premium-tone-card > div small {
    display: block;
    margin: 0;
}
.premium-tone-card > div .swatch {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}
.premium-tone-card > div strong {
    font-size: .76rem;
}
.premium-tone-card > div small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .61rem;
}
.premium-order-strip {
    margin-top: 22px;
    min-height: 148px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 132px 1fr auto;
    align-items: center;
    gap: 22px;
    overflow: hidden;
    border: 1px solid #dce6ef;
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 18px 42px rgba(18, 41, 64, .07);
}
.premium-order-strip > img {
    width: 132px;
    height: 116px;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 15px;
}
.premium-order-strip div span,
.premium-order-strip div strong,
.premium-order-strip div small {
    display: block;
}
.premium-order-strip div span {
    color: var(--blue-2);
    font-size: .54rem;
    font-weight: 900;
    letter-spacing: .12em;
}
.premium-order-strip div strong {
    max-width: 620px;
    margin-top: 7px;
    color: #102840;
    font-size: .88rem;
    line-height: 1.35;
}
.premium-order-strip div small {
    max-width: 620px;
    margin-top: 6px;
    color: var(--muted);
    font-size: .65rem;
    line-height: 1.45;
}
.premium-order-strip .button {
    flex: 0 0 auto;
}

/* Un solo carrusel horizontal continuo */
.store-product-marquee {
    display: block;
    overflow: hidden;
}
.store-product-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: max-content;
    animation-duration: 46s;
}
.store-product-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
}

@media (max-width: 1080px) {
    .premium-top-grid { grid-template-columns: 1fr; gap: 34px; }
    .premium-hero-card { max-width: 860px; }
    .premium-hero-card img { height: 390px; }
    .premium-color-heading { grid-template-columns: 1fr; gap: 12px; }
    .premium-color-heading > p { margin-left: 0; }
    .premium-tone-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    .premium-metal-section { padding: 72px 0 78px; }
    .premium-metal-copy h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
    .premium-hero-card img { height: 290px; }
    .premium-hero-overlay { left: 12px; right: 12px; bottom: 12px; padding: 13px 14px; }
    .premium-color-showcase { margin-top: 32px; padding-top: 26px; }
    .premium-tone-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 78vw);
        gap: 13px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    .premium-tone-grid::-webkit-scrollbar { display: none; }
    .premium-tone-card { scroll-snap-align: start; }
    .premium-tone-card img { height: 130px; }
    .premium-order-strip {
        grid-template-columns: 92px 1fr;
        gap: 14px;
        padding: 12px;
    }
    .premium-order-strip > img { width: 92px; height: 96px; }
    .premium-order-strip .button { grid-column: 1 / -1; width: 100%; }
    .button-whatsapp { white-space: normal; }
}
