*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0162ca;
  --blue-dark: #014ea0;
  --blue-light: #e8f1fc;
  --blue-mid: #0a7af5;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Mulish', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(1,98,202,.12);
  --shadow-lg: 0 10px 40px rgba(1,98,202,.18);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 99px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo-extra {
  height: 44px;
  width: auto;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(1,98,202,.1); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 55px; width: auto; }
.nav-logo-text {
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  color: var(--blue); letter-spacing: -.5px;
}
.nav-logo-text span { color: var(--gray-800); }
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  color: var(--gray-600); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  padding: 10px 22px; border-radius: 8px; text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }
.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-btn span {
  display: block; width: 24px; height: 2px; background: var(--gray-800);
  margin: 5px 0; transition: .3s; border-radius: 2px;
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--blue);
  padding: 160px 24px 100px;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(10,122,245,.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(0,0,0,.25) 0%, transparent 60%),
    linear-gradient(135deg, #014ea0 0%, #0162ca 50%, #0a7af5 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-shape {
  position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; z-index: 1;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.hero-shape::before {
  content: ''; position: absolute; inset: 60px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.06);
}
.hero-shape::after {
  content: ''; position: absolute; inset: 130px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.06);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  padding: 6px 14px; border-radius: 99px; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero-title {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white); line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-title span { color: #7ec8ff; }
.hero-sub {
  font-family: var(--font-body); font-size: 1.05rem; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--blue);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 16px 30px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 16px 30px; border-radius: 10px; text-decoration: none;
  border: 2px solid rgba(255,255,255,.4);
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); }
.hero-trust {
  margin-top: 44px;
  display: flex; align-items: center; gap: 20px;
  font-family: var(--font-body); font-size: .85rem; color: rgba(255,255,255,.65);
}
.hero-trust-divider { width: 1px; height: 30px; background: rgba(255,255,255,.2); }
.hero-trust-item { display: flex; align-items: center; gap: 6px; }
.hero-trust-item svg { width: 16px; height: 16px; color: #7ec8ff; }

/* ── HERO CARD ── */
.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.hero-card-icon {
  width: 48px; height: 48px; background: var(--white);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width: 26px; height: 26px; color: var(--blue); }
.hero-card-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white);
}
.hero-card-sub { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-stat {
  background: rgba(255,255,255,.08); border-radius: 10px; padding: 16px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: var(--white);
}
.hero-stat-label { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.hero-monitoring {
  margin-top: 16px; background: rgba(255,255,255,.08); border-radius: 10px;
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between;
}
.hero-monitoring-text { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 600; }
.hero-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3);
  border-radius: 99px; padding: 4px 10px;
  font-size: .72rem; font-weight: 700; color: #86efac;
}
.hero-pill-dot {
  width: 6px; height: 6px; background: #4ade80; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gray-900);
  padding: 28px 24px;
}
.trust-bar-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.7);
}
.trust-item svg { width: 22px; height: 22px; color: #7ec8ff; flex-shrink: 0; }
.trust-item-text { font-size: .88rem; font-weight: 600; }
.trust-divider { width: 1px; height: 32px; background: rgba(255,255,255,.1); }

/* ── SECTIONS SHARED ── */
section { padding: 90px 24px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700; font-size: .75rem;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gray-900); line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--gray-600); line-height: 1.7;
  max-width: 580px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── PRODUCTOS ── */
.products { background: var(--gray-50); }
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 32px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.product-icon {
  width: 60px; height: 60px; background: var(--blue-light);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.product-icon svg { width: 30px; height: 30px; color: var(--blue); }
.product-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--gray-900); margin-bottom: 10px;
}
.product-desc { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }
.product-features { margin-top: 20px; list-style: none; }
.product-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .83rem; color: var(--gray-600); margin-bottom: 8px;
}
.product-features li::before {
  content: ''; display: block; width: 16px; height: 16px; flex-shrink: 0;
  background: var(--blue-light); border-radius: 50%; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l2.5 2.5L11.5 5' stroke='%230162ca' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── EQUIPMENT CHIPS ── */
.equip-section {
  background: var(--white); padding: 0 24px 90px;
}
.equip-inner { max-width: 1180px; margin: 0 auto; }
.equip-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  color: var(--gray-800); margin-bottom: 24px; text-align: center;
}
.equip-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.equip-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 10px; padding: 10px 16px;
  font-size: .88rem; font-weight: 600; color: var(--gray-700);
  transition: border-color .2s, color .2s;
}
.equip-chip:hover { border-color: var(--blue); color: var(--blue); }
.equip-chip svg { width: 18px; height: 18px; color: var(--blue); }

