/* ========================= */
/* EXPOSITORES (LIMPIO) */
/* ========================= */

.expo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

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

/* ========================= */
/* EXPOSITOR PRO */
/* ========================= */

.expo-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.expo-card img {
  width: 100%;
  height: auto;
}

/* INFO */
.expo-info {
  padding: 15px;
  text-align: center;
}

.expo-info h3 {
  margin: 0;
  font-size: 18px;
  color: #12365A;
}

.expo-info p {
  font-size: 14px;
  margin: 8px 0;
  color: #555;
}

/* BOTÓN */
.expo-info .btn {
  margin-top: 10px;
  width: 100%;
}

/* ========================= */
/* INTRO CRIMINOLOGÍA PRO */
/* ========================= */

.intro-criminologia {
  margin-top: 30px;
}

.intro-box {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.intro-box h2 {
  margin-bottom: 10px;
  color: #12365A;
}

.intro-lead {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* GRID */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.intro-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 15px;
  font-size: 14px;
}

.intro-item strong {
  display: block;
  margin-bottom: 5px;
  color: #12365A;
}

/* MOBILE */
@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-box {
    padding: 20px;
  }

  .intro-lead {
    font-size: 14px;
  }
}