/* ===============================
   WRAPPER IA (NO TOCA NAVBAR)
================================ */
:root {
  --navbar-height: 80px; /* ajusta si tu navbar es más alta */
}

.ia-wrapper {
  background: #00aed6;
  padding-top: calc(3rem + var(--navbar-height));
  padding-bottom: 3rem;
}

/* ===============================
   CONTENEDOR
================================ */
.ia-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===============================
   HERO
================================ */
.ia-hero {
  background: #ffffff;
  padding: 4rem 2.5rem;
  border-radius: 32px;
  text-align: center;
  margin-bottom: 3rem;
}

.ia-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ia-hero p {
  color: #64748b;
  max-width: 720px;
  margin: auto;
}

/* ===============================
   TÍTULOS
================================ */
.ia-section-title h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* ===============================
   CONCEPTOS
================================ */
.ia-concepts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.concept-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid #e5e7eb;
}

/* ===============================
   PROMPTS Y EJEMPLOS
================================ */
.ia-prompts,
.ia-example {
  background: #ffffff;
  padding: 3.5rem 2.5rem;
  border-radius: 32px;
  margin-bottom: 4rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }

  .ia-hero {
    padding: 2.5rem 1.5rem;
  }

  .ia-hero h1 {
    font-size: 2rem;
  }
}
