:root {
  --yellow: #f4c400;
  --yellow-bright: #ffd21a;
  --navy: #082b4c;
  --navy-2: #061f37;
  --blue: #0f5689;
  --ink: #14212b;
  --muted: #65717b;
  --paper: #fffdf7;
  --white: #ffffff;
  --line: #e8e4da;
  --green: #25d366;
  --shadow: 0 22px 70px rgba(8, 43, 76, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Manrope", system-ui, sans-serif; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: -9999px; z-index: 9999; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 10px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,253,247,.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(8,43,76,.08); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 235px; }
.brand-mark { width: 48px; height: 48px; display: grid; place-items: center; background: var(--yellow); color: var(--navy); border-radius: 14px; transform: rotate(-3deg); }
.brand-mark svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.brand-text { display: flex; flex-direction: column; line-height: .92; font-family: "Montserrat", sans-serif; color: var(--navy); }
.brand-text strong { font-size: .64rem; letter-spacing: .12em; }
.brand-text b { font-size: 1.12rem; letter-spacing: .01em; }
.brand-text small { margin-top: 5px; font-family: "Manrope", sans-serif; font-size: .55rem; letter-spacing: .24em; font-weight: 800; color: var(--blue); }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: .92rem; font-weight: 700; color: #324553; }
.main-nav > a:not(.btn) { position: relative; }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--yellow); transition: right .25s ease; }
.main-nav > a:not(.btn):hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { width: 26px; height: 2px; display: block; margin: 5px; background: var(--navy); transition: .2s; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 25px; border-radius: 999px; font-weight: 800; letter-spacing: -.01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; border: 2px solid transparent; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--navy); box-shadow: 0 12px 30px rgba(244,196,0,.25); }
.btn-primary:hover { background: var(--yellow-bright); box-shadow: 0 15px 36px rgba(244,196,0,.34); }
.btn-dark { background: var(--navy); color: white; box-shadow: 0 12px 28px rgba(8,43,76,.2); }
.btn-dark:hover { background: var(--blue); }
.btn-ghost { border-color: rgba(8,43,76,.18); color: var(--navy); background: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-small { min-height: 44px; padding: 0 20px; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 8% 0%, rgba(244,196,0,.20), transparent 30%), linear-gradient(180deg, #fffdf7 0%, #fff9e8 100%); }
.hero-grid { min-height: 710px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 56px; padding-top: 70px; padding-bottom: 76px; }
.eyebrow { margin: 0 0 15px; color: var(--blue); font-size: .75rem; letter-spacing: .18em; font-weight: 900; }
.hero h1 { margin: 0; max-width: 760px; font-family: "Montserrat", sans-serif; font-size: clamp(3.15rem, 6vw, 5.7rem); line-height: .96; letter-spacing: -.055em; color: var(--navy); }
.hero h1 span { display: block; color: var(--blue); position: relative; width: fit-content; }
.hero h1 span::after { content: ""; position: absolute; left: 1%; right: -2%; bottom: -10px; height: 14px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='20' viewBox='0 0 400 20'%3E%3Cpath d='M3 14C110 2 286 2 397 10' stroke='%23f4c400' stroke-width='9' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat; }
.hero-lead { max-width: 650px; margin: 34px 0 0; font-size: 1.17rem; color: #4e5d67; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-highlights { display: flex; gap: 18px; margin-top: 42px; }
.hero-highlights div { min-width: 138px; padding-right: 18px; border-right: 1px solid rgba(8,43,76,.15); }
.hero-highlights div:last-child { border-right: 0; }
.hero-highlights strong, .hero-highlights span { display: block; }
.hero-highlights strong { font-size: 1rem; color: var(--navy); }
.hero-highlights span { font-size: .78rem; color: var(--muted); }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.store-card { position: relative; z-index: 2; width: min(470px, 88%); filter: drop-shadow(0 30px 38px rgba(8,43,76,.22)); transform: perspective(900px) rotateY(-4deg) rotateX(1deg); }
.store-sign { min-height: 132px; display: flex; justify-content: center; align-items: center; gap: 16px; padding: 20px; background: var(--yellow); color: var(--navy); border: 10px solid var(--navy); border-bottom-width: 7px; border-radius: 16px 16px 4px 4px; box-shadow: inset 0 0 0 4px rgba(255,255,255,.5); }
.store-sign .mini-bulb { width: 62px; height: 62px; border: 5px solid currentColor; border-radius: 50% 50% 45% 45%; display: grid; place-items: center; font-size: 1.9rem; }
.store-sign div { display: flex; flex-direction: column; line-height: .93; font-family: "Montserrat", sans-serif; }
.store-sign b { font-size: 1.15rem; letter-spacing: .11em; }
.store-sign strong { font-size: 2.15rem; letter-spacing: -.03em; }
.store-sign small { margin-top: 8px; font-family: "Manrope", sans-serif; letter-spacing: .32em; font-weight: 900; text-align: center; }
.awning { height: 54px; display: grid; grid-template-columns: repeat(5, 1fr); background: #fff; border-inline: 8px solid var(--navy); }
.awning span:nth-child(odd) { background: var(--navy); border-radius: 0 0 15px 15px; }
.awning span:nth-child(even) { background: var(--yellow); border-radius: 0 0 15px 15px; }
.store-window { height: 278px; display: grid; grid-template-columns: 1fr 98px 1fr; gap: 10px; padding: 25px 22px 20px; background: #cfefff; border: 8px solid var(--navy); border-top: 0; border-radius: 0 0 16px 16px; overflow: hidden; }
.shelf { align-self: end; height: 155px; border: 5px solid var(--navy); border-bottom-width: 12px; display: flex; align-items: end; justify-content: center; gap: 8px; padding: 12px; background: rgba(255,255,255,.6); }
.shelf i { display: block; width: 28px; background: var(--yellow); border: 3px solid var(--navy); border-radius: 8px 8px 2px 2px; }
.shelf i:nth-child(1) { height: 58px; }.shelf i:nth-child(2) { height: 82px; background: #f49b3f; }.shelf i:nth-child(3) { height: 68px; background: #7fc4e8; }
.door { position: relative; height: 224px; align-self: end; background: #eaf8ff; border: 5px solid var(--navy); }
.door::after { content: ""; position: absolute; right: 10px; top: 50%; width: 7px; height: 7px; background: var(--navy); border-radius: 50%; }
.door span { position: absolute; top: 30px; left: 50%; transform: translateX(-50%) rotate(-2deg); padding: 4px 9px; background: var(--yellow); border: 2px solid var(--navy); font-size: .65rem; font-weight: 900; }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 17px; background: #fff; border: 1px solid rgba(8,43,76,.1); border-radius: 14px; box-shadow: var(--shadow); color: var(--navy); font-size: .82rem; }
.float-card span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #eaf8ef; color: #0a8a3f; }
.float-card-one { left: 0; top: 105px; animation: float 4s ease-in-out infinite; }
.float-card-two { right: 0; bottom: 68px; animation: float 4s 1s ease-in-out infinite; }
.hero-shape { position: absolute; border-radius: 50%; opacity: .85; }
.shape-one { width: 420px; height: 420px; background: var(--yellow); right: 0; top: 34px; }
.shape-two { width: 160px; height: 160px; border: 24px solid var(--blue); left: 22px; bottom: 15px; }
@keyframes float { 50% { transform: translateY(-10px) rotate(1deg); } }

.ticker { width: 100%; overflow: hidden; background: var(--navy); color: #fff; transform: rotate(-.6deg) scale(1.01); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 18px 0; animation: ticker 28s linear infinite; font-family: "Montserrat", sans-serif; font-size: .78rem; letter-spacing: .1em; font-weight: 800; }
.ticker b { color: var(--yellow); font-size: 1.3rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 112px 0; }
.section-heading { max-width: 680px; margin-bottom: 46px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section h2 { margin: 0; color: var(--navy); font-family: "Montserrat", sans-serif; font-size: clamp(2.15rem, 4vw, 3.65rem); line-height: 1.05; letter-spacing: -.04em; }
.section-heading p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 1.02rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { position: relative; min-height: 310px; padding: 30px 25px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 14px 40px rgba(8,43,76,.06); transition: transform .25s, box-shadow .25s; }
.step-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.step-number { position: absolute; right: 20px; top: 14px; color: rgba(8,43,76,.09); font-family: "Montserrat", sans-serif; font-size: 3.2rem; font-weight: 900; }
.icon-box { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 46px; border-radius: 16px; background: #fff5c6; font-size: 1.8rem; }
.step-card h3, .service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.18rem; }
.step-card p, .service-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.section-dark { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.section-dark::after { content: ""; position: absolute; width: 460px; height: 460px; border: 85px solid rgba(244,196,0,.08); border-radius: 50%; right: -200px; bottom: -220px; }
.benefit-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.eyebrow.light { color: var(--yellow); }
.section-dark h2 { color: #fff; }
.benefit-copy > p:not(.eyebrow) { color: #c6d2dc; font-size: 1.02rem; margin: 24px 0; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--yellow); font-weight: 800; }
.text-link span { transition: transform .2s; }.text-link:hover span { transform: translateX(5px); }
.benefit-list { display: grid; }
.benefit-list > div { display: grid; grid-template-columns: 65px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.benefit-list > div:last-child { border-bottom: 0; }
.benefit-list span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--navy); font-family: "Montserrat", sans-serif; font-weight: 900; }
.benefit-list p { margin: 0; color: #afc0cc; }
.benefit-list strong { display: block; margin-bottom: 4px; color: #fff; font-size: 1.08rem; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 260px; padding: 30px; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--line); transition: transform .25s, border .25s; }
.service-card:hover { transform: translateY(-6px); border-color: var(--yellow); }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 36px; background: var(--navy); border-radius: 16px; font-size: 1.55rem; }

.entrepreneur-banner { padding-top: 20px; padding-bottom: 20px; }
.banner-inner { position: relative; min-height: 310px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 58px; background: var(--yellow); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 26px 60px rgba(244,196,0,.2); }
.banner-inner::before, .banner-inner::after { content: ""; position: absolute; border-radius: 50%; border: 40px solid rgba(255,255,255,.28); }
.banner-inner::before { width: 230px; height: 230px; right: 210px; top: -140px; }
.banner-inner::after { width: 130px; height: 130px; left: -60px; bottom: -85px; }
.banner-inner > * { position: relative; z-index: 1; }
.banner-inner h2 { max-width: 760px; font-size: clamp(2rem, 3.6vw, 3.3rem); }
.banner-inner .eyebrow { color: var(--navy); }
.banner-inner .btn { flex: 0 0 auto; }

.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: stretch; }
.location-card { padding: 48px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.contact-row { display: grid; grid-template-columns: 46px 1fr; gap: 15px; margin-top: 26px; }
.contact-row > span { width: 44px; height: 44px; display: grid; place-items: center; background: #fff5c6; border-radius: 13px; }
.contact-row strong { color: var(--navy); }.contact-row p { margin: 2px 0 0; color: var(--muted); }.contact-row a { color: var(--blue); font-weight: 800; }
.location-actions { margin-top: 34px; }
.map-art { position: relative; min-height: 560px; background: #d7ebdc; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #c3d9c8; }
.map-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(8,43,76,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(8,43,76,.06) 1px, transparent 1px); background-size: 48px 48px; }
.map-road { position: absolute; background: #fffdf7; box-shadow: 0 0 0 2px #c3c8c2, inset 0 0 0 2px white; }
.road-one { width: 760px; height: 80px; left: -80px; top: 220px; transform: rotate(-22deg); }
.road-two { width: 110px; height: 720px; right: 135px; top: -70px; transform: rotate(13deg); }
.road-three { width: 520px; height: 54px; left: 90px; bottom: 80px; transform: rotate(8deg); }
.map-pin { position: absolute; left: 52%; top: 43%; width: 66px; height: 66px; background: var(--yellow); border: 8px solid var(--navy); border-radius: 50% 50% 50% 0; transform: translate(-50%,-50%) rotate(-45deg); box-shadow: 0 18px 35px rgba(8,43,76,.25); }
.map-pin span { position: absolute; inset: 14px; background: var(--navy); border-radius: 50%; }
.map-label { position: absolute; left: 52%; top: 56%; transform: translateX(-50%); min-width: 250px; padding: 15px 18px; background: #fff; border: 2px solid var(--navy); border-radius: 14px; box-shadow: var(--shadow); text-align: center; }
.map-label b, .map-label small { display: block; }.map-label b { color: var(--navy); font-size: .82rem; }.map-label small { color: var(--muted); }

.faq-section { background: #f3f6f7; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; }
.accordion details { background: #fff; border: 1px solid #dfe5e8; border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.accordion summary { position: relative; padding: 21px 58px 21px 22px; list-style: none; cursor: pointer; color: var(--navy); font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #fff5c6; color: var(--navy); font-size: 1.2rem; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.site-footer { padding: 72px 0 25px; background: var(--navy-2); color: #c2ced8; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 50px; padding-bottom: 50px; }
.footer-brand .brand-mark { background: var(--yellow); }.footer-brand .brand-text { color: #fff; }
.footer-grid > div:first-child p { max-width: 360px; }
.footer-grid h3 { margin: 0 0 18px; color: #fff; font-size: .95rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 999; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--green); box-shadow: 0 12px 30px rgba(16,100,50,.35); transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.08); }.whatsapp-float svg { width: 32px; fill: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 88px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }.main-nav > a { padding: 10px; }.main-nav .btn { margin-top: 8px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { text-align: center; }.hero h1, .hero h1 span, .hero-lead { margin-inline: auto; }.hero-actions, .hero-highlights { justify-content: center; }
  .hero-visual { min-height: 470px; }
  .steps-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid, .location-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-wrap { min-height: 76px; }.main-nav { top: 76px; left: 14px; right: 14px; }
  .brand { min-width: 0; }.brand-mark { width: 42px; height: 42px; }.brand-text b { font-size: .94rem; }.brand-text strong { font-size: .54rem; }
  .hero-grid { min-height: auto; gap: 30px; padding-top: 50px; padding-bottom: 45px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }.hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }.hero-actions .btn { width: 100%; }
  .hero-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; text-align: left; }
  .hero-highlights div { min-width: 0; padding: 13px; background: rgba(255,255,255,.75); border: 1px solid rgba(8,43,76,.08); border-radius: 12px; }
  .hero-highlights div:last-child { grid-column: 1 / -1; }
  .hero-visual { min-height: 370px; }.store-card { width: 98%; }.store-sign { min-height: 100px; border-width: 7px; }.store-sign .mini-bulb { width: 45px; height: 45px; }.store-sign b { font-size: .72rem; }.store-sign strong { font-size: 1.35rem; }.store-sign small { font-size: .45rem; }.awning { height: 42px; }.store-window { height: 205px; grid-template-columns: 1fr 70px 1fr; padding: 15px 12px; }.shelf { height: 110px; padding: 6px; }.door { height: 170px; }.float-card { font-size: .7rem; padding: 8px 10px; }.float-card-one { top: 65px; left: -5px; }.float-card-two { bottom: 25px; right: -5px; }.shape-one { width: 310px; height: 310px; }.shape-two { width: 100px; height: 100px; border-width: 16px; }
  .section { padding: 78px 0; }.steps-grid, .services-grid { grid-template-columns: 1fr; }.step-card { min-height: 270px; }
  .benefit-list > div { grid-template-columns: 52px 1fr; }.benefit-list span { width: 44px; height: 44px; }
  .banner-inner { padding: 35px 27px; }.banner-inner .btn { width: 100%; }
  .location-card { padding: 30px 24px; }.map-art { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }.footer-bottom { flex-direction: column; }
}

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

/* Catálogo de productos */
.products-section { background: #f3f6f7; overflow: hidden; }
.products-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; }
.product-heading { margin-bottom: 0; }
.purchase-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.purchase-modes > div { display: grid; grid-template-columns: 46px 1fr; gap: 12px; align-items: center; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.purchase-modes > div > span { width: 44px; height: 44px; display: grid; place-items: center; background: #fff5c6; border-radius: 13px; font-size: 1.25rem; }
.purchase-modes p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.45; }
.purchase-modes strong { display: block; color: var(--navy); font-size: .92rem; }
.product-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 35px 0 24px; }
.filter-btn { appearance: none; padding: 10px 18px; border: 1px solid #ced8de; border-radius: 999px; background: #fff; color: var(--navy); font: inherit; font-size: .82rem; font-weight: 800; cursor: pointer; transition: .2s ease; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.product-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid #dce4e8; border-radius: 22px; transition: transform .25s ease, box-shadow .25s ease, border .25s ease; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(244,196,0,.8); box-shadow: 0 18px 42px rgba(8,43,76,.1); }
.product-card[hidden] { display: none; }
.product-art { position: relative; min-height: 170px; display: grid; place-items: center; overflow: hidden; background: var(--yellow); color: var(--navy); }
.product-art::before, .product-art::after { content: ""; position: absolute; border-radius: 50%; border: 22px solid rgba(255,255,255,.36); }
.product-art::before { width: 125px; height: 125px; top: -74px; right: -42px; }
.product-art::after { width: 84px; height: 84px; left: -44px; bottom: -54px; }
.product-art > span { position: relative; z-index: 1; display: grid; place-items: center; width: 78px; height: 78px; background: var(--navy); color: var(--yellow); border-radius: 24px; box-shadow: 0 14px 28px rgba(8,43,76,.2); font-family: "Montserrat", sans-serif; font-size: 2rem; font-weight: 900; transform: rotate(-4deg); }
.product-art > b { position: absolute; left: 18px; bottom: 14px; z-index: 1; font-family: "Montserrat", sans-serif; font-size: .67rem; letter-spacing: .12em; }
.product-art-cover { background: #ffd73d; }.product-art-earbuds { background: #e3edf1; }.product-art-power { background: #c9e6d2; }.product-art-mic { background: #dce1f7; }.product-art-accessories { background: #fde4c8; }.product-art-watch { background: #eadcf3; }.product-art-more { background: var(--navy); color: #fff; }
.product-art-more > span { background: var(--yellow); color: var(--navy); }.product-art-more::before, .product-art-more::after { border-color: rgba(244,196,0,.17); }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.product-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 12px; }
.product-tags span { padding: 5px 9px; background: #eef3f5; border-radius: 999px; color: var(--muted); font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.product-tags .tag-wholesale { background: #fff3b4; color: #705900; }
.product-card h3 { margin: 0 0 8px; font-size: 1.08rem; line-height: 1.28; }
.product-card p { margin: 0 0 18px; color: var(--muted); font-size: .83rem; line-height: 1.65; }
.price-list { margin-top: auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-list > div { display: flex; justify-content: space-between; gap: 10px; align-items: center; padding: 10px 0; }
.price-list > div + div { border-top: 1px dashed #dbe2e6; }
.price-list span { color: var(--muted); font-size: .72rem; }
.price-list strong { color: var(--navy); font-size: .82rem; text-align: right; }
.product-link { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 16px; color: var(--blue); font-size: .8rem; font-weight: 800; }
.product-link span { font-size: 1.1rem; transition: transform .2s; }.product-link:hover span { transform: translateX(4px); }
.product-card-featured { border-color: var(--navy); }
.catalog-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 26px; padding: 28px 30px; background: var(--yellow); border-radius: 20px; }
.catalog-cta > div { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: center; }
.catalog-icon { width: 52px; height: 52px; display: grid; place-items: center; background: #fff; border-radius: 15px; font-size: 1.4rem; }
.catalog-cta p { max-width: 690px; margin: 0; color: rgba(8,43,76,.78); font-size: .9rem; }.catalog-cta strong { display: block; color: var(--navy); font-size: 1rem; }
.catalog-cta .btn { flex: 0 0 auto; }
.inventory-note { margin: 14px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 980px) {
  .products-top { grid-template-columns: 1fr; gap: 28px; }
  .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .purchase-modes { grid-template-columns: 1fr; }
  .product-filters { margin-top: 27px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-art { min-height: 190px; }
  .catalog-cta { align-items: stretch; flex-direction: column; padding: 25px 22px; }
  .catalog-cta > div { grid-template-columns: 44px 1fr; }.catalog-icon { width: 44px; height: 44px; }
  .catalog-cta .btn { width: 100%; }
}


/* =========================================================
   Optimización móvil vertical (teléfonos de 320 a 760 px)
   ========================================================= */
html {
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
section[id] { scroll-margin-top: 88px; }

@media (max-width: 760px) {
  :root {
    --radius-lg: 22px;
    --radius-md: 16px;
    --shadow: 0 16px 38px rgba(8, 43, 76, .13);
  }

  body {
    font-size: 16px;
    line-height: 1.55;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .container { width: calc(100% - 32px); }
  .section { padding: 64px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading.centered { text-align: left; }
  .section h2,
  .banner-inner h2 {
    font-size: clamp(1.95rem, 8.7vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    overflow-wrap: anywhere;
  }
  .section-heading p:last-child,
  .benefit-copy > p:not(.eyebrow) {
    margin-top: 15px;
    font-size: .98rem;
    line-height: 1.65;
  }
  .eyebrow {
    margin-bottom: 11px;
    font-size: .69rem;
    line-height: 1.35;
    letter-spacing: .14em;
  }

  /* Encabezado y menú táctil */
  .site-header { padding-top: env(safe-area-inset-top); }
  .nav-wrap { min-height: 72px; gap: 12px; }
  .brand { gap: 9px; min-width: 0; max-width: calc(100% - 58px); }
  .brand-mark { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 12px; }
  .brand-mark svg { width: 28px; }
  .brand-text { min-width: 0; }
  .brand-text strong { font-size: .54rem; letter-spacing: .1em; }
  .brand-text b { font-size: .95rem; white-space: nowrap; }
  .brand-text small { margin-top: 4px; font-size: .47rem; letter-spacing: .18em; }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    padding: 7px;
    border: 1px solid rgba(8,43,76,.1);
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
  }
  .menu-toggle span { width: 23px; margin: 3px; }
  .main-nav {
    position: fixed;
    top: calc(78px + env(safe-area-inset-top));
    left: 16px;
    right: 16px;
    z-index: 1100;
    max-height: calc(100dvh - 98px - env(safe-area-inset-top));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px;
    border-radius: 18px;
  }
  .main-nav > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 11px 13px;
    border-radius: 11px;
  }
  .main-nav > a:not(.btn):hover,
  .main-nav > a:not(.btn):focus-visible { background: #fff8dc; }
  .main-nav .btn { width: 100%; margin-top: 5px; }

  /* Portada: lectura clara y sin elementos encimados */
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .hero-copy { text-align: left; }
  .hero h1,
  .hero h1 span,
  .hero-lead { margin-inline: 0; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.15rem);
    line-height: 1;
    letter-spacing: -.048em;
    overflow-wrap: anywhere;
  }
  .hero h1 span { width: auto; display: inline; }
  .hero h1 span::after { bottom: -7px; height: 10px; }
  .hero-lead {
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.65;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .hero-actions .btn,
  .location-actions .btn,
  .banner-inner .btn,
  .catalog-cta .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
  }
  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 26px;
    text-align: center;
  }
  .hero-highlights div,
  .hero-highlights div:last-child {
    min-width: 0;
    grid-column: auto;
    padding: 11px 7px;
    border: 1px solid rgba(8,43,76,.09);
    border-radius: 13px;
    background: rgba(255,255,255,.78);
  }
  .hero-highlights strong { font-size: .79rem; line-height: 1.25; }
  .hero-highlights span { margin-top: 3px; font-size: .65rem; line-height: 1.25; }
  .hero-visual { min-height: 300px; }
  .store-card {
    width: min(330px, 96%);
    transform: none;
    filter: drop-shadow(0 20px 25px rgba(8,43,76,.18));
  }
  .store-sign { min-height: 86px; gap: 10px; padding: 12px; border-width: 6px; }
  .store-sign .mini-bulb { width: 40px; height: 40px; border-width: 3px; font-size: 1.25rem; }
  .store-sign b { font-size: .66rem; }
  .store-sign strong { font-size: 1.25rem; }
  .store-sign small { margin-top: 5px; font-size: .4rem; }
  .awning { height: 34px; border-inline-width: 6px; }
  .store-window {
    height: 174px;
    grid-template-columns: 1fr 62px 1fr;
    gap: 6px;
    padding: 12px 9px 10px;
    border-width: 6px;
    border-top: 0;
  }
  .shelf { height: 91px; gap: 4px; padding: 5px; border-width: 3px; border-bottom-width: 8px; }
  .shelf i { width: 18px; border-width: 2px; }
  .shelf i:nth-child(1) { height: 35px; }
  .shelf i:nth-child(2) { height: 49px; }
  .shelf i:nth-child(3) { height: 41px; }
  .door { height: 144px; border-width: 3px; }
  .door span { top: 22px; font-size: .52rem; }
  .float-card { display: none; }
  .shape-one { width: 245px; height: 245px; right: 4%; top: 28px; }
  .shape-two { width: 78px; height: 78px; left: 1%; bottom: 15px; border-width: 13px; }

  /* En móvil todos los servicios del cintillo quedan visibles */
  .ticker { transform: none; }
  .ticker-track {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    padding: 14px 16px;
    animation: none;
    font-size: .62rem;
    line-height: 1.2;
    letter-spacing: .06em;
  }
  .ticker-track span {
    padding: 7px 9px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
  }
  .ticker-track b { display: none; }
  .ticker-track span:nth-of-type(n+6) { display: none; }

  /* Catálogo */
  .products-top { gap: 22px; }
  .purchase-modes { grid-template-columns: 1fr; gap: 10px; }
  .purchase-modes > div {
    grid-template-columns: 42px 1fr;
    gap: 11px;
    padding: 14px;
    border-radius: 14px;
  }
  .purchase-modes > div > span { width: 40px; height: 40px; border-radius: 11px; }
  .purchase-modes p { font-size: .82rem; }
  .purchase-modes strong { font-size: .94rem; }
  .product-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 25px 0 18px;
  }
  .filter-btn {
    width: 100%;
    min-height: 43px;
    padding: 8px 9px;
    border-radius: 12px;
    font-size: .75rem;
    line-height: 1.2;
  }
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-card { border-radius: 18px; }
  .product-card:hover { transform: none; }
  .product-art { min-height: 132px; }
  .product-art > span { width: 66px; height: 66px; border-radius: 20px; font-size: 1.65rem; }
  .product-art > b { left: 15px; bottom: 11px; }
  .product-body { padding: 18px; }
  .product-tags { margin-bottom: 9px; }
  .product-tags span { font-size: .61rem; }
  .product-card h3 { font-size: 1.08rem; }
  .product-card p { margin-bottom: 14px; font-size: .88rem; line-height: 1.6; }
  .price-list > div { min-height: 42px; padding: 9px 0; }
  .price-list span { font-size: .76rem; }
  .price-list strong { font-size: .85rem; }
  .product-link {
    min-height: 43px;
    margin-top: 10px;
    font-size: .84rem;
  }
  .catalog-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
    padding: 22px 18px;
    border-radius: 18px;
  }
  .catalog-cta > div { grid-template-columns: 42px 1fr; gap: 12px; }
  .catalog-icon { width: 42px; height: 42px; border-radius: 12px; }
  .catalog-cta p { font-size: .87rem; line-height: 1.55; }
  .inventory-note { font-size: .74rem; line-height: 1.5; }

  /* Pasos y servicios en tarjetas horizontales más legibles */
  .steps-grid,
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card,
  .service-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 15px;
    row-gap: 4px;
    align-items: start;
    padding: 20px 18px;
    border-radius: 16px;
  }
  .step-card:hover,
  .service-card:hover { transform: none; }
  .icon-box,
  .service-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 14px;
    font-size: 1.4rem;
  }
  .step-card h3,
  .service-card h3 {
    grid-column: 2;
    margin: 1px 36px 2px 0;
    font-size: 1.03rem;
    line-height: 1.3;
  }
  .step-card p,
  .service-card p {
    grid-column: 2;
    font-size: .88rem;
    line-height: 1.55;
  }
  .step-number { right: 15px; top: 11px; font-size: 2rem; }

  /* Beneficios */
  .benefit-grid,
  .location-grid,
  .faq-grid { gap: 34px; }
  .section-dark::after { width: 260px; height: 260px; border-width: 45px; }
  .text-link { min-height: 44px; font-size: .91rem; line-height: 1.35; }
  .benefit-list > div {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 0;
  }
  .benefit-list span { width: 42px; height: 42px; font-size: .78rem; }
  .benefit-list p { font-size: .89rem; line-height: 1.55; }
  .benefit-list strong { font-size: 1rem; }

  /* Llamado, ubicación, mapa y preguntas */
  .entrepreneur-banner { padding-top: 12px; padding-bottom: 12px; }
  .banner-inner {
    min-height: 0;
    align-items: stretch;
    gap: 23px;
    padding: 30px 20px;
    border-radius: 20px;
  }
  .banner-inner::before { right: -90px; top: -125px; }
  .location-card { padding: 26px 20px; border-radius: 20px; }
  .contact-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 20px;
  }
  .contact-row > span { width: 40px; height: 40px; border-radius: 11px; }
  .contact-row p { line-height: 1.55; overflow-wrap: anywhere; }
  .location-actions { margin-top: 26px; }
  .map-art { min-height: 300px; border-radius: 20px; }
  .road-one { top: 118px; }
  .road-two { right: 68px; }
  .road-three { bottom: 40px; }
  .map-pin { width: 54px; height: 54px; border-width: 6px; }
  .map-pin span { inset: 12px; }
  .map-label {
    top: 58%;
    min-width: 0;
    width: calc(100% - 52px);
    padding: 12px 10px;
  }
  .accordion details { border-radius: 13px; margin-bottom: 10px; }
  .accordion summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 16px 52px 16px 17px;
    font-size: .91rem;
    line-height: 1.4;
  }
  .accordion summary::after { right: 15px; }
  .accordion details p { padding: 0 17px 18px; font-size: .89rem; line-height: 1.6; }

  /* Pie de página y botón flotante */
  .site-footer { padding: 54px 0 calc(24px + env(safe-area-inset-bottom)); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 34px; }
  .footer-grid > div:not(:first-child) { gap: 5px; }
  .footer-grid > div:not(:first-child) a,
  .footer-grid > div:not(:first-child) span {
    min-height: 38px;
    display: flex;
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg { width: 29px; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 24px); }
  .hero h1 { font-size: clamp(2.05rem, 11.5vw, 2.75rem); }
  .hero-highlights { grid-template-columns: 1fr; }
  .hero-highlights div,
  .hero-highlights div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
    padding: 10px 13px;
  }
  .hero-highlights span { margin-top: 0; text-align: right; }
  .product-filters { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .map-label b { font-size: .73rem; }
}

@media (max-width: 340px) {
  .brand-text strong { display: none; }
  .brand-text b { font-size: .9rem; }
  .hero h1 { font-size: 2rem; }
  .section h2,
  .banner-inner h2 { font-size: 1.85rem; }
  .main-nav { left: 10px; right: 10px; }
  .store-card { width: 100%; }
}

@media (max-width: 760px) { body.menu-open { overflow: hidden; } }

/* BUILD EC-MOBILE-FINAL-20260713 — override final */
@media screen and (max-width: 820px) {
  html, body { width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
  .hero-grid { display: block !important; min-width: 0 !important; max-width: none !important; }
  .hero-copy, .hero-copy > * { min-width: 0 !important; max-width: 100% !important; }
  .hero h1 { white-space: normal !important; overflow-wrap: break-word !important; word-break: normal !important; }
}
