/* =====================================================================
   COMPUGATTI INFORMÁTICA — Sistema de diseño
   Paleta: #142450 #1a5587 #368abd #a6c84f #fffffe
   Enfoque: corporativo, moderno, mobile-first, performance.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy:        #142450;
  --navy-700:    #16306a;
  --blue:        #1a5587;
  --blue-400:    #368abd;
  --lime:        #a6c84f;
  --lime-600:    #8fb23a;
  --white:       #fffffe;

  --ink:         #0f1b3d;
  --text:        #2b3650;
  --muted:       #6b7691;
  --line:        #e6e9f1;
  --bg:          #f5f7fb;
  --bg-soft:     #eef2f8;

  --grad-hero:   linear-gradient(135deg, #0f1c40 0%, #142450 38%, #1a5587 78%, #368abd 120%);
  --grad-lime:   linear-gradient(135deg, #a6c84f 0%, #8fb23a 100%);
  --grad-blue:   linear-gradient(135deg, #1a5587 0%, #368abd 100%);

  --shadow-sm:   0 1px 3px rgba(20,36,80,.08), 0 1px 2px rgba(20,36,80,.06);
  --shadow:      0 6px 20px rgba(20,36,80,.10);
  --shadow-lg:   0 18px 50px rgba(20,36,80,.18);

  --radius:      14px;
  --radius-lg:   22px;
  --radius-sm:   9px;

  --container:   1240px;
  --header-h:    74px;

  --ease:        cubic-bezier(.22,.61,.36,1);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-navy { background: var(--navy); color: var(--white); }
.center { text-align: center; }

.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-400);
  background: rgba(54,138,189,.10); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.bg-navy .eyebrow { color: var(--lime); background: rgba(166,200,79,.16); }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); max-width: 640px; font-size: 1.06rem; }
.center .section-sub { margin-inline: auto; }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-sub { color: rgba(255,255,255,.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--grad-lime); color: var(--navy); box-shadow: 0 8px 22px rgba(143,178,58,.34); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(143,178,58,.45); }
.btn-blue { background: var(--grad-blue); color: var(--white); box-shadow: 0 8px 22px rgba(26,85,135,.30); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(26,85,135,.42); }
.btn-ghost { background: rgba(255,255,255,.10); color: var(--white); border: 1.5px solid rgba(255,255,255,.34); }
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.34); }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,.45); }
.btn-lg { padding: 16px 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,36,80,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s, background .3s;
}
.header.scrolled { box-shadow: 0 6px 26px rgba(10,18,40,.35); background: rgba(16,28,64,.98); }
.nav { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 46px; width: 46px; border-radius: 10px; object-fit: cover; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { color: var(--white); font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; }
.brand-name span { color: var(--lime); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,.82); font-weight: 600; font-size: .96rem; padding: 9px 14px;
  border-radius: 9px; position: relative; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--lime); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.10);
  color: var(--white); transition: background .2s, transform .2s;
}
.cart-btn:hover { background: rgba(255,255,255,.20); transform: translateY(-1px); }
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 21px; height: 21px; padding: 0 5px;
  background: var(--lime); color: var(--navy); font-size: .72rem; font-weight: 800;
  border-radius: 999px; display: grid; place-items: center; border: 2px solid var(--navy);
  transform: scale(0); transition: transform .25s var(--ease);
}
.cart-count.show { transform: scale(1); }
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.10); color: #fff; }
.burger svg { width: 24px; height: 24px; margin: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-hero); color: var(--white); overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; }
.hero::before { width: 520px; height: 520px; background: radial-gradient(circle, rgba(166,200,79,.30), transparent 65%); top: -180px; right: -120px; }
.hero::after { width: 460px; height: 460px; background: radial-gradient(circle, rgba(54,138,189,.45), transparent 65%); bottom: -200px; left: -120px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 84px 0 90px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 20px; }
.hero h1 .hl { background: var(--grad-lime); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.16rem; color: rgba(255,255,255,.85); max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-size: 1.7rem; color: var(--lime); font-weight: 800; }
.hero-trust .t span { font-size: .86rem; color: rgba(255,255,255,.72); }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--white); font-size: 1.16rem; margin-bottom: 18px; display: flex; align-items: center; gap: 9px; }
.hero-card h3 svg { width: 22px; height: 22px; color: var(--lime); }
.hero-feat { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.hero-feat:last-child { border-bottom: none; }
.hero-feat .ic { flex: none; width: 40px; height: 40px; border-radius: 11px; background: rgba(166,200,79,.16); display: grid; place-items: center; color: var(--lime); }
.hero-feat .ic svg { width: 21px; height: 21px; }
.hero-feat b { color: var(--white); font-size: .98rem; display: block; }
.hero-feat span { color: rgba(255,255,255,.66); font-size: .85rem; }

/* ---------- Marquee / brands ---------- */
.brands { background: var(--white); border-bottom: 1px solid var(--line); }
.brands .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; padding-block: 26px; }
.brands span { font-weight: 800; font-size: 1.2rem; color: var(--muted); opacity: .65; letter-spacing: .02em; transition: opacity .2s, color .2s; }
.brands span:hover { opacity: 1; color: var(--blue); }

