/* blindaje-ia.css — estilos exclusivos de Blindaje IA */

/* Hero: slideshow de video (mismo patrón que video-ia.html y avatares.html, estilos base en shared.css) */
.page-hero .section-tag {
  position: relative;
  z-index: 2;
  color: var(--accent-light);
}

/* Intro */
.intro-text {
  max-width: 640px;
}

/* Qué incluye (cap-grid) */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--gray-200);
  margin-top: 2.5rem;
  border: 1.5px solid var(--gray-200);
}

.cap-card {
  background: var(--white);
  padding: 2rem;
}

.cap-num {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}

.cap-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.cap-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
}

/* Para quién es esto (sección oscura, un solo párrafo) */
.audience-text {
  max-width: 640px;
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.85;
  font-weight: 300;
}

/* Proceso (wide-layers ya definidos en shared.css; tipografía local en fondo claro) */
.step-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
}

/* CTA — fondo blanco */
.cta-section {
  border-top: 1px solid var(--gray-200);
}

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

  .process .wide-layers {
    border: none;
    border-radius: 0;
  }

  .process .wide-layer {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
  }

  .process .wide-layer:last-child {
    border-bottom: none;
  }
}
