/* ============================================
   RadiosCP_SNL — Sistema de diseño
   Tema claro. Azul + verde (degradado del logo), navy para texto fuerte.
   ============================================ */

:root {
  --blue: #1E88D6;
  --blue-light: #2AA9E0;
  --green: #3FBF5E;
  --green-light: #7ED957;
  --navy: #0B1F3A;
  --navy-soft: #3A4C66;
  --paper: #FFFFFF;
  --mist: #F4F8FC;
  --mist-strong: #EAF1F8;
  --line: #E1E8F0;
  --ink-dim: #6B7A8F;

  --gradient: linear-gradient(100deg, var(--blue) 0%, var(--green) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(30,136,214,0.10) 0%, rgba(63,191,94,0.10) 100%);

  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;

  --max: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 0px;
  --radius-sm: 0px;
  --shadow: 0 12px 32px -12px rgba(11, 31, 58, 0.14);
  --shadow-lg: 0 24px 60px -20px rgba(11, 31, 58, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  background:
    radial-gradient(1000px 620px at 100% 0%, rgba(63,191,94,0.22), transparent 55%),
    radial-gradient(1000px 620px at 0% 100%, rgba(30,136,214,0.20), transparent 55%),
    linear-gradient(155deg, #E4F1FC 0%, #FCFEFF 32%, #FBFFFC 66%, #E3FAEA 100%);
  background-attachment: fixed;
  color: var(--navy);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--navy);
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--gradient-soft);
  border-radius: 0px;
}

section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

.section-head {
  max-width: 640px;
  margin: 0 0 2.75rem;
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-top: 0.9rem; }
.section-head p { color: var(--ink-dim); margin-top: 0.9rem; font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head::after {
  content: '';
  display: block;
  width: 56px; height: 4px;
  margin-top: 1.3rem;
  border-radius: 0px;
  background: var(--gradient);
}
.section-head.center::after { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 0px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; stroke: currentColor; }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { box-shadow: var(--shadow-lg); }
.btn-outline {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(37,211,102,0.55);
}
.btn-block { width: 100%; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    radial-gradient(rgba(11,31,58,0.06) 1px, transparent 1px) 0 0/18px 18px,
    linear-gradient(115deg, rgba(30,136,214,0.12) 0%, rgba(255,255,255,0.94) 32%, rgba(255,255,255,0.94) 68%, rgba(63,191,94,0.13) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--gradient);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 96px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--navy); flex-shrink: 0; }
.brand img { height: 68px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 2.1rem; }
.main-nav a {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-soft);
  transition: color 0.15s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: width 0.2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--navy); }

.has-dropdown { position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; }
.dropdown-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 0.3rem;
  align-self: center; margin-top: -0.25rem;
}
.dropdown-toggle span {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--navy-soft);
}
.dropdown-toggle:hover span { border-top-color: var(--blue); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  margin-top: 0.9rem; min-width: 240px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  padding: 0.5rem; z-index: 50;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li { list-style: none; }
.dropdown a {
  display: block; padding: 0.7rem 0.9rem;
  font-family: var(--display); font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--navy-soft);
  white-space: nowrap;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--mist); color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; flex-shrink: 0; }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
  background: var(--navy);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nav-call:hover { transform: translateY(-2px); background: var(--blue); }

