/* ============================================================
   TÉTHYS — pages/sessoes.css
   Estilos específicos da página Sessões
   ============================================================ */

.sessoes-page {
  --hero-h: clamp(390px, 46vw, 600px);
}

/* Workshop/Evento — variante com texto a negrito e botão centrado */
.about-event-card h2,
.about-event-card p {
  font-weight: 700;
}

.about-event-card a {
  align-self: center;
}

/* ── Sessoes nav grid ── */
.sessoes-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--hero-rose);
  border-top: 48px solid var(--mauve);
}

.sessoes-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: var(--cream);
  padding: clamp(1.4rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  gap: 0.3rem;
  border-left: 1px solid rgba(250,242,225,0.12);
  transition: background 0.2s ease;
}

.sessoes-nav-item:first-child { border-left: none; }
.sessoes-nav-item:hover { background: rgba(0,0,0,0.08); }

.sessoes-nav-cat {
  font-family: var(--font-b);
  font-size: clamp(0.6rem, 0.7vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,242,225,0.65);
  margin: 0;
}

.sessoes-nav-title {
  font-family: var(--font-d);
  font-size: clamp(0.95rem, 1.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.4rem;
}

.sessoes-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(250,242,225,0.5);
  font-size: 0.75rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.sessoes-nav-item:hover .sessoes-nav-arrow {
  border-color: var(--cream);
  background: rgba(250,242,225,0.12);
}

@media (max-width: 700px) {
  .sessoes-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .sessoes-nav-item { border-left: none; border-top: 1px solid rgba(250,242,225,0.12); }
  .sessoes-nav-item:nth-child(-n+2) { border-top: none; }
}

/* ── Info Buttons (caixas de informação) ── */
.action-button.info-button {
  background: var(--cream);
  color: var(--dust-text);
}

.action-button.info-button:hover {
  background: var(--mauve);
  color: var(--cream);
}
