/* Reset mínimo y fuente */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: #1f2937; /* slate-800 */
  background: #f7f8fa;
  line-height: 1.6;
}

/* Contenedor principal */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
}
.hero h1 {
  margin: .25rem 0 0;
  font-size: 2.3rem;
  letter-spacing: .2px;
  color: #0d7a4a; /* verde sobrio */
}
.hero h2 {
  margin: .15rem 0 .75rem;
  font-weight: 400;
  color: #52606d; /* slate-500 */
  font-size: 1.15rem;
}
.lead {
  max-width: 720px;
  margin: .5rem auto 0;
  color: #334155; /* slate-700 */
}
.pill.soon {
  display: inline-block;
  margin: .35rem auto 0;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: #ecfdf5; /* green-50 */
  color: #065f46;      /* green-700 */
  font-weight: 700;
  border: 1px solid #a7f3d0; /* green-200 */
}

/* Sección categorías */
.categorias {
  margin-top: 2rem;
}
.categorias h3 {
  text-align: center;
  margin: 0 0 1.1rem;
  font-size: 1.4rem;
  color: #0f172a; /* slate-900 */
}

/* Acordeón */
.accordion {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

/* Cada bloque details actúa como tarjeta */
details {
  background: #fff;
  border: 1px solid #e5e7eb;   /* gray-200 */
  border-radius: 12px;
  padding: .9rem 1rem;
  transition: border-color .25s ease, box-shadow .25s ease, transform .08s ease;
}
details:hover { border-color: #cbd5e1; } /* slate-300 */
details[open] {
  border-color: #0ea5e9; /* sky-500 */
  box-shadow: 0 10px 24px rgba(2, 132, 199, .08);
}

/* summary: cabecera clicable */
summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
summary::-webkit-details-marker { display: none; }

/* Icono +/- sin imágenes ni JS */
summary::after {
  content: "+";
  font-weight: 700;
  color: #0ea5e9;
  flex: 0 0 auto;
}
details[open] > summary::after { content: "–"; }

/* Párrafo interior */
details > p {
  margin: .6rem 0 0;
  color: #475569; /* slate-600 */
}

/* Bloque Y MÁS… */
details.more { padding-bottom: 1rem; }

/* Grid flex responsive (1/2/3 col) */
.more-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: .75rem;
}
.card {
  flex: 1 1 100%;
  background: #fcfcfd;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  padding: .9rem 1rem;
  transition: transform .08s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-1px);
  border-color: #dbe6f3;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .06);
}
.card h4 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  color: #0f172a;
}

/* Badge Próximamente */
.soon-badge {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: #0f5132;
  background: #d1fae5; /* green-100 */
  border: 1px solid #a7f3d0; /* green-200 */
  padding: .15rem .5rem;
  border-radius: 999px;
}

/* Responsivo */
@media (min-width: 600px) {
  .card { flex: 1 1 calc(50% - .9rem); }
}
@media (min-width: 900px) {
  .card { flex: 1 1 calc(33.333% - .9rem); }
}

/* Contacto */
.contacto {
  margin-top: 2rem;
  text-align: center;
  color: #334155;
}
.contacto a {
  color: #0ea5e9;
  font-weight: 700;
  text-decoration: none;
}
.contacto a:hover { text-decoration: underline; }

/* Footer */
footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  color: #6b7280; /* gray-500 */
  font-size: .95rem;
}