/* ---------- Benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.benefit .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-blue); display: grid; place-items: center; color: #fff; margin-bottom: 16px; }
.benefit .ic svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.12rem; margin-bottom: 7px; }
.benefit p { color: var(--muted); font-size: .95rem; }

/* ---------- Categories ---------- */
.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 16px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue-400); }
.cat-card .ic { width: 56px; height: 56px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--blue); transition: background .3s, color .3s; }
.cat-card:hover .ic { background: var(--grad-lime); color: var(--navy); }
.cat-card .ic svg { width: 27px; height: 27px; }
.cat-card b { font-size: 1rem; color: var(--ink); }
.cat-card span { font-size: .82rem; color: var(--muted); }

/* ---------- Product cards ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-media { position: relative; aspect-ratio: 1/1; background: #fff; padding: 16px; display: grid; place-items: center; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.07); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--grad-lime); color: var(--navy); font-size: .7rem; font-weight: 800; padding: 5px 11px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.product-cat { position: absolute; top: 12px; right: 12px; background: rgba(20,36,80,.85); color: #fff; font-size: .68rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-brand { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-400); margin-bottom: 6px; }
.product-name { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.32; }
.product-name a:hover { color: var(--blue); }
.product-short { font-size: .88rem; color: var(--muted); margin-bottom: 16px; flex: 1; }
.product-foot { display: flex; flex-direction: column; gap: 9px; }
.product-price { font-size: .92rem; font-weight: 700; color: var(--lime-600); display: flex; align-items: center; gap: 6px; }
.product-price svg { width: 16px; height: 16px; }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; padding: 11px 14px; font-size: .9rem; }
.btn-add { background: var(--grad-blue); color: #fff; }
.btn-add:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(26,85,135,.4); }
.btn-add.added { background: var(--grad-lime); color: var(--navy); }
.btn-view { background: var(--bg-soft); color: var(--blue); flex: none !important; width: 46px; padding: 0 !important; }
.btn-view:hover { background: var(--blue); color: #fff; }
.btn-view svg { width: 18px; height: 18px; }

/* ---------- Catalog layout ---------- */
.catalog { display: grid; grid-template-columns: 264px 1fr; gap: 32px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 18px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.filters h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 18px 0 11px; }
.filters h4:first-child { margin-top: 0; }
.filter-chip { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 9px 13px; border-radius: 9px; color: var(--text); font-weight: 600; font-size: .94rem; transition: background .2s, color .2s; text-align: left; }
.filter-chip:hover { background: var(--bg-soft); }
.filter-chip.active { background: var(--grad-blue); color: #fff; }
.filter-chip .n { font-size: .78rem; opacity: .7; font-weight: 700; }
.catalog-toolbar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.search-box { position: relative; flex: 1; min-width: 220px; }
.search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--muted); }
.search-box input { width: 100%; padding: 13px 16px 13px 42px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); transition: border-color .2s, box-shadow .2s; }
.search-box input:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(54,138,189,.15); }
.select { padding: 13px 16px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); font-weight: 600; color: var(--text); cursor: pointer; }
.results-count { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.results-count b { color: var(--ink); }
.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-state svg { width: 56px; height: 56px; color: var(--line); margin: 0 auto 16px; }
.empty-state h3 { color: var(--ink); margin-bottom: 8px; }
.mobile-filter-toggle { display: none; }

/* ---------- Product detail ---------- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--muted); padding: 22px 0; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; padding-bottom: 20px; }
.pdp-gallery { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; position: sticky; top: calc(var(--header-h) + 18px); }
.pdp-gallery img { width: 100%; aspect-ratio: 1/1; object-fit: contain; }
.pdp-info .product-brand { font-size: .8rem; }
.pdp-info h1 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 14px; }
.pdp-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.tag { background: var(--bg-soft); color: var(--blue); font-size: .78rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.pdp-desc { color: var(--text); font-size: 1.04rem; margin-bottom: 26px; }
.pdp-price-box { background: var(--bg-soft); border: 1px dashed var(--blue-400); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; }
.pdp-price-box .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-lime); display: grid; place-items: center; color: var(--navy); flex: none; }
.pdp-price-box .ic svg { width: 23px; height: 23px; }
.pdp-price-box b { color: var(--ink); display: block; font-size: 1.04rem; }
.pdp-price-box span { color: var(--muted); font-size: .9rem; }
.pdp-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.pdp-actions .btn { flex: 1; min-width: 180px; }
.specs { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.specs h3 { background: var(--bg-soft); padding: 15px 20px; font-size: 1.02rem; }
.specs table { width: 100%; border-collapse: collapse; }
.specs td { padding: 13px 20px; border-top: 1px solid var(--line); font-size: .95rem; }
.specs td:first-child { color: var(--muted); font-weight: 600; width: 45%; }
.specs td:last-child { color: var(--ink); font-weight: 600; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--grad-hero); color: var(--white); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(166,200,79,.22), transparent 65%); top: -160px; right: -100px; }
.page-hero .container { position: relative; z-index: 2; padding: 58px 22px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.84); max-width: 620px; font-size: 1.1rem; }

/* ---------- Nosotros ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid p { color: var(--text); margin-bottom: 16px; font-size: 1.04rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-card .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--grad-lime); display: grid; place-items: center; color: var(--navy); margin-bottom: 15px; }
.value-card .ic svg { width: 25px; height: 25px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .95rem; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--line); }
.mv-card.dark { background: var(--grad-blue); color: #fff; border: none; }
.mv-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.mv-card.dark h3 { color: #fff; }
.mv-card p { font-size: 1.05rem; color: var(--text); }
.mv-card.dark p { color: rgba(255,255,255,.9); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--grad-lime); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .ic { width: 56px; height: 56px; border-radius: 15px; background: var(--grad-blue); display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.service-card .ic svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.16rem; margin-bottom: 9px; }
.service-card p { color: var(--muted); font-size: .96rem; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; position: relative; }
.step .num { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--lime); color: var(--navy); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; margin: 0 auto 16px; box-shadow: var(--shadow-sm); }
.step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-blue); color: #fff; border-radius: var(--radius-lg); padding: 52px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(166,200,79,.3), transparent 50%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 26px; max-width: 560px; margin-inline: auto; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 18px; }
.info-row { display: flex; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-row .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; color: var(--blue); }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row b { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 2px; }
.info-row span, .info-row a { color: var(--muted); font-size: .95rem; }
.info-row a:hover { color: var(--blue); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(54,138,189,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field .err { color: #d33; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #d33; }
.field.invalid .err { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }
.form-success { display: none; background: rgba(166,200,79,.14); border: 1px solid var(--lime); border-radius: 11px; padding: 16px; color: var(--lime-600); font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 320px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Cart drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(15,27,61,.5); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 200; }
.overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; width: min(420px, 100%); height: 100%; background: var(--white); z-index: 201; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s var(--ease); box-shadow: var(--shadow-lg); }
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.2rem; display: flex; align-items: center; gap: 9px; }
.cart-head h3 svg { width: 22px; height: 22px; color: var(--blue); }
.cart-close { width: 40px; height: 40px; border-radius: 11px; background: var(--bg-soft); color: var(--ink); display: grid; place-items: center; transition: background .2s; }
.cart-close:hover { background: var(--line); }
.cart-close svg { width: 20px; height: 20px; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-item { display: flex; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 66px; height: 66px; border-radius: 11px; object-fit: contain; background: var(--bg-soft); padding: 6px; flex: none; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info b { font-size: .94rem; color: var(--ink); display: block; line-height: 1.3; margin-bottom: 3px; }
.cart-item-info .cat { font-size: .78rem; color: var(--muted); }
.qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 9px; margin-top: 9px; overflow: hidden; }
.qty button { width: 30px; height: 30px; background: var(--bg-soft); color: var(--ink); font-weight: 800; font-size: 1.1rem; display: grid; place-items: center; transition: background .15s; }
.qty button:hover { background: var(--blue); color: #fff; }
.qty span { min-width: 36px; text-align: center; font-weight: 700; font-size: .95rem; }
.cart-item-remove { color: var(--muted); align-self: flex-start; padding: 4px; transition: color .2s; }
.cart-item-remove:hover { color: #d33; }
.cart-item-remove svg { width: 17px; height: 17px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty svg { width: 56px; height: 56px; color: var(--line); margin: 0 auto 16px; }
.cart-foot { padding: 18px 22px; border-top: 1px solid var(--line); }
.cart-summary { display: flex; justify-content: space-between; margin-bottom: 14px; font-weight: 700; }
.cart-summary span { color: var(--muted); font-weight: 600; }
.cart-summary b { color: var(--ink); }
.cart-foot .btn { margin-bottom: 9px; }
.cart-clear { width: 100%; text-align: center; color: var(--muted); font-size: .88rem; font-weight: 600; padding: 8px; transition: color .2s; }
.cart-clear:hover { color: #d33; }

/* ---------- Floating WhatsApp ---------- */
.fab-wa { position: fixed; bottom: 22px; right: 22px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 26px rgba(37,211,102,.5); z-index: 90; transition: transform .25s var(--ease); animation: pulse-wa 2.4s infinite; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 32px; height: 32px; }
@keyframes pulse-wa { 0% { box-shadow: 0 8px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 8px 26px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 8px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 80px); background: var(--navy); color: #fff; padding: 14px 22px; border-radius: 12px; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 300; display: flex; align-items: center; gap: 10px; opacity: 0; transition: transform .35s var(--ease), opacity .35s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast svg { width: 20px; height: 20px; color: var(--lime); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 38px; }
.footer .brand-name b { font-size: 1.2rem; }
.footer p.desc { margin: 16px 0; font-size: .94rem; max-width: 290px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-links a { display: block; padding: 6px 0; font-size: .94rem; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--lime); padding-left: 5px; }
.footer-contact .row { display: flex; gap: 11px; margin-bottom: 13px; font-size: .94rem; }
.footer-contact .row svg { width: 19px; height: 19px; color: var(--lime); flex: none; margin-top: 2px; }
.footer-social { display: flex; gap: 11px; margin-top: 16px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--grad-lime); color: var(--navy); transform: translateY(-3px); }
.footer-social svg { width: 21px; height: 21px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; }
.footer-bottom a:hover { color: var(--lime); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 64px 0 72px; }
  .hero-visual { max-width: 460px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pdp { grid-template-columns: 1fr; gap: 30px; }
  .pdp-gallery { position: static; max-width: 460px; margin-inline: auto; }
  .values-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--navy); flex-direction: column; align-items: stretch; gap: 0; padding: 12px; transform: translateY(-130%); transition: transform .35s var(--ease); box-shadow: var(--shadow-lg); border-top: 1px solid rgba(255,255,255,.08); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px; border-radius: 10px; }
  .burger { display: grid; place-items: center; }
  .catalog { grid-template-columns: 1fr; }
  .filters { position: fixed; top: 0; left: 0; width: min(300px,86%); height: 100%; z-index: 150; border-radius: 0; transform: translateX(-105%); transition: transform .35s var(--ease); overflow-y: auto; }
  .filters.open { transform: translateX(0); }
  .mobile-filter-toggle { display: inline-flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .benefits-grid, .cats-grid, .products-grid, .values-grid, .services-grid, .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-trust { gap: 20px; }
  .cta-band { padding: 38px 24px; }
  .brand-name span { display: none; }
}
@media (max-width: 420px) {
  .benefits-grid, .cats-grid, .products-grid, .values-grid, .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

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