.logo-img    { height: 80px; }
.footer-logo { height: 46px; }

.brands-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}

.brands-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  flex: 1;
  scrollbar-width: none; 
  width:100%;
  min-width: 0;
}
.brands-carousel::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.brand-item {
  flex: 0 0 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: all 0.3s var(--ease);
}

.brand-item:hover {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.brand-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter 0.3s var(--ease);
}

.brand-item:hover img { filter: grayscale(0%); }

.brands-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  color: var(--navy);
  transition: all 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-arrow:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.hero { width: 100%; }

.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  height: clamp(520px, 80vh, 820px);
}

.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-img.active {
  opacity: 1;
  transition: opacity 1s ease;
}
.carousel-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,0.90) 0%,
    rgba(10,22,40,0.65) 50%,
    rgba(10,22,40,0.20) 100%
  );
  pointer-events: none; z-index: 1;
}

/* Caption */
.hero-caption {
  position: absolute;
  left: 8%; top: 50%;
  transform: translateY(-56%);
  z-index: 25;
  color: white;
  max-width: min(600px, 80%);
  pointer-events: auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.hero-caption h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero-caption em {
  font-style: normal;
  color: var(--accent);
}


.hero-caption p {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.72);
  margin-top: 20px;
  max-width: 400px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff; font-weight: 700;
  font-size: 14px; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(230,57,70,0.45);
}
.btn-hero-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,57,70,0.55);
}

.btn-hero-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.82);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transition: color 0.2s, border-color 0.2s;
}
.btn-hero-ghost:hover { color: #fff; border-color: #fff; }

/* Stats barra al nivel del hero */
.hero-stats {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  z-index: 2;
  background: #275ba8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 40px;
  gap: 0;
  width: 100%;
}


.hero-stat {
  display: flex; flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.hs-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hs-lbl {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-stat-div {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Carousel controls */
.carousel-btn {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  backdrop-filter: blur(6px);
  transition: all 0.2s;
  margin-top: -32px; /* offset for stats bar */
}
.carousel-btn:hover { background: rgba(255,255,255,0.18); }
#prev { left: 20px; }
#next { right: 20px; }

.carousel-dots {
  position: absolute; bottom: 80px; left: 8%;
  z-index: 20; display: flex; gap: 8px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--accent); width: 20px; border-radius: 3px; }

/* ══ SISTEMA DE BANDAS ══ */
.band {
  width: 100%;
  padding: 96px 0;
}

.band-white { background: var(--white); }
.band-soft  { background: var(--off-white); }
.band-navy  { background: var(--navy); }

.band-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 5;
}

.band-inner-center {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
}

.stats-band {
  background: var(--white);
  padding: 0 0 00px 0;
  position: relative;
  z-index: 3;
  width: 100%;
}

.stats-band .band-inner {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* ── EYEBROW TAG ── */
.eyebrow-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow-tag.light { color: rgba(255,255,255,0.45); }

/* ── BAND HEADER ── */
.band-header { margin-bottom: 56px; }

.band-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.band-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: #0f2040;;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
}
.band-title.light { color: var(--white); }

.band-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 16px; line-height: 1.6;
  margin-top: 12px; max-width: 480px;
}

/* ── BOTONES ── */
.btn-outline {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--navy); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 12px 24px;
  border: 2px solid var(--navy);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 28px;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ══ BLOQUE 2: ASIMÉTRICO ══ */
.asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.asym-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  color: #0f2040;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.asym-text h2 strong { color: #0f2040; }

.asym-text p {
  font-size: 15.5px; color: var(--text-soft);
  line-height: 1.75; max-width: 440px;
  text-align: justify;
}

.asym-highlight {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.highlight-card {
  flex: 1;
}

.highlight-card {
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 150px;
  justify-content: center;
}
.highlight-card.navy    { background: var(--navy); }
.highlight-card.accent  { background: var(--accent); }

.hc-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 64px; font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hc-num span { font-size: 40px; opacity: 0.7; }

.hc-text {
  font-size: 14px; color: rgba(255,255,255,0.72);
  line-height: 1.55; max-width: 220px;
  text-align: justify;
}

/* ══ BLOQUE 3: SERVICIOS GRID ══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}

.svc-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 36px 32px;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  position: relative;
  transition: background 0.25s;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.svc-card:nth-child(3n) { border-right: none; }
.svc-card:nth-child(n+4) { border-bottom: none; }

.svc-card:hover { background: rgba(255,255,255,0.07); }

.svc-icon {
  font-size: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-bottom: 4px;
  transition: background 0.2s;
}
.svc-card:hover .svc-icon { background: rgba(230,57,70,0.2); }

.svc-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); letter-spacing: 0.01em;
}

.svc-card p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.65; flex: 1;
  text-align: justify;
}

.svc-arrow {
  font-size: 18px; color: var(--accent);
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 4px;
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ══ BLOQUE 4: RAZONES (lista tipo tabla) ══ */
.reasons-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}

.reason-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.reason-item:hover { background: var(--off-white); margin: 0 -32px; padding: 40px 32px; }

.reason-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 56px; font-weight: 700;
  color: #8a8e93;
  line-height: 1; user-select: none;
}