.cart-toggle {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--mist); border: 1px solid var(--line);
  cursor: pointer; transition: border-color 0.15s ease;
  flex-shrink: 0;
}
.cart-toggle:hover { border-color: var(--blue); }
.cart-toggle svg { width: 20px; height: 20px; stroke: var(--navy); }
.cart-badge {
  position: absolute; top: -8px; right: -8px;
  min-width: 20px; height: 20px; padding: 0 4px;
  background: var(--green); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--paper);
}
.cart-badge.is-empty { display: none; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(11,31,58,0.55);
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 301;
  width: min(420px, 100vw);
  background: var(--navy); color: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -20px 0 50px -20px rgba(0,0,0,0.4);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.cart-head-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
}
.cart-head-icon svg { width: 22px; height: 22px; stroke: #fff; }
.cart-head-text { flex: 1; }
.cart-head-text h3 { color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.02em; }
.cart-head-text span { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.cart-close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.6rem; line-height: 1; cursor: pointer; padding: 0.2rem 0.4rem; }
.cart-close:hover { color: #fff; }

.cart-items { flex: 1; overflow-y: auto; padding: 1.2rem 1.5rem; }
.cart-empty { color: rgba(255,255,255,0.55); text-align: center; padding: 2rem 0; font-size: 0.95rem; }
.cart-item { display: flex; gap: 0.9rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cart-item-img { width: 64px; height: 64px; flex-shrink: 0; background: rgba(255,255,255,0.06); }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 0.4rem; }
.cart-item-body { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.cart-item-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.6rem; }
.cart-item-top h4 { color: #fff; font-family: var(--display); font-weight: 700; font-size: 0.95rem; }
.cart-item-remove { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.45); flex-shrink: 0; }
.cart-item-remove svg { width: 16px; height: 16px; stroke: currentColor; }
.cart-item-remove:hover { color: #fff; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-qty { display: flex; align-items: center; border: 1px solid rgba(255,255,255,0.2); }
.cart-qty button { width: 28px; height: 28px; background: none; border: none; color: #fff; cursor: pointer; font-size: 1rem; }
.cart-qty button:hover { color: var(--green-light); }
.cart-qty span { min-width: 26px; text-align: center; font-family: var(--display); font-weight: 700; color: #fff; font-size: 0.9rem; }
.cart-item-price { font-family: var(--display); font-weight: 700; color: var(--green-light); font-size: 0.9rem; }

.cart-foot { padding: 1.3rem 1.5rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; gap: 0.9rem; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.cart-total-row span:last-child { font-size: 1.3rem; color: var(--green-light); }
.cart-continue { background: none; border: none; color: rgba(255,255,255,0.6); font-family: var(--display); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em; cursor: pointer; text-align: center; }
.cart-continue:hover { color: #fff; }

.product-actions { display: flex; gap: 0.6rem; margin-top: auto; }
.product-actions .btn { margin-top: 0; }
.btn-add-cart:not(.btn) {
  flex-shrink: 0; width: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); border: 1px solid var(--navy); cursor: pointer;
  transition: background 0.15s ease;
}
.btn-add-cart:not(.btn) svg { width: 19px; height: 19px; stroke: #fff; }
.btn-add-cart:not(.btn):hover { background: var(--blue); border-color: var(--blue); }
.btn-add-cart.btn svg { width: 18px; height: 18px; stroke: currentColor; flex-shrink: 0; }
.btn-add-cart:not(.btn).is-added { background: var(--green); border-color: var(--green); }
.btn-add-cart.btn.is-added { background: var(--green) !important; }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; display: block; width: 20px; height: 2px; background: var(--navy); position: relative; }
.menu-toggle { flex-direction: column; gap: 4px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(3rem, 7vw, 5rem); }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(42% 55% at 22% 30%, rgba(30,136,214,0.22), transparent 100%),
    radial-gradient(40% 50% at 78% 32%, rgba(95,203,134,0.20), transparent 100%),
    radial-gradient(50% 60% at 55% 82%, rgba(63,191,94,0.18), transparent 100%),
    radial-gradient(30% 40% at 8% 88%, rgba(30,136,214,0.15), transparent 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-deco {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.hero-deco svg { width: 100%; height: 55%; }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  margin-top: 1.1rem;
}
.hero-text p { color: var(--ink-dim); font-size: 1.1rem; margin-top: 1.3rem; max-width: 520px; }
.hero-actions { display: flex; gap: 0.9rem; margin-top: 2rem; flex-wrap: wrap; }

.hero-carousel {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  background: var(--mist);
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.hero-stat .num { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.hero-stat .label { color: var(--ink-dim); font-size: 0.85rem; margin-top: 0.2rem; }

/* ---------- Benefits ---------- */
.benefits {
  position: relative;
  background: linear-gradient(180deg, var(--mist) 0%, var(--mist-strong) 100%);
  overflow: hidden;
}
.benefits::before {
  content: '';
  position: absolute; top: -30%; left: -8%;
  width: 40%; height: 160%;
  background: var(--gradient-soft);
  filter: blur(70px);
  z-index: 0;
}
.benefits .wrap { position: relative; z-index: 1; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-card {
  padding: 2rem;
  border-radius: 0px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 0px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
}
.benefit-icon svg { width: 26px; height: 26px; stroke: #fff; }
.benefit-card h3 { font-size: 1.15rem; }
.benefit-card p { color: var(--ink-dim); margin-top: 0.7rem; font-size: 0.96rem; }

.feature-banner {
  margin-top: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  overflow: hidden;
}
.feature-banner-text { padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.feature-icon { width: 40px; height: 40px; margin-bottom: 0.2rem; }
.feature-icon svg { width: 20px; height: 20px; }
.feature-banner-text h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
.feature-banner-text p { color: var(--ink-dim); font-size: 1rem; line-height: 1.65; }
.feature-banner-img {
  min-height: 260px; background: var(--mist);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.feature-banner-img img { max-width: 80%; max-height: 80%; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Catalog ---------- */
.catalog-toolbar { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.75rem; }
.catalog-filters { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: var(--display); font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  padding: 0.65rem 1.2rem; border-radius: 0px;
  background: var(--mist); color: var(--navy-soft); border: 1px solid var(--line);
  cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--gradient); color: #fff; border-color: transparent; }
.product-card.is-hidden { display: none; }
.tours-grid, .catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.6rem;
}
.product-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient);
  opacity: 0; transition: opacity 0.18s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card:hover::before { opacity: 1; }
.product-img {
  position: relative;
  aspect-ratio: 3/4;
  background: radial-gradient(120% 100% at 50% 12%, #ffffff 0%, #eef3f8 55%, #e3ecf5 100%);
}
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 0.6rem; }
.product-price-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--navy); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 0.85rem;
  padding: 0.35rem 0.7rem; border-radius: 0px;
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gradient); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  padding: 0.35rem 0.65rem; border-radius: 0px;
}
.product-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.product-body h3 { font-size: 1.15rem; }
.price-note { font-size: 0.76rem; color: var(--ink-dim); font-style: italic; margin-top: -0.5rem; }
.product-highlights { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.product-highlights span {
  font-size: 0.74rem; font-weight: 600; color: var(--blue);
  background: var(--gradient-soft); padding: 0.25rem 0.6rem; border-radius: 0px;
}
.product-card .btn { margin-top: auto; }

/* ---------- Sectors strip ---------- */
.sectors-strip { position: relative; background: var(--navy); color: #fff; padding: 3.4rem 0; overflow: hidden; }
.sectors-deco {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 130px; transform: translateY(-50%);
  z-index: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.sectors-deco svg { width: 100%; height: 100%; }
.sectors-strip .wrap { position: relative; z-index: 1; }
.sectors-strip .wrap { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.sectors-label {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.9rem; color: var(--green-light); text-align: center;
}
.sectors-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.sector-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sector-card-img { aspect-ratio: 4/3; background: var(--mist); }
.sector-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sector-card-label { display: flex; align-items: center; gap: 0.6rem; padding: 0.9rem 1.1rem; background: var(--gradient); }
.sector-icon-inline { width: 20px; height: 20px; stroke: #fff; flex-shrink: 0; }
.sector-card-label span {
  font-family: var(--display); font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.02em; color: #fff; line-height: 1.2;
}

/* ---------- Testimonials strip ---------- */
.testimonials-strip { position: relative; background: var(--navy); color: var(--green-light); padding: 2.8rem 0; overflow: hidden; }
.testimonials-deco {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.testimonials-deco svg { width: 100%; height: 100%; }
.testimonials-strip .wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.testimonials-label {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.9rem; color: var(--green-light); text-align: center;
}
.testimonials-btn.btn-outline {
  background: rgba(255,255,255,0.16); color: #fff; border-color: transparent;
}
.testimonials-btn.btn-outline:hover { background: #fff; color: var(--navy); }
.testimonials-btn svg { width: 18px; height: 18px; stroke: currentColor; margin-right: 0.1rem; }
.testimonials-sub {
  font-family: var(--display); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.55);
}

/* ---------- Payments strip ---------- */
.payments-strip { position: relative; background: var(--navy); color: #fff; padding: 2.8rem 0; overflow: hidden; }
.payments-deco {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.payments-deco svg { width: 100%; height: 100%; }
.payments-strip .wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
}
.payments-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; }
.payment-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.16); color: #fff;
  padding: 0.7rem 1.2rem;
  font-family: var(--display); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.payment-chip svg { width: 19px; height: 19px; stroke: #fff; flex-shrink: 0; }
.payment-logo { min-width: 84px; justify-content: center; }
.payment-img { display: block; width: auto; }
.payment-img-mp { height: 22px; }
.payment-img-visa { height: 19px; }
.mc-mark { display: inline-flex; align-items: center; margin-right: -0.15rem; }
.mc-circle { width: 16px; height: 16px; border-radius: 50%; display: inline-block; }
.mc-red { background: #EB001B; }
.mc-orange { background: #F79E1B; margin-left: -7px; mix-blend-mode: multiply; }
@media (prefers-reduced-motion: reduce) {
  .sectors-track { animation: none; }
}

/* ---------- FAQ ---------- */
#faq { background: var(--mist); }
.faq-layout { display: grid; grid-template-columns: 300px 1fr; gap: 2.2rem; align-items: start; max-width: 980px; margin: 0 auto; }
.faq-aside {
  background: var(--navy);
  color: #fff;
  padding: 2.2rem;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}
.faq-aside .benefit-icon { margin-bottom: 0.2rem; }
.faq-aside h3 { color: #fff; font-size: 1.25rem; }
.faq-aside p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin: 0; }
.faq-aside .btn-wa { width: 100%; margin-top: 0.3rem; }
.faq-aside-call {
  color: var(--green-light); font-family: var(--display); font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; transition: color 0.15s ease;
}
.faq-aside-call:hover { color: #fff; }
.faq-list { max-width: none; margin: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { border: 1px solid var(--line); border-radius: 0px; background: var(--paper); overflow: hidden; transition: border-color 0.15s ease; }
.faq-item.open { border-color: var(--blue-light); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.15rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--navy);
}
.faq-q .plus { font-size: 1.3rem; color: var(--green); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; background: var(--navy); }
.faq-a p { padding: 1.3rem 1.4rem; margin: 0; color: rgba(255,255,255,0.88); font-size: 0.96rem; white-space: pre-line; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; }
.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-list li {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1.1rem; background: var(--mist); border-radius: 0px; border: 1px solid var(--line);
}
.contact-list .icon {
  width: 38px; height: 38px; border-radius: 0px; background: var(--gradient); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-list .icon svg { width: 18px; height: 18px; stroke: #fff; }
.contact-list b { display: block; font-family: var(--display); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-dim); }
.contact-list a, .contact-list span.value { font-weight: 600; }
.map-frame { width: 100%; height: 100%; min-height: 320px; border: 0; border-radius: 0px; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--navy); color: rgba(255,255,255,0.85); padding: 4rem 0 2rem; overflow: hidden; }
.footer-deco {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center; opacity: 0.6;
}
.footer-deco svg { width: 100%; height: 100%; }
.site-footer .wrap { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--display); font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer-brand img { height: 56px; }
.footer-col p { color: rgba(255,255,255,0.65); margin-top: 0.9rem; font-size: 0.92rem; max-width: 320px; }
.footer-col h5 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 0.94rem; transition: color 0.15s ease; }
.footer-col ul a:hover { color: #fff; }
.footer-cta { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.footer-cta .btn-outline { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.3); }
.footer-cta .btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a { color: rgba(255,255,255,0.8); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37,211,102,0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 30px -6px rgba(37,211,102,0.6); }
.wa-float::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; position: relative; z-index: 1; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  100% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
}

/* ---------- Product page ---------- */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--ink-dim); margin-bottom: 2rem; }
.breadcrumb a { color: var(--blue); font-weight: 600; }
.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.product-gallery {
  border-radius: 0px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: radial-gradient(120% 100% at 50% 12%, #ffffff 0%, #eef3f8 55%, #e3ecf5 100%);
}
.product-gallery img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
.product-info .model-tag { font-family: var(--display); font-weight: 700; color: var(--blue); font-size: 0.9rem; letter-spacing: 0.04em; }
.product-info h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-top: 0.5rem; }
.product-info .price { font-family: var(--display); font-weight: 700; font-size: 1.7rem; margin-top: 0.9rem; }
.price .currency { font-size: 1rem; color: var(--ink-dim); font-weight: 700; margin-left: 0.4rem; }
.product-info .highlight-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.product-info .highlight-badges span {
  font-size: 0.82rem; font-weight: 600; color: var(--blue);
  background: var(--gradient-soft); border: 1px solid transparent; padding: 0.4rem 0.8rem; border-radius: 0px;
}
.product-info .desc { color: var(--ink-dim); margin-top: 1.4rem; font-size: 1rem; }
.product-info .cta-row { display: flex; gap: 0.9rem; margin-top: 1.8rem; flex-wrap: wrap; }

.product-details { margin-top: clamp(3rem, 6vw, 5rem); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 4vw, 3rem); }
.detail-block { margin-bottom: 2.4rem; }
.detail-block h2 { font-size: 1.3rem; margin-bottom: 1.1rem; }
.check-list { display: flex; flex-direction: column; gap: 0.7rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.96rem; color: var(--navy-soft); }
.check-list li::before {
  content: '\2713';
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; margin-top: 1px; flex-shrink: 0; border-radius: 0px;
  background: var(--gradient); color: #fff; font-size: 0.72rem; font-weight: 700; line-height: 1;
}
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 0.7rem 0; }
.spec-table td:first-child { color: var(--ink-dim); width: 45%; }
.spec-table td:last-child { font-weight: 600; text-align: right; }
.chip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-list span { font-size: 0.85rem; background: var(--mist); border: 1px solid var(--line); padding: 0.4rem 0.75rem; border-radius: 0px; color: var(--navy-soft); }
.note-box { background: var(--gradient-soft); border: 1px solid var(--line); border-radius: 0px; padding: 1.1rem 1.3rem; font-size: 0.9rem; color: var(--navy-soft); }
.related-cta { margin-top: 2rem; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-carousel { order: -1; }
  .benefits-grid { grid-template-columns: 1fr; }
  .feature-banner { grid-template-columns: 1fr; }
  .feature-banner-img { order: -1; min-height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-hero, .product-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .sectors-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .main-nav { position: fixed; top: 96px; left: 0; right: 0; bottom: 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 2rem var(--pad); gap: 1.6rem; transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.1rem; }
  .has-dropdown { width: 100%; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; border-left: 2px solid var(--line);
    margin: 0.9rem 0 0 0.2rem; padding: 0 0 0 0.9rem; display: none;
    width: 100%; min-width: 0;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown a { font-size: 0.95rem; padding: 0.55rem 0; }
  .menu-toggle { display: flex; }
  .nav-call { padding: 0.6rem 0.9rem; font-size: 0.72rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-carousel { display: none; }
  .hero-grid { gap: 0; }
  .hero-text h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-text p { font-size: 1rem; }
  .hero-deco { align-items: flex-start; padding-top: 1.5rem; }
  .hero-deco svg { height: 200px; }
}