:root {
  --agenda-blue: #1d2940;
  --agenda-blue-2: #243f98;
  --agenda-red: #f16462;
  --agenda-green: #16d0c5;
  --agenda-text: #111111;
  --agenda-muted: #6b7280;
  --agenda-border: #e5e7eb;
  --agenda-bg: #f5f7fa;
  --agenda-white: #ffffff;
}

/* =========================
   PAGE
========================= */
/*.bw-page-agenda {
  background: var(--agenda-bg);
}*/

.bw-page-agenda {
  background-color: var(--agenda-bg);
  position: relative;
  overflow-x: hidden;
}

.bw-page-agenda::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background-image: url("../images/agenda/register-bg-desktop.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;

  opacity: 0.08;
  pointer-events: none;
}

/* =========================
   HERO / BREADCRUMB
========================= */
.article-breadcrumb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left,
      rgba(22, 208, 197, 0.18),
      transparent 34%
    ),
    radial-gradient(circle at bottom right,
      rgba(241, 100, 98, 0.18),
      transparent 32%
    );
  pointer-events: none;
}

.article-breadcrumb-hero {
  min-height: 360px;
  padding: 120px 0 70px;
  background-color: #333673;
  background-image:
    linear-gradient(
      90deg,
      rgba(29, 41, 64, 0.78),
      rgba(36, 63, 152, 0.48)
    ),
    url("../images/agenda/agenda-hero-bg-desktop.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.article-container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.74);
}

.article-breadcrumb a {
  color: rgba(255,255,255,0.74);
  text-decoration: none;
}

.article-breadcrumb strong {
  color: #ffffff;
}

.article-breadcrumb-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

/* =========================
   SECTION
========================= */
.agenda-section {
  padding: 70px 0 100px;
}

.agenda-container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.agenda-intro {
  max-width: 880px;
  margin-bottom: 40px;
}

.agenda-intro p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--agenda-muted);
}

/* =========================
   TABS
========================= */
.agenda-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.agenda-tab {
  min-width: 180px;
  border: none;
  border-radius: 26px;
  background: #ffffff;
  padding: 20px 26px;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.agenda-tab span {
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  color: var(--agenda-blue);
  margin-bottom: 8px;
}

.agenda-tab small {
  display: block;
  font-size: 15px;
  color: var(--agenda-muted);
  font-weight: 700;
}

.agenda-tab:hover {
  transform: translateY(-4px);
}

.agenda-tab.is-active {
  background: linear-gradient(
    135deg,
    var(--agenda-red),
    #ff847d
  );
}

.agenda-tab.is-active span,
.agenda-tab.is-active small {
  color: #ffffff;
}

/* =========================
   DAYS
========================= */
.agenda-day {
  display: none;
}

.agenda-day.is-active {
  display: block;
}

/* =========================
   TIMELINE
========================= */
.agenda-timeline {
  display: grid;
  gap: 24px;
}

/* =========================
   CARD
========================= */
.agenda-card {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  background: #ffffff;
  border-radius: 34px;
  padding: 28px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(17, 24, 39, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.agenda-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(36, 63, 152, 0.03),
      rgba(22, 208, 197, 0.03)
    );
  pointer-events: none;
}

.agenda-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 60px rgba(17, 24, 39, 0.12);
}

.agenda-time {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 140px;

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      var(--agenda-blue-2),
      var(--agenda-blue)
    );

  color: #ffffff;

  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;

  padding: 20px;
}

.agenda-card-body {
  position: relative;
  z-index: 2;
}

.agenda-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(241, 100, 98, 0.12);
  color: var(--agenda-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.agenda-card h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--agenda-text);
  letter-spacing: -0.03em;
}

.agenda-card p {
  margin: 0;
  color: var(--agenda-muted);
  font-size: 17px;
  line-height: 1.8;
}

/* =========================
   REVEAL
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

  .article-breadcrumb-hero {
    padding: 120px 0 60px;
  }

  .agenda-card {
    grid-template-columns: 1fr;
  }

  .agenda-time {
    min-height: 110px;
    font-size: 24px;
  }

  .agenda-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {

  .agenda-section {
    padding: 50px 0 70px;
  }

  .agenda-tabs {
    gap: 14px;
  }

  .agenda-tab {
    width: 100%;
    min-width: unset;
  }

  .agenda-tab span {
    font-size: 34px;
  }

  .agenda-card {
    padding: 22px;
    border-radius: 26px;
  }

  .agenda-time {
    border-radius: 22px;
    font-size: 22px;
  }

  .agenda-card h2 {
    font-size: 24px;
  }

  .agenda-card p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {

  .bw-page-agenda::before {
    background-image: url("../images/agenda/register-bg-mobile.png");
    background-size: cover;
    background-position: center top;
    opacity: 0.08;
  }
  
  .article-breadcrumb-hero {
    min-height: 280px;
    padding: 96px 0 52px;
    background-image:
      linear-gradient(
        90deg,
        rgba(29, 41, 64, 0.82),
        rgba(36, 63, 152, 0.45)
      ),
      url("../images/agenda/agenda-hero-bg-mobile.png");
    background-position: center center;
  } 

}

.agenda-highlight-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  align-items: center;

  width: min(100%, 920px);
  margin: 0 0 34px;

  padding: 24px;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(10px);
}

.agenda-highlight-icon {
  min-height: 132px;
  border-radius: 26px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  background: linear-gradient(135deg, #16d0c5, #f16462);
  color: #ffffff;
  text-align: center;
}

.agenda-highlight-icon span {
  font-size: 56px;
  line-height: 0.9;
  font-weight: 900;
}

.agenda-highlight-icon small {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 800;
}

.agenda-highlight-content {
  min-width: 0;
}

.agenda-highlight-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 12px;

  border-radius: 999px;
  background: rgba(22, 208, 197, 0.12);
  color: #04766f;

  font-size: 13px;
  font-weight: 900;
}

.agenda-highlight-content h2 {
  margin: 0 0 8px;
  color: #111111;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.agenda-highlight-content p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 767px) {
  .agenda-highlight-card {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 24px;
  }

  .agenda-highlight-icon {
    min-height: 110px;
  }

  .agenda-highlight-icon span {
    font-size: 48px;
  }
}