/* === IRBAN SAS — Light Metallic === */
:root {
  --bg-0: #d8dbe1;
  --bg-1: #e6e8ec;
  --bg-2: #c4c7ce;
  --bg-metallic: linear-gradient(180deg, #ffffff 0%, #e8eaed 100%);
  --line: rgba(20, 22, 28, 0.10);
  --line-strong: rgba(20, 22, 28, 0.18);
  --red: #c41e1e;
  --red-soft: #e23838;
  --red-deep: #8a1414;
  --gray-1: #000000;
  --gray-2: #1a1c22;
  --gray-3: #3a3d45;
  --gray-4: #b8bbc2;
  --text: #000000;
  --text-mute: #1a1c22;
  --text-dim: #3a3d45;
  --wa: #25d366;
  --radius: 6px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--text);
  font-family: 'Saira', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .nav__name, .hero__title em {
  font-family: 'Saira Condensed', 'Saira', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(20, 22, 28, 0.05);
}
.nav__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; text-decoration: none; }
.nav__logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__links { list-style: none; display: flex; gap: 28px; flex-wrap: nowrap; }
.nav__links a {
  color: #000; text-decoration: none;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--red); }

.nav__cta {
  padding: 13px 22px;
  background: var(--red);
  color: white;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(196, 30, 30, 0.25);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(196, 30, 30, 0.35);
}

.nav__burger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.nav__burger span { width: 24px; height: 2px; background: var(--gray-1); transition: 0.3s; border-radius: 2px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 140px 28px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 25%, rgba(255, 120, 100, 0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(40, 4, 4, 0.35), transparent 60%),
    linear-gradient(180deg, #6e1212 0%, #a31818 35%, #c41e1e 65%, #7a1313 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 920px; margin: 0 auto; text-align: center;
  animation: slide-up 0.9s ease both;
}
.hero__eyebrow {
  display: inline-block;
  padding: 11px 26px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--red);
  font-family: 'Saira Condensed', sans-serif;
  font-size: 17px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 32px;
  box-shadow: 0 4px 14px rgba(20, 22, 28, 0.18);
}
.hero__title {
  font-family: 'Saira', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 1.08; font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 26px;
  text-shadow: 0 3px 20px rgba(40, 4, 4, 0.45);
}
.hero__title em {
  font-style: normal;
  color: #ffffff;
  font-weight: 600;
}
.hero__sub {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: #ffffff;
  max-width: 720px; margin: 0 auto 40px;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(20, 22, 28, 0.4);
}
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero__badges {
  display: flex; gap: 56px; justify-content: center; flex-wrap: wrap;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.hero__badges > div { text-align: center; }
.hero__badges strong {
  display: block;
  font-family: 'Saira', sans-serif;
  font-size: 2.8rem; color: #ffffff; font-weight: 600;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(40, 4, 4, 0.4);
}
.hero__badges span {
  display: block;
  margin-top: 10px;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: none; cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn--primary {
  background: linear-gradient(180deg, var(--red-soft), var(--red-deep));
  color: white;
  box-shadow: 0 8px 22px -8px rgba(196, 30, 30, 0.5);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(196, 30, 30, 0.7);
}
.btn--ghost {
  background: white;
  color: var(--gray-1);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--red); color: var(--red); }
.btn--wa {
  background: var(--wa);
  color: white;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}
.btn--wa:hover { background: #1fb858; transform: translateY(-2px); }
.btn--block { display: block; width: 100%; text-align: center; }

/* === SECTIONS === */
.section {
  padding: 110px 0;
  position: relative;
  background: linear-gradient(180deg, #e6e8ec 0%, #d4d7dd 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(20, 22, 28, 0.06);
}
.section--alt {
  background: linear-gradient(180deg, #c4c7ce 0%, #b8bcc4 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(20, 22, 28, 0.10);
}
.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.kicker {
  display: inline-block;
  color: var(--red);
  font-family: 'Saira Condensed', sans-serif;
  font-size: 15px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative; padding: 0 36px;
}
.kicker::before, .kicker::after {
  content: ''; position: absolute; top: 50%;
  width: 24px; height: 2px; background: var(--red);
}
.kicker::before { left: 0; }
.kicker::after { right: 0; }
.section__head h2 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.05; margin-bottom: 20px;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.01em;
}
.section__head p { color: #1a1c22; font-size: 1.15rem; font-weight: 500; }

/* === GRID === */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--products { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid--norms { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* === QUIÉNES SOMOS === */
.nosotros__claim {
  font-style: italic;
  color: #ffffff;
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 22px;
  text-transform: none;
  text-shadow: 0 2px 12px rgba(20, 22, 28, 0.4);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* === BANNER NOSOTROS (mini-hero) === */
.section--hero-head { padding-top: 0; padding-bottom: 0; }
.nosotros__hero-block {
  position: relative;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse at 70% 25%, rgba(255, 120, 100, 0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(40, 4, 4, 0.35), transparent 60%),
    linear-gradient(180deg, #6e1212 0%, #a31818 35%, #c41e1e 65%, #7a1313 100%);
  overflow: hidden;
}
.nosotros__hero-block::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
  pointer-events: none;
}
.nosotros__banner {
  position: relative;
  padding: 110px 28px 60px;
  text-align: center;
}
.nosotros__banner-content {
  position: relative; z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.nosotros__services-wrap {
  padding-top: 80px;
  padding-bottom: 30px;
}
.kicker--light {
  color: #ff7a7a !important;
  margin-bottom: 26px;
}
.kicker--light::before, .kicker--light::after {
  background: #ff7a7a !important;
}
.nosotros__bigtitle {
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-shadow: 0 3px 20px rgba(20, 22, 28, 0.4);
  margin-bottom: 0;
}
.nosotros__bigtitle em {
  font-style: normal;
  color: #ffffff;
}
.nosotros__lead {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(40, 4, 4, 0.4);
  position: relative; z-index: 1;
}
.nosotros__lead strong { color: #ffffff; font-weight: 700; }

/* === CREDENCIALES (sellos oficiales) === */
.creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto 28px;
  max-width: 1080px;
  position: relative; z-index: 1;
}
.cred {
  background: linear-gradient(180deg, #fafbfc 0%, #e4e6ea 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-radius: 8px;
  padding: 42px 32px 34px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(20, 22, 28, 0.05),
    0 6px 18px -8px rgba(20, 22, 28, 0.18);
  overflow: hidden;
}
.cred::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: var(--red);
  border-top-left-radius: 2px; border-top-right-radius: 2px;
}
.cred:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 22, 28, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 36px -12px rgba(20, 22, 28, 0.28);
}
.cred__seal {
  width: 130px; height: 130px;
  margin: 0 auto 24px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #e8eaed 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-radius: 50%;
  color: var(--red);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 6px rgba(20, 22, 28, 0.06),
    0 4px 14px -4px rgba(196, 30, 30, 0.25);
  transition: transform 0.4s ease;
}
.cred__seal svg { width: 70px; height: 70px; }
.cred:hover .cred__seal { transform: scale(1.06) rotate(-3deg); }
.cred__tag {
  display: inline-block;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
  background: rgba(196, 30, 30, 0.08);
  border: 1px solid rgba(196, 30, 30, 0.20);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.cred h4 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}
.cred p {
  color: #1a1c22;
  font-size: 1rem;
  margin: 0;
  line-height: 1.55;
  font-weight: 500;
}

@media (max-width: 900px) {
  .creds, .nosotros__pillars { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
}
/* === PILLARS (Misión / Visión) — mismo ancho que creds === */
.nosotros__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  /* (1080 - 2*24) / 3 = 344px por columna; pillars = 2 * 344 + 24 = 712px */
  max-width: 712px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.pillar {
  background: linear-gradient(180deg, #fafbfc 0%, #e4e6ea 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-radius: 8px;
  padding: 42px 32px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(20, 22, 28, 0.05),
    0 8px 22px -10px rgba(40, 4, 4, 0.4);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: var(--red);
  border-top-left-radius: 2px; border-top-right-radius: 2px;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 22, 28, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 44px -14px rgba(40, 4, 4, 0.5);
}
.pillar__img {
  width: 130px; height: 130px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #e8eaed 100%);
  border-radius: 50%;
  border: 1px solid rgba(20, 22, 28, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 6px rgba(20, 22, 28, 0.06),
    0 4px 14px -4px rgba(196, 30, 30, 0.25);
  transition: transform 0.4s ease;
}
.pillar:hover .pillar__img { transform: scale(1.06) rotate(-3deg); }
.pillar__img img {
  width: 112px; height: 112px;
  object-fit: contain;
}
.pillar h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #000;
}
.pillar p {
  color: #1a1c22;
  font-size: 1rem;
  margin: 0;
  line-height: 1.55;
  font-weight: 500;
  max-width: 320px;
}
.nosotros__subtitle {
  text-align: center;
  margin: 0 0 36px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}
.mini-card {
  background: linear-gradient(180deg, #fafbfc 0%, #e4e6ea 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-radius: 8px;
  padding: 36px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  transition: all 0.3s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 14px -8px rgba(20, 22, 28, 0.18);
  position: relative;
  overflow: hidden;
}
.mini-card::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.4s ease;
}
.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 22, 28, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px -10px rgba(20, 22, 28, 0.25);
}
.mini-card:hover::before { width: 60%; }
.mini-card h4 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  position: relative;
  line-height: 1.25;
}
.mini-card h4::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.mini-card p {
  color: #1a1c22;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* === CARD CLICKABLE === */
.card--clickable { cursor: pointer; }
.card--clickable:hover .card__more { color: var(--red-deep); }
.card--clickable:hover .card__more::after { transform: translateX(6px); }
.card__more {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  transition: all 0.25s ease;
}
.card__more::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.25s ease;
}

/* === CARD CENTER (servicios sin ícono) === */
.card--center {
  text-align: center;
  padding: 48px 32px 36px;
  display: flex; flex-direction: column;
}
.card--center h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 18px;
  color: #000;
}
.card--center h3::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.card--center > p {
  margin-bottom: 26px;
  min-height: 84px;
}
.card--center .card__list {
  text-align: left;
  margin: 0 auto;
  max-width: 280px;
  flex-grow: 1;
}

/* === MODAL === */
.modal {
  position: fixed; inset: 0; z-index: 300;
  pointer-events: none;
}
.modal.open { pointer-events: auto; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(20, 22, 28, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s;
}
.modal.open .modal__overlay { opacity: 1; }
.modal__panel {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(960px, 92vw);
  max-height: 88vh;
  background: linear-gradient(180deg, #fafbfc 0%, #e8eaed 100%);
  border: 1px solid rgba(20, 22, 28, 0.15);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  overflow-y: auto;
  opacity: 0;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 30px 80px rgba(20, 22, 28, 0.5);
}
.modal.open .modal__panel { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.modal__close {
  position: sticky; top: 12px; left: 100%;
  margin: 12px 12px 0;
  width: 36px; height: 36px;
  background: white;
  border: 1px solid rgba(20, 22, 28, 0.15);
  color: var(--gray-1);
  font-size: 1.6rem; line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.2s;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(20, 22, 28, 0.15);
}
.modal__close:hover { color: var(--red); border-color: var(--red); transform: scale(1.05); }
.modal__body { padding: 12px 48px 48px; }
.modal__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gray-1);
  margin-bottom: 14px;
  text-align: center;
}
.modal__intro {
  text-align: center;
  color: var(--text-mute);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.modal__group { margin-bottom: 36px; }
.modal__group:last-of-type { margin-bottom: 0; }
.modal__group-title {
  font-family: 'Saira Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
}
.modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.modal__item {
  background: white;
  border: 1px solid rgba(20, 22, 28, 0.10);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 12px -6px rgba(20, 22, 28, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}
.modal__item:hover { transform: translateY(-3px); border-color: var(--red); }
.modal__item h4 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  position: relative;
}
.modal__item h4::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.modal__item p { color: #1a1c22; font-size: 0.95rem; margin: 0; line-height: 1.5; }
.modal__list {
  list-style: none;
  background: white;
  border: 1px solid rgba(20, 22, 28, 0.10);
  border-radius: 8px;
  padding: 20px 28px;
  margin-bottom: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
}
.modal__list li {
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--gray-2);
  font-size: 0.94rem;
  position: relative;
  line-height: 1.55;
}
.modal__list li:last-child { border-bottom: none; }
.modal__list li::before {
  content: '';
  position: absolute; left: 0; top: 18px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}
.modal__cta { text-align: center; padding-top: 16px; border-top: 1px solid var(--line); }

/* === CARDS (servicios) === */
.card {
  background: linear-gradient(180deg, #fafbfc 0%, #e4e6ea 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(20, 22, 28, 0.05),
    0 6px 18px -8px rgba(20, 22, 28, 0.18);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 3px; background: var(--red);
  transition: width 0.4s ease;
  z-index: 2;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 22, 28, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(20, 22, 28, 0.05),
    0 22px 44px -14px rgba(20, 22, 28, 0.28);
}
.card:hover::before { width: 100%; }
.card__icon {
  font-size: 2.4rem; margin-bottom: 20px;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #d8dbe1 0%, #aeb2ba 100%);
  border-radius: 8px;
  border: 1px solid rgba(20, 22, 28, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(20, 22, 28, 0.08);
}
.card h3 { font-size: 1.7rem; margin-bottom: 16px; color: #000; }
.card p { color: #1a1c22; margin-bottom: 22px; font-size: 1.02rem; font-weight: 500; }
.card__list { list-style: none; }
.card__list li {
  padding: 12px 0;
  color: #000;
  font-size: 1rem;
  border-top: 1px solid var(--line);
  position: relative; padding-left: 22px;
  font-weight: 600;
}
.card__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
}

/* === FILTROS === */
.filters {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 48px;
}
.filter {
  background: white;
  border: 1px solid var(--line);
  color: var(--gray-2);
  padding: 9px 20px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
}
.filter:hover { color: var(--red); border-color: var(--red); }
.filter--active { background: var(--red); color: white; border-color: var(--red); }

/* === PRODUCT CARDS === */
.product {
  background: linear-gradient(180deg, #fafbfc 0%, #e4e6ea 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-radius: 8px;
  padding: 26px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(20, 22, 28, 0.05),
    0 6px 16px -8px rgba(20, 22, 28, 0.18);
}
.product:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 22, 28, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(20, 22, 28, 0.05),
    0 18px 36px -12px rgba(20, 22, 28, 0.28);
}
.product__icon {
  font-size: 3rem; text-align: center;
  padding: 24px 0;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #d8dbe1 0%, #aeb2ba 100%);
  border-radius: 6px;
  border: 1px solid rgba(20, 22, 28, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(20, 22, 28, 0.08);
}
.product__icon--img {
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f2f5 100%);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  position: relative;
}
.product__icon--img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.product:hover .product__icon--img img { transform: scale(1.04); }
.product__icon--clickable { cursor: pointer; position: relative; }
.product__icon-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 22, 28, 0.78);
  color: white;
  display: grid; place-items: center;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
  text-align: center;
  padding: 0 12px;
}
.product__icon--clickable:hover .product__icon-overlay { opacity: 1; }

/* === COLLAGE 2x2 (cartelería preview) === */
.product__icon--collage {
  padding: 0;
  background: white;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%; height: 100%;
  gap: 2px;
  background: rgba(20, 22, 28, 0.10);
}
.collage__cell {
  background: white;
  display: grid; place-items: center;
  overflow: hidden;
}
.collage__cell img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
  transition: transform 0.4s ease;
}
.product:hover .collage__cell img { transform: scale(1.06); }

/* === VARIANTES (matafuegos) === */
.variants {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.variant-card {
  background: linear-gradient(180deg, #fafbfc 0%, #e4e6ea 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 12px -6px rgba(20, 22, 28, 0.18);
  display: flex;
  flex-direction: column;
}
.variant-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px -10px rgba(20, 22, 28, 0.25);
}
.variant-card__media {
  display: block;
  background: white;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 22, 28, 0.08);
  cursor: zoom-in;
}
.variant-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}
.variant-card:hover .variant-card__media img { transform: scale(1.05); }
.variant-card__head {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  color: white;
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'Saira Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.variant-card__tipo { font-size: 1.4rem; font-weight: 800; }
.variant-card__cap { font-size: 1rem; font-weight: 600; opacity: 0.92; }
.variant-card__body { padding: 18px; }
.variant-card__agente {
  color: var(--gray-1);
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.variant-card__agente strong {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  display: block;
  margin-bottom: 2px;
}
.variant-card__uso {
  color: #1a1c22;
  font-size: 0.88rem;
  margin: 0 0 16px;
  line-height: 1.5;
  font-weight: 500;
}
.variant-card__btn {
  display: block;
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 9px 14px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
  margin-top: auto;
}
.variant-card__btn:hover { background: var(--red-deep); transform: translateY(-1px); }
.variant-card__body { display: flex; flex-direction: column; flex-grow: 1; }

/* === GALERÍA (cards estilo producto) === */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}
.gallery-card {
  background: linear-gradient(180deg, #fafbfc 0%, #e4e6ea 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-radius: 8px;
  padding: 14px;
  display: flex; flex-direction: column;
  transition: all 0.3s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(20, 22, 28, 0.05),
    0 4px 12px -6px rgba(20, 22, 28, 0.18);
}
.gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 22, 28, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px -10px rgba(20, 22, 28, 0.25);
}
.gallery-card__media {
  position: relative;
  display: block;
  background: white;
  border: 1px solid rgba(20, 22, 28, 0.08);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  cursor: zoom-in;
}
.gallery-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-card__media img { transform: scale(1.05); }
.gallery-card__zoom {
  position: absolute; inset: 0;
  background: rgba(20, 22, 28, 0.72);
  color: white;
  display: grid; place-items: center;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  opacity: 0; transition: opacity 0.25s;
}
.gallery-card__media:hover .gallery-card__zoom { opacity: 1; }
.gallery-card__cat {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); font-weight: 700;
  margin-bottom: 4px;
}
.gallery-card__name {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.95rem; color: #000;
  font-weight: 700; text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.gallery-card__desc {
  color: #1a1c22;
  font-size: 0.82rem;
  margin: 0 0 14px;
  line-height: 1.4;
}
.gallery-card__btn {
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
  margin-top: auto;
}
.gallery-card__btn:hover { background: var(--red-deep); transform: translateY(-1px); }
.drawer__item-icon img {
  width: 40px; height: 40px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.product__cat {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); font-weight: 700;
  margin-bottom: 8px;
}
.product__name {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.15rem; color: var(--gray-1);
  margin-bottom: 8px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.product__desc { color: var(--text-mute); font-size: 0.88rem; margin-bottom: 20px; flex-grow: 1; }
.product__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.product__price {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.3rem; color: var(--gray-1); font-weight: 800;
}
.product__add {
  background: var(--red);
  border: none;
  color: white;
  padding: 10px 16px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.product__add:hover { background: var(--red-deep); transform: translateY(-1px); }
.product__add--block { display: block; width: 100%; }

/* === FAQ === */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: linear-gradient(180deg, #fafbfc 0%, #e8eaed 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 4px 24px;
  transition: all 0.25s;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 8px -4px rgba(20, 22, 28, 0.12);
}
.faq__item:hover { border-color: rgba(20, 22, 28, 0.2); }
.faq__item summary {
  cursor: pointer;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.1rem; color: var(--gray-1); font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  padding: 18px 0;
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  color: var(--red);
  font-size: 1.6rem; font-weight: 400;
  transition: transform 0.3s;
  font-family: 'Saira', sans-serif;
  line-height: 1;
}
.faq__item[open] { border-color: var(--red); }
.faq__item[open] summary { color: var(--red); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  color: var(--text-mute);
  padding: 0 0 20px;
  font-size: 0.96rem;
  animation: slide-up 0.3s ease;
}

/* === NORMATIVAS === */
.norm {
  background: linear-gradient(180deg, #fafbfc 0%, #e4e6ea 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  padding: 30px 26px;
  transition: all 0.3s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(20, 22, 28, 0.05),
    0 6px 16px -8px rgba(20, 22, 28, 0.18);
}
.norm:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(20, 22, 28, 0.05),
    0 18px 36px -12px rgba(20, 22, 28, 0.28);
  border-left-color: var(--red-deep);
}
.norm__tag {
  display: inline-block;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-2);
  background: linear-gradient(180deg, #d8dbe1, #c4c7ce);
  border: 1px solid rgba(20, 22, 28, 0.15);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
  font-weight: 600;
}
.norm h3 {
  font-size: 1.3rem; color: var(--gray-1);
  margin-bottom: 12px; font-weight: 800;
}
.norm p { color: var(--text-mute); font-size: 0.92rem; }
.norm__footer {
  text-align: center;
  color: var(--text-dim);
  font-style: italic;
  font-size: 0.92rem;
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

/* === CONTACTO === */
.section--contact {
  background:
    radial-gradient(ellipse at center top, rgba(196, 30, 30, 0.06), transparent 60%),
    linear-gradient(180deg, #b0b4bc 0%, #9aa0aa 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; margin-bottom: 40px; }
.contact__text { display: flex; flex-direction: column; justify-content: center; }
.contact__text h2 { font-size: clamp(2rem, 3.2vw, 2.6rem); margin: 18px 0; }
.contact__text > p { color: var(--text-mute); margin-bottom: 28px; }
.contact__list { list-style: none; }
.contact__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  color: var(--gray-2);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.contact__list a {
  color: inherit; text-decoration: none;
  transition: color 0.2s;
}
.contact__list a:hover { color: var(--red); }
.contact__ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #fafbfc 0%, #e4e6ea 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-radius: 8px;
  color: var(--gray-2);
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px -2px rgba(20, 22, 28, 0.12);
}
.contact__ico--wa { color: var(--wa); }
.contact__map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(20, 22, 28, 0.12);
  min-height: 380px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 36px -14px rgba(20, 22, 28, 0.28);
}
.contact__map iframe {
  width: 100%; height: 100%;
  min-height: 380px;
  border: 0; display: block;
  filter: grayscale(0.4) contrast(1.05);
  transition: filter 0.4s;
}
.contact__map:hover iframe { filter: grayscale(0) contrast(1); }
.contact__cta {
  background: linear-gradient(180deg, #fafbfc 0%, #e4e6ea 100%);
  border: 1px solid rgba(20, 22, 28, 0.12);
  border-top: 3px solid var(--red);
  border-radius: 8px;
  padding: 44px 36px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(20, 22, 28, 0.05),
    0 18px 44px -16px rgba(20, 22, 28, 0.30);
}
.contact__cta h3 { font-size: 1.6rem; color: var(--gray-1); margin-bottom: 14px; }
.contact__cta p { color: var(--text-mute); margin-bottom: 28px; font-size: 0.95rem; }

/* === FOOTER === */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: var(--gray-1);
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer p {
  color: rgba(255,255,255,0.55);
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500;
}
.footer__credit { color: rgba(255,255,255,0.35); }

/* === FAB CART === */
.cart-fab {
  position: fixed; bottom: 90px; right: 24px;
  width: 56px; height: 56px;
  background: white;
  border: 1px solid var(--line-strong);
  color: var(--gray-1);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: grid; place-items: center;
  z-index: 90;
  transition: all 0.25s;
  box-shadow: 0 10px 30px rgba(20, 22, 28, 0.15);
}
.cart-fab:hover { transform: scale(1.06); border-color: var(--red); color: var(--red); }
.cart-fab--flash { animation: cart-bump 0.55s ease; }
@keyframes cart-bump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.20); border-color: var(--red); color: var(--red); box-shadow: 0 14px 34px rgba(196, 30, 30, 0.45); }
  100% { transform: scale(1); }
}
.cart-fab__count {
  position: absolute; top: -6px; right: -6px;
  background: var(--red); color: white;
  border-radius: 999px; min-width: 20px; height: 20px;
  font-size: 11px; font-family: 'Saira', sans-serif; font-weight: 700;
  display: grid; place-items: center; padding: 0 6px;
  box-shadow: 0 2px 6px rgba(196, 30, 30, 0.4);
}
.cart-fab__count:empty, .cart-fab__count[data-zero="true"] { display: none; }

/* === DRAWER === */
.drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.drawer.open { pointer-events: auto; }
.drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(20, 22, 28, 0.4);
  opacity: 0; transition: opacity 0.3s;
}
.drawer.open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: white;
  border-left: 3px solid var(--red);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(20, 22, 28, 0.15);
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.drawer__head h3 { font-size: 1.3rem; color: var(--gray-1); }
.drawer__close {
  background: none; border: none; color: var(--gray-2);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.drawer__close:hover { color: var(--red); }
.drawer__body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.drawer__empty { color: var(--text-dim); text-align: center; padding: 40px 0; font-style: italic; }
.drawer__item {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.drawer__item-icon { font-size: 1.8rem; }
.drawer__item-name {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.95rem; color: var(--gray-1); font-weight: 700;
  text-transform: uppercase;
}
.drawer__item-meta { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; display: flex; align-items: center; gap: 10px; }
.drawer__item-qty {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); padding: 2px 6px;
  border-radius: 3px;
}
.drawer__item-qty button {
  background: none; border: none; color: var(--red); cursor: pointer;
  font-size: 1rem; padding: 0 4px; font-weight: 700;
}
.drawer__item-price {
  color: var(--gray-1);
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1rem; font-weight: 800; text-align: right;
}
.drawer__item-remove {
  background: none; border: none; color: var(--text-dim);
  cursor: pointer; font-size: 0.75rem; margin-top: 4px;
  text-decoration: underline;
}
.drawer__item-remove:hover { color: var(--red); }
.drawer__foot {
  padding: 22px 28px; border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.drawer__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
}
.drawer__total span {
  color: var(--gray-2);
  font-family: 'Saira Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
}
.drawer__total strong {
  font-family: 'Saira Condensed', sans-serif;
  color: var(--red); font-size: 1.6rem; font-weight: 800;
}
.drawer__foot small { display: block; color: var(--text-dim); font-size: 11px; margin-top: 12px; text-align: center; }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed; bottom: 20px; right: 24px;
  width: 56px; height: 56px;
  background: var(--wa);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s;
}
.wa-float::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: var(--wa);
  animation: wa-pulse 2.5s infinite;
  z-index: -1;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* === ANIMATIONS === */
@keyframes slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(28px); transition: 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .contact__map, .contact__map iframe { min-height: 320px; }
  .modal__body { padding: 12px 24px 36px; }
}

@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__logo-img { height: 40px; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
    box-shadow: 0 10px 24px rgba(20, 22, 28, 0.08);
  }
  .section { padding: 70px 0; }
  .section__head { margin-bottom: 44px; }
  .hero { padding: 110px 20px 60px; min-height: auto; }
  .hero__badges { gap: 32px; padding-top: 32px; }
  .hero__badges strong { font-size: 1.5rem; }
  .container { padding: 0 20px; }
  .card { padding: 32px 24px; }
  .contact__cta { padding: 36px 24px; }
  .footer__inner { flex-direction: column; text-align: center; }
}