/* ── EQUIP CAROUSEL ── */
.equip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.equip-title {
  grid-column: 1 / -1;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  color: var(--gray-800); margin-bottom: 8px; text-align: center;
}
.equip-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.equip-carousel {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.equip-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.equip-slide-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
}
.equip-slide-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.equip-slide-img-wrap img:hover { transform: scale(1.03); }
.equip-slide-label {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  color: var(--gray-800); margin-top: 14px;
}
.equip-arrow {
  position: absolute; top: calc(50% - 20px); transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: background .2s, border-color .2s;
  z-index: 2;
}
.equip-arrow:hover { background: var(--blue); border-color: var(--blue); }
.equip-arrow:hover svg { stroke: var(--white); }
.equip-arrow svg { width: 18px; height: 18px; stroke: var(--gray-600); transition: stroke .2s; }
.equip-arrow-prev { left: 10px; }
.equip-arrow-next { right: 10px; }
.equip-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 16px;
}
.equip-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: var(--gray-200); border: none; cursor: pointer;
  transition: background .2s, width .3s;
  padding: 0;
}
.equip-dot.active { background: var(--blue); width: 24px; }

.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 100%;
  align-content: stretch
}
.equip-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 10px; padding: 12px 14px;
  font-size: .85rem; font-weight: 600; color: var(--gray-700);
  transition: border-color .2s, color .2s, background .2s;
  align-items: center;
  height: 100%;
}
.equip-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.equip-chip svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

