:root {
    --blue-950: #041c50;
    --blue-900: #06296f;
    --blue-800: #073b96;
    --blue-700: #0756c7;
    --lime: #70c900;
    --lime-dark: #4b9800;
    --ink: #0d1830;
    --muted: #5e687b;
    --line: #dfe5ec;
    --paper: #ffffff;
    --soft: #f4f7fb;
    --radius: 22px;
    --shadow: 0 20px 50px rgba(6, 41, 111, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 999; left: 18px; top: -80px; background: white; padding: 12px 18px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 18px; }

.announcement { color: #fff; background: var(--blue-950); font-size: 13px; letter-spacing: .02em; }
.announcement-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; }
.announcement a { color: #c8ff84; font-weight: 700; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(223,229,236,.9); backdrop-filter: blur(15px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 20px rgba(5,57,145,.16); }
.brand span { display: grid; line-height: 1.05; }
.brand strong { color: var(--blue-900); font-size: 20px; letter-spacing: -.04em; }
.brand small { margin-top: 6px; color: var(--muted); text-transform: uppercase; font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 700; color: #39445a; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--lime); transition: right .25s ease; }
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { right: 0; }
.nav-cta { padding: 13px 20px; border-radius: 999px; color: white; background: var(--blue-800); box-shadow: 0 10px 24px rgba(7,59,150,.2); }
.nav-cta:hover { background: var(--blue-700); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 12px; background: var(--soft); padding: 12px; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--blue-900); transition: .2s ease; }

.hero { min-height: 680px; position: relative; display: flex; align-items: center; overflow: hidden; background: #edf2f8; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background-image: url('/assets/hero-products.jpg'); background-size: cover; background-position: center; transform: scale(1.003); }
.hero-shade { background: linear-gradient(90deg, rgba(248,250,253,.98) 0%, rgba(248,250,253,.93) 35%, rgba(248,250,253,.38) 56%, rgba(248,250,253,0) 76%); }
.hero-content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 70px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: var(--blue-800); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.eyebrow span { width: 32px; height: 3px; border-radius: 2px; background: var(--lime); }
.hero h1 { max-width: 650px; margin: 0; color: var(--blue-950); font-size: clamp(48px, 6vw, 82px); line-height: .97; letter-spacing: -.065em; font-weight: 850; }
.hero h1 em { display: inline-block; margin-top: 12px; color: var(--blue-700); font-style: normal; }
.hero-copy { max-width: 580px; margin: 28px 0 0; color: #435068; font-size: 19px; line-height: 1.65; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue-800); box-shadow: 0 14px 32px rgba(7,59,150,.24); }
.button-primary:hover { background: var(--blue-700); box-shadow: 0 18px 36px rgba(7,59,150,.28); }
.button-ghost { border-color: #c9d2df; background: rgba(255,255,255,.7); }
.button-ghost:hover { background: #fff; }
.hero-proof { margin-top: 38px; display: flex; gap: 24px; flex-wrap: wrap; color: #4d596e; font-size: 13px; font-weight: 700; }
.hero-proof span { display: inline-flex; gap: 7px; align-items: center; }
.hero-proof b { color: var(--lime-dark); }

.quick-bar { position: relative; z-index: 3; margin-top: -34px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.quick-grid > div { min-height: 112px; display: flex; align-items: center; gap: 18px; padding: 24px 30px; border-right: 1px solid var(--line); }
.quick-grid > div:last-child { border-right: 0; }
.quick-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; color: var(--blue-800); background: #eaf1ff; font-size: 11px; font-weight: 900; }
.quick-grid p { margin: 0; display: grid; gap: 6px; }
.quick-grid strong { font-size: 14px; }
.quick-grid small { color: var(--muted); font-size: 12px; }

.section { padding: 110px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.section-heading h2, .benefits h2, .visit h2 { margin: 0; font-size: clamp(36px, 4.5vw, 57px); line-height: 1.05; letter-spacing: -.052em; }
.section-heading > p { max-width: 420px; margin: 0 0 5px; color: var(--muted); line-height: 1.75; }
.filter-row { margin: 42px 0 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.filter { padding: 11px 17px; border: 1px solid var(--line); border-radius: 999px; color: #4b566b; background: #fff; cursor: pointer; font-size: 13px; font-weight: 800; }
.filter:hover, .filter.active { color: white; border-color: var(--blue-800); background: var(--blue-800); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.product-card.is-hidden { display: none; }
.product-image { position: relative; height: 240px; overflow: hidden; background: #e9eff8; }
.product-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(3,22,60,.35)); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.product-card:hover img { transform: scale(1.055); }
.product-image span { position: absolute; z-index: 2; left: 18px; bottom: 16px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: white; background: rgba(5,42,111,.85); border: 1px solid rgba(255,255,255,.42); backdrop-filter: blur(6px); font-size: 11px; font-weight: 900; }
.crop-phone img { object-position: 58% 82%; }
.crop-tv img { object-position: 48% 55%; }
.crop-fridge img { object-position: 79% 20%; }
.crop-washer img { object-position: 93% 62%; }
.crop-laptop img { object-position: 67% 88%; }
.crop-mix img { object-position: 69% 60%; }
.product-body { padding: 25px; }
.product-body > p { margin: 0 0 8px; color: var(--lime-dark); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 900; }
.product-body h3 { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.product-detail { min-height: 72px; margin-top: 13px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.product-body a { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; color: var(--blue-800); font-size: 13px; font-weight: 900; }
.product-body a span { color: var(--lime-dark); }

.benefits { color: white; background: var(--blue-950); position: relative; overflow: hidden; }
.benefits::before { content: ""; position: absolute; width: 560px; height: 560px; left: -250px; bottom: -360px; border: 70px solid rgba(112,201,0,.12); border-radius: 50%; }
.benefits-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.eyebrow.light { color: #c5d9ff; }
.benefits-intro > p:not(.eyebrow) { max-width: 500px; margin: 25px 0; color: #b7c5de; line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.35); color: #caff89; font-weight: 800; }
.benefit-list { border-top: 1px solid rgba(255,255,255,.14); }
.benefit-item { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.benefit-item > span { color: var(--lime); font-size: 11px; font-weight: 900; }
.benefit-item h3 { margin: 0 0 9px; font-size: 21px; }
.benefit-item p { margin: 0; color: #aebbd2; line-height: 1.65; font-size: 14px; }

.visit { background: var(--soft); }
.visit-card { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: white; box-shadow: var(--shadow); }
.visit-copy { padding: 70px; }
.visit-copy > p:not(.eyebrow) { margin: 25px 0 0; color: var(--muted); line-height: 1.8; }
.visit-actions { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.phone-link { display: grid; gap: 5px; color: var(--blue-900); font-size: 18px; font-weight: 900; }
.phone-link small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.visit-visual { position: relative; overflow: hidden; min-height: 400px; background: #dbe6f5; }
.map-grid { position: absolute; inset: -30px; opacity: .8; background-image: linear-gradient(30deg, transparent 49%, rgba(255,255,255,.9) 50%, transparent 53%), linear-gradient(120deg, transparent 44%, rgba(255,255,255,.85) 45%, transparent 49%), linear-gradient(0deg, transparent 47%, rgba(255,255,255,.55) 48%, transparent 51%); background-size: 170px 210px, 190px 140px, 120px 120px; transform: rotate(-8deg) scale(1.15); }
.visit-visual::before, .visit-visual::after { content: ""; position: absolute; border-radius: 50%; }
.visit-visual::before { width: 180px; height: 180px; right: -50px; top: -50px; background: rgba(112,201,0,.2); }
.visit-visual::after { width: 260px; height: 260px; left: -100px; bottom: -150px; border: 45px solid rgba(7,59,150,.1); }
.map-pin { position: absolute; z-index: 2; left: 50%; top: 50%; width: 184px; transform: translate(-50%,-50%); display: grid; justify-items: center; gap: 6px; padding: 22px; border-radius: 18px; background: white; box-shadow: 0 20px 50px rgba(6,41,111,.2); }
.map-pin span { width: 34px; height: 34px; border: 10px solid var(--blue-800); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: inset 0 0 0 4px white; }
.map-pin b { margin-top: 7px; color: var(--blue-900); }
.map-pin small { color: var(--muted); }

.cta-section { color: white; background: linear-gradient(110deg, var(--blue-800), var(--blue-700)); }
.cta-inner { min-height: 250px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner p { margin: 0 0 8px; color: #ccdcff; font-size: 13px; font-weight: 800; }
.cta-inner h2 { margin: 0; font-size: clamp(35px,4vw,54px); letter-spacing: -.05em; }
.button-white { flex: 0 0 auto; color: var(--blue-900); background: white; box-shadow: 0 16px 30px rgba(3,22,60,.2); }

.site-footer { padding: 75px 0 24px; color: #c4cee0; background: #031536; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .65fr .9fr .95fr; gap: 55px; }
.brand.inverse strong { color: white; }
.brand.inverse small { color: #91a1bb; }
.footer-brand > p { max-width: 330px; margin: 24px 0 0; color: #8f9db4; line-height: 1.7; font-size: 14px; }
.footer-grid h3 { margin: 5px 0 20px; color: white; font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-grid a, .footer-grid p, .footer-grid address { margin: 0; color: #8f9db4; font-size: 13px; line-height: 1.65; font-style: normal; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 55px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #75839a; font-size: 11px; }

.whatsapp-float { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; color: white; background: #159447; box-shadow: 0 14px 35px rgba(8,80,39,.28); font-size: 12px; }
.whatsapp-float span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #087333; background: white; font-size: 10px; font-weight: 900; }

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

@media (max-width: 980px) {
    .main-nav { position: absolute; inset: 100% 0 auto; display: none; padding: 28px 20px 36px; align-items: stretch; flex-direction: column; gap: 8px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 14px; }
    .nav-cta { text-align: center; }
    .menu-toggle { display: block; }
    .hero { min-height: 690px; align-items: flex-end; }
    .hero-media { background-position: 63% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(248,250,253,.97) 0%, rgba(248,250,253,.86) 55%, rgba(248,250,253,.2) 100%); }
    .hero-content { padding-bottom: 90px; }
    .hero h1 { max-width: 590px; }
    .quick-grid { grid-template-columns: 1fr; }
    .quick-grid > div { min-height: 90px; border-right: 0; border-bottom: 1px solid var(--line); }
    .quick-grid > div:last-child { border-bottom: 0; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-layout { grid-template-columns: 1fr; gap: 60px; }
    .visit-card { grid-template-columns: 1fr; }
    .visit-copy { padding: 60px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 660px) {
    .container { width: min(100% - 28px, 1180px); }
    .announcement-inner { justify-content: center; }
    .announcement-inner > span { display: none; }
    .nav-wrap { min-height: 76px; }
    .brand img { width: 50px; height: 50px; }
    .brand strong { font-size: 18px; }
    .hero { min-height: 720px; align-items: flex-start; }
    .hero-media { background-position: 67% bottom; background-size: auto 58%; background-repeat: no-repeat; }
    .hero-shade { background: linear-gradient(180deg, rgba(248,250,253,1) 0%, rgba(248,250,253,.98) 50%, rgba(248,250,253,.55) 68%, rgba(248,250,253,.05) 100%); }
    .hero-content { padding-top: 58px; padding-bottom: 250px; }
    .hero h1 { font-size: clamp(44px, 14vw, 62px); }
    .hero-copy { margin-top: 22px; font-size: 16px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .button { width: 100%; }
    .hero-proof { gap: 12px 18px; }
    .hero-proof span { font-size: 11px; }
    .quick-bar { margin-top: -28px; }
    .section { padding: 80px 0; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 22px; }
    .product-grid { grid-template-columns: 1fr; }
    .product-image { height: 260px; }
    .benefits-layout { gap: 45px; }
    .visit-card { border-radius: 22px; }
    .visit-copy { padding: 42px 28px; }
    .visit-visual { min-height: 330px; }
    .cta-inner { padding: 55px 0; align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-bottom { flex-direction: column; }
    .whatsapp-float b { display: none; }
    .whatsapp-float { padding-right: 8px; }
}

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