.reason-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.reason-body p { 
  font-size: 14px; 
  color: var(--text-soft); 
  line-height: 1.65;
  text-align: justify;
}

.reason-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-light);
  padding: 6px 14px; border-radius: 99px;
  white-space: nowrap;
}

/* ══ BLOQUE 5: PRODUCTOS SHOWCASE ══ */
.prod-showcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.prod-tile {
  background: #e8e8e8;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s, border-color 0.28s;
  position: relative;
}
.prod-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.prod-tile-lg {
  grid-row: 1 / 3;
  min-height: 320px;
}

.prod-tile-inner {
  padding: 32px;
  display: flex; flex-direction: column; gap: 10px;
  height: 100%;
  justify-content: center;
  min-height: 220px;
}

.prod-cat-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-light);
  padding: 4px 10px; border-radius: 4px;
  align-self: flex-start;
}

.prod-tile h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.01em;
}
.prod-tile-lg h3 { font-size: 30px; }

.prod-tile p {
  font-size: 13.5px; color: var(--text-soft);
  line-height: 1.65;
  text-align: justify;
}

/* Línea de acento al hover */
.prod-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.prod-tile:hover::after { transform: scaleX(1); }

/* ══ BLOQUE 6: CTA ══ */
.band-cta { padding: 120px 0; }

.cta-sub {
  color: rgba(255,255,255,0.55);
  font-size: 16px; line-height: 1.65;
  max-width: 480px; margin-top: 16px; text-align: center;
}

.cta-actions {
  display: flex; gap: 14px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap; justify-content: center;
}

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .band-inner { padding: 0 40px; }
  .asymmetric { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card:nth-child(2n) { border-right: none; }
  .svc-card:nth-child(n+5) { border-bottom: none; }
  .svc-card:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 900px) {
  .band { padding: 64px 0; }
  .asymmetric { grid-template-columns: 1fr; gap: 40px; }
  .asym-highlight { flex-direction: row; }
  .highlight-card { flex: 1; }
  .prod-showcase { grid-template-columns: 1fr 1fr; }
  .prod-tile-lg { grid-row: auto; min-height: auto; }
  .reason-item { grid-template-columns: 64px 1fr; }
  .reason-tag  { display: none; }
  .hero-stats  { gap: 0; padding: 16px 20px; }
  .hero-stat   { padding: 0 20px; }
}

@media (max-width: 640px) {
  .logo-img { height: 46px; }
  .carousel-wrap { height: clamp(480px, 90vw, 580px); }
  .hero-caption { left: 20px; right: 20px; max-width: 100%; transform: translateY(-52%); }
  .hero-caption h1 { font-size: clamp(40px, 10vw, 56px); }
  .hero-stats { flex-wrap: wrap; gap: 0; padding: 14px 16px; }
  .hero-stat  { padding: 8px 16px; width: 50%; }
  .hero-stat-div { display: none; }
  .carousel-dots { left: 20px; bottom: 90px; }
  .band { padding: 56px 0; }
  .band-inner { padding: 0 20px; }
  .band-cta { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .svc-card:last-child { border-bottom: none; }
  .reason-item { grid-template-columns: 52px 1fr; gap: 16px; padding: 28px 0; }
  .reason-num  { font-size: 36px; }
  .reason-item:hover { margin: 0; padding: 28px 0; background: transparent; }
  .asym-highlight { flex-direction: column; }
  .prod-showcase { grid-template-columns: 1fr; }
  .band-header-split { flex-direction: column; align-items: flex-start; }
}