@media (max-width: 900px) {
  .equip-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .equip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 600px) {
  .equip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── HOW IT WORKS ── */
.how { background: var(--blue); }
.how .section-title { color: var(--white); }
.how .section-sub { color: rgba(255,255,255,.7); }
.how .section-tag { color: #7ec8ff; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 44px; left: calc(12.5%); right: calc(12.5%);
  height: 2px; background: rgba(255,255,255,.2);
}
.step { text-align: center; padding: 0 16px; position: relative; }
.step-num {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: var(--white);
}
.step-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--white); margin-bottom: 10px;
}
.step-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-visual {
  background: var(--blue-light); border-radius: var(--radius-lg);
  padding: 40px; display: flex; flex-direction: column; gap: 16px;
}
.why-visual-card {
  background: var(--white); border-radius: var(--radius);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.why-visual-icon {
  width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-visual-icon svg { width: 22px; height: 22px; color: var(--blue); }
.why-visual-text { font-weight: 700; font-size: .92rem; color: var(--gray-800); }
.why-visual-sub { font-size: .8rem; color: var(--gray-400); margin-top: 2px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-item-icon {
  width: 50px; height: 50px; background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.why-item-icon svg { width: 24px; height: 24px; color: var(--blue); }
.why-item-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--gray-900); margin-bottom: 6px;
}
.why-item-text { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 32px; position: relative;
  transition: transform .25s, box-shadow .25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-quote {
  font-size: 3.5rem; line-height: 1; color: var(--blue-light);
  font-family: Georgia, serif; margin-bottom: 16px; display: block;
}
.testi-text {
  font-size: .93rem; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white);
}
.testi-name { font-weight: 700; font-size: .92rem; color: var(--gray-900); }
.testi-role { font-size: .78rem; color: var(--gray-400); margin-top: 2px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; fill: #f59e0b; color: #f59e0b; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .4s ease;
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.04);
}
.team-info {
  padding: 24px;
}
.team-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.team-role {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--blue);
  margin-bottom: 12px;
}
.team-bio {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.team-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.team-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
.team-wa svg {
  width: 16px; height: 16px; flex-shrink: 0;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq-inner-max { max-width: 780px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--blue); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-question-text {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--gray-900); line-height: 1.4;
}
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--blue); }
.faq-arrow svg { width: 14px; height: 14px; color: var(--blue); transition: color .2s; }
.faq-item.open .faq-arrow svg { color: var(--white); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .92rem; color: var(--gray-600); line-height: 1.75;
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  position: relative; aspect-ratio: 1;
  background: var(--blue); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.about-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(10,122,245,.5) 0%, transparent 55%),
    linear-gradient(135deg, #014ea0 0%, #0162ca 100%);
}
.about-visual-shield {
  position: relative; z-index: 1;
  width: 140px; height: 140px;
  background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.2);
  border-radius: 40% 40% 45% 45%;
  display: flex; align-items: center; justify-content: center;
}
.about-visual-shield svg { width: 72px; height: 72px; color: var(--white); }
.about-stats {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
}
.about-stat-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 10px;
  padding: 14px 12px; text-align: center;
}
.about-stat-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--white);
}
.about-stat-label { font-size: .7rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.about-text p { font-size: .97rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.about-adt {
  display: flex; align-items: center; gap: 14px;
  background: var(--blue-light); border-radius: 10px; padding: 16px 20px; margin-top: 24px;
}
.about-adt svg { width: 28px; height: 28px; color: var(--blue); flex-shrink: 0; }
.about-adt-text { font-size: .88rem; color: var(--gray-700); line-height: 1.5; }
.about-adt-text strong { color: var(--blue); }

/* ── CTA FORM ── */
.cta-form { background: var(--blue); padding: 90px 24px; }
.cta-form-inner {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start;
}
.cta-form .section-title { color: var(--white); margin-bottom: 12px; }
.cta-form .section-sub { color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-form .section-tag { color: #7ec8ff; }
.cta-benefits { display: flex; flex-direction: column; gap: 16px; }
.cta-benefit {
  display: flex; align-items: flex-start; gap: 12px;
}
.cta-benefit-icon {
  width: 32px; height: 32px; background: rgba(255,255,255,.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-benefit-icon svg { width: 16px; height: 16px; color: var(--white); }
.cta-benefit-text { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.cta-benefit-text strong { color: var(--white); font-weight: 700; }

.form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.form-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  color: var(--gray-900); margin-bottom: 6px;
}
.form-sub { font-size: .88rem; color: var(--gray-400); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-label {
  display: block; font-weight: 700; font-size: .82rem; color: var(--gray-700);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1.5px solid var(--gray-200); background: var(--gray-50);
  font-family: var(--font-body); font-size: .93rem; color: var(--gray-900);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(1,98,202,.1);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; background: var(--blue); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 16px; border-radius: 10px; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.form-legal {
  text-align: center; font-size: .75rem; color: var(--gray-400); margin-top: 12px;
  line-height: 1.5;
}
.form-success {
  display: none; text-align: center; padding: 20px;
}
.form-success svg { width: 52px; height: 52px; color: #22c55e; margin: 0 auto 12px; display: block; }
.form-success-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--gray-900); margin-bottom: 8px;
}
.form-success-text { font-size: .9rem; color: var(--gray-600); }

/* ── FOOTER ── */
footer {
  background: var(--gray-900); color: rgba(255,255,255,.6);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none;
}
.footer-logo img { height: 38px; }
.footer-logo-text {
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  color: var(--white);
}
.footer-about { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }
.footer-heading {
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  color: var(--white); letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.5); text-decoration: none; font-size: .88rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: #7ec8ff; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; font-size: .82rem;
}
.footer-adt {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); border-radius: 6px; padding: 6px 12px;
  font-size: .78rem; color: rgba(255,255,255,.4);
}
.footer-adt svg { width: 14px; height: 14px; color: #7ec8ff; }

.footer-email-copy {
  cursor: pointer;
  transition: color .2s;
  user-select: none;
}

/* ── FLOATING WHATSAPP ── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.55); }
.wa-btn svg { width: 30px; height: 30px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.3); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,0); }
}
.wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--gray-900); color: var(--white);
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  padding: 8px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-btn:hover .wa-tooltip { opacity: 1; }

/* ── ANIMATIONS ── */
/* .fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); } */
.fade-up {
  transition: opacity .6s ease, transform .6s ease;
}
.js-loaded .fade-up {
  opacity: 0;
  transform: translateY(30px);
}
.js-loaded .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--white); padding: 100px 24px 40px;
  flex-direction: column; gap: 24px;
  align-items: flex-start;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem;
  color: var(--gray-800); text-decoration: none; transition: color .2s;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .nav-cta { font-size: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .nav-mobile-btn { display: block; }
  .hero { padding: 130px 24px 80px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .trust-bar-inner { gap: 24px; }
  .trust-divider { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .why-grid, .about-grid, .cta-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.gracias-page {
      min-height: 100vh; display: flex; align-items: center; justify-content: center;
      background: var(--gray-50); padding: 40px 24px;
    }
    .gracias-card {
      background: var(--white); border-radius: var(--radius-lg);
      border: 1px solid var(--gray-200); padding: 60px 48px;
      max-width: 520px; width: 100%; text-align: center;
      box-shadow: var(--shadow-lg);
    }
    .gracias-icon {
      width: 72px; height: 72px; background: #dcfce7; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
    }
    .gracias-icon svg { width: 36px; height: 36px; color: #22c55e; }
    .gracias-title {
      font-family: var(--font-head); font-weight: 800; font-size: 1.8rem;
      color: var(--gray-900); margin-bottom: 12px; letter-spacing: -.5px;
    }
    .gracias-sub {
      font-size: 1rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px;
    }
    .gracias-wa {
      display: inline-flex; align-items: center; gap: 8px;
      background: #25d366; color: #fff;
      font-family: var(--font-head); font-weight: 700; font-size: .95rem;
      padding: 14px 28px; border-radius: 10px; text-decoration: none;
      transition: background .2s;
    }
    .gracias-wa:hover { background: #1ebe5d; }
    .gracias-wa svg { width: 18px; height: 18px; fill: white; }
    .gracias-back {
      display: block; margin-top: 16px;
      font-size: .85rem; color: var(--gray-400); text-decoration: none;
      transition: color .2s;
    }
    .gracias-back:hover { color: var(--blue); }

    /* ── POLÍTICAS ── */
.politicas-page {
  padding: 120px 24px 80px;
  min-height: 100vh;
  background: var(--gray-50);
}
.politicas-container {
  max-width: 780px;
  margin: 0 auto;
}
.politicas-header {
  margin-bottom: 48px;
}
.politicas-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gray-900); letter-spacing: -1px;
  margin-bottom: 8px; margin-top: 12px;
}
.politicas-meta {
  font-size: .85rem; color: var(--gray-400);
}
.politicas-body {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 48px;
}
.politicas-block {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
}
.politicas-block-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.politicas-block-icon svg {
  width: 22px; height: 22px; color: var(--blue);
}
.politicas-block-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--gray-900); margin-bottom: 10px;
}
.politicas-block-text {
  font-size: .92rem; color: var(--gray-600); line-height: 1.75;
}
.politicas-contact-list {
  display: flex; flex-direction: column; gap: 10px; margin-top: 16px;
}
.politicas-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 600; color: var(--gray-700);
  text-decoration: none; transition: color .2s;
}
.politicas-contact-item svg {
  width: 18px; height: 18px; color: var(--blue); flex-shrink: 0;
}
a.politicas-contact-item:hover { color: var(--blue); }
.politicas-back {
  display: inline-flex; align-items: center;
  font-size: .88rem; font-weight: 600; color: var(--gray-400);
  text-decoration: none; transition: color .2s;
}
.politicas-back:hover { color: var(--blue); }