/* ============================================================
   tecnologia.css — Estilos específicos de tecnologia.html
   ============================================================ */

/* ── HERO TECNOLOGÍA ── */
.tech-hero {
  background: var(--color-dark);
  padding: 120px 200px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.tech-hero h1 {
  font-size: var(--font-size-7xl);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  max-width: 860px;
}

.tech-hero p {
  font-size: var(--font-size-xl);
  color: #B8D4B0;
  line-height: 1.6;
  max-width: 680px;
}

.tech-hero__divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
}

.tech-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.tech-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.tech-stat + .tech-stat {
  padding-left: 48px;
  border-left: 1px solid #2A4A2A;
}

.tech-stat__value {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-accent);
}

.tech-stat__label {
  font-size: var(--font-size-sm);
  color: #8FB88F;
}

/* ── FAB SECTION (Fabricación) ── */
.fab-sec {
  background: var(--color-white);
  padding: 80px var(--container-padding);
  overflow: hidden;
}

.fab-sec__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.fab-sec__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.fab-sec__hdr-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab-sec__hdr-left h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--color-text);
}

.fab-sec__nav {
  display: flex;
  gap: 10px;
}

.fab-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-border);
  background: white;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--color-text);
}
.fab-nav-btn--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}
.fab-nav-btn:hover { border-color: var(--color-primary); }

.fab-cards {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.fab-cards::-webkit-scrollbar { display: none; }

.fab-cards__row {
  display: flex;
  gap: 20px;
  width: max-content;
}

.fab-card {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab-card__img {
  height: 187px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fab-card h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
}

.fab-card p {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.fab-card__link {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

/* ── BRAND SEC (Sin royalties) ── */
.brand-sec {
  background: var(--color-light);
  padding: 80px var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.brand-sec h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
  max-width: 700px;
}

.brand-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.brand-pill {
  padding: 9px 20px;
  border-radius: var(--border-radius-xl);
  border: 1.5px solid var(--color-primary);
  background: white;
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-text);
}

.brand-stats {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  justify-content: center;
}

.brand-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand-stat__value {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.brand-stat__label {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  max-width: 220px;
  text-align: center;
}

.brand-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--color-border);
}

/* ── CTA TECNOLOGÍA ── */
.tech-cta {
  background: var(--color-dark);
  padding: 96px var(--container-padding);
  text-align: center;
}

.tech-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tech-cta h2 {
  font-size: 44px;
  font-weight: 800;
  color: white;
}

.tech-cta p {
  font-size: var(--font-size-lg);
  color: #8FB88F;
}

.tech-cta__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
