@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  --azul-principal: #1e40af;
  --azul-secundario: #2563eb;
  --verde-acao: #16a34a;
  --cinza-texto: #475569;
  --cinza-claro: #f8fafc;
  --branco: #ffffff;
  --escuro: #0f172a;
  --borda: rgba(15, 23, 42, 0.12);
  --sombra: 0 20px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  color: var(--escuro);
  background: var(--cinza-claro);
}

a {
  color: inherit;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, filter .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--verde-acao), #22c55e);
  color: #fff;
}

.btn-ghost {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--azul-principal);
}

.btn-verde {
  background: linear-gradient(135deg, var(--azul-secundario), var(--azul-principal));
  color: #fff;
}

.btn-cta {
  background: linear-gradient(135deg, var(--azul-secundario), var(--azul-principal));
  color: #fff;
}

.btn-cta-outline {
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.5);
  color: var(--azul-secundario);
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.86);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  backdrop-filter: blur(14px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f8fafc;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
}

.logo-img {
  height: 36px;
}

.brand-text strong {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text small {
  display: block;
  font-size: 12px;
  opacity: .7;
  color: #cbd5f5;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(148, 197, 255, 0.4);
  background: rgba(15, 23, 42, 0.7);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #e2e8f0;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.nav {
  position: absolute;
  top: 100%;
  left: 18px;
  right: 18px;
  background: #0f172a;
  border: 1px solid rgba(148, 197, 255, 0.25);
  border-radius: 16px;
  padding: 14px;
  display: none;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.nav.is-open {
  display: flex;
}

.nav-link {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 6px;
  border-radius: 10px;
}

.nav-link:hover {
  background: rgba(37, 99, 235, 0.12);
}

.nav-cta {
  display: grid;
  gap: 10px;
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 16px;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
  }

  .nav-link {
    padding: 0;
  }
}

/* =========================
   HERO
========================= */
.hero--new {
  position: relative;
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  overflow: hidden;
}

.hero--new::before,
.hero--new::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 70%);
  animation: floatHalo 10s ease-in-out infinite;
}

.hero--new::before {
  top: -140px;
  right: -120px;
}

.hero--new::after {
  bottom: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 70%);
  animation-delay: -3s;
}

@keyframes floatHalo {
  0%, 100% { transform: translateY(0px); opacity: .8; }
  50% { transform: translateY(12px); opacity: 1; }
}

.hero-wrap {
  display: grid;
  gap: 16px;
}

@media (min-width: 980px) {
  .hero-wrap {
    grid-template-columns: 1.35fr 0.65fr;
    align-items: start;
    grid-template-areas:
      "carousel info"
      "live info";
  }

  .hero-carousel { grid-area: carousel; }
  .hero-info-card { grid-area: info; }
  .hero-live-grid { grid-area: live; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 12px; margin-top: 0; }

  .hero-live-card {
    padding: 14px;
    border-radius: 20px;
    gap: 12px;
  }

  .hero-live-title {
    font-size: 1.02rem;
  }

  .hero-live-badge {
    min-height: 30px;
    padding: 0 10px 0 20px;
    font-size: 10px;
  }

  .hero-live-units {
    gap: 8px;
  }

  .hero-live-unit {
    padding: 10px 8px;
    border-radius: 16px;
  }

  .hero-live-unit strong {
    font-size: 1.05rem;
  }

  .hero-live-unit span {
    font-size: 10px;
  }

  .hero-live-copy {
    font-size: 13px;
    line-height: 1.5;
  }
}
.hero-carousel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: var(--sombra);
}

.hero-carousel::after {
  content: \"\";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.25), transparent 55%);
  pointer-events: none;
}

.hero-carousel-track {
  display: flex;
  transition: transform 420ms ease;
}

.hero-slide {
  flex: 0 0 100%;
}

.hero-slide img {
  width: 100%;
  height: clamp(220px, 34vw, 520px);
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.hero-carousel:hover .hero-slide img {
  transform: scale(1.02);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-size: 30px;
  display: grid;
  place-items: center;
}

.hero-prev { left: 12px; }
.hero-next { right: 12px; }

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .45);
}

.hero-dot.is-active { background: rgba(255, 255, 255, .95); }

.hero-info-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--sombra);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 16px 30px -22px rgba(30, 64, 175, 0.65);
}

.hero-title {
  margin: 12px 0 10px;
  font-size: clamp(22px, 2.4vw, 32px);
}

.hero-desc {
  color: var(--cinza-texto);
  line-height: 1.6;
}

.hero-meta-grid {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.hero-meta-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,246,255,0.96));
  border: 1px solid rgba(30, 64, 175, 0.12);
  box-shadow: 0 18px 34px -28px rgba(15, 23, 42, 0.28);
  min-width: 0;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hero-meta-item::after {
  content: "";
  position: absolute;
  inset: auto -20px -26px auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 68%);
  pointer-events: none;
}

.hero-meta-item:hover {
  transform: translateY(-1px);
  border-color: rgba(30, 64, 175, 0.18);
  box-shadow: 0 20px 36px -26px rgba(30, 64, 175, 0.22);
}

.hero-meta-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.16), rgba(59, 130, 246, 0.08));
  display: grid;
  place-items: center;
  color: #1d4ed8;
  border: 1px solid rgba(29, 78, 216, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

.hero-meta-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.hero-meta-label {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
}

.hero-meta-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f172a;
  white-space: normal;
  word-break: break-word;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.hero-actions .hero-btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  color: #fff;
  border-color: rgba(30, 64, 175, 0.4);
  box-shadow: 0 18px 32px -22px rgba(30, 64, 175, 0.6);
}

.hero-actions .hero-btn-primary:hover {
  filter: brightness(1.04);
}

.hero-actions .hero-btn-ghost {
  background: rgba(29, 78, 216, 0.08);
  border-color: rgba(29, 78, 216, 0.18);
  color: #1d4ed8;
}

.hero-live-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hero-live-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(30, 64, 175, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,246,255,0.96));
  box-shadow: 0 28px 48px -36px rgba(15, 23, 42, 0.44);
}

.hero-live-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.95), rgba(96, 165, 250, 0.7), transparent);
}

.hero-live-card::after {
  content: "";
  position: absolute;
  inset: auto -34px -38px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.14), transparent 72%);
  pointer-events: none;
}

.hero-live-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.hero-live-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
}

.hero-live-title {
  margin: 8px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.2;
  color: #0f172a;
}

.hero-live-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px 0 22px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.1);
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-live-badge::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  animation: heroPulseDot 1.8s ease-out infinite;
}

.hero-live-badge--secondary {
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
}

.hero-live-badge--secondary::before {
  background: #64748b;
  box-shadow: 0 0 0 0 rgba(100, 116, 139, 0.35);
}

.hero-live-units {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-live-unit {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(246,249,255,0.95), rgba(231,239,255,0.92));
  border: 1px solid rgba(29, 78, 216, 0.12);
  text-align: center;
}

.hero-live-unit strong {
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1;
  color: #0f172a;
}

.hero-live-unit span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
}

.hero-live-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  max-width: 58ch;
}

.hero-live-units.is-static {
  display: none;
}

.hero-live-card.is-static {
  gap: 10px;
}

@keyframes heroPulseDot {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.38); }
  70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

@media (max-width: 720px) {
  .hero-live-grid {
    margin-top: 14px;
  }

  .hero-live-card {
    padding: 14px;
    border-radius: 20px;
    gap: 12px;
  }

  .hero-live-head {
    align-items: center;
  }

  .hero-live-title {
    font-size: 1rem;
  }

  .hero-live-badge {
    min-height: 30px;
    padding: 0 10px 0 20px;
    font-size: 10px;
  }

  .hero-live-units {
    gap: 8px;
  }

  .hero-live-unit {
    padding: 10px 8px;
    border-radius: 16px;
  }

  .hero-live-unit strong {
    font-size: 1.05rem;
  }

  .hero-live-copy {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 560px) {
  .hero-live-unit--seconds {
    display: none;
  }

  .hero-live-units {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================
   SECTIONS
========================= */
.sec {
  padding: 56px 0;
}

.sec-wrap {
  display: grid;
  gap: 18px;
}

.sec-title {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 28px);
}

.sec-subtitle,
.sec-text {
  margin: 0;
  color: var(--cinza-texto);
  line-height: 1.7;
  font-size: 15px;
}

.sec--sobre .sec-text,
.sec--downloads .sec-text {
  text-align: justify;
}

.sec-head--center {
  text-align: center;
  margin: 0 auto;
}

.sec-note {
  font-size: 14px;
  color: var(--cinza-texto);
}

.sec-note--center {
  text-align: center;
}

.cards-grid {
  display: grid;
  gap: 14px;
}

.cards-grid--features,
.cards-grid--steps,
.cards-grid--highlights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid--highlights-primary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid--highlights-secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  min-width: 0;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-principal);
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.card-title {
  margin: 12px 0 8px;
  font-size: 16px;
  font-weight: 800;
}

.card-text {
  margin: 0;
  color: var(--cinza-texto);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.muted { opacity: .8; }

.empty {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 16px;
}

.card--step {
  position: relative;
  padding-top: 24px;
}

.step-badge {
  position: absolute;
  top: -12px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--azul-principal);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.highlight-label {
  margin: 10px 0 4px;
  font-size: 13px;
  color: var(--cinza-texto);
  overflow-wrap: anywhere;
}

.highlight-value {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.highlight-value--text {
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.35;
}

.highlight-note {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  overflow-wrap: anywhere;
}

.card--highlight {
  position: relative;
  overflow: hidden;
}

.card--highlight::after {
  content: "";
  position: absolute;
  inset: auto -34px -34px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
  pointer-events: none;
}

.card--highlight-featured {
  min-height: 138px;
  border-color: rgba(30, 64, 175, 0.16);
  box-shadow: 0 18px 38px -30px rgba(15, 23, 42, 0.34);
  animation: highlightFloat 6.8s ease-in-out infinite;
}

.card--highlight-featured .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.card--highlight-featured .highlight-label {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.card--highlight-featured .highlight-value {
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
}

.card--highlight-strong {
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  border-color: rgba(29, 78, 216, 0.28);
  color: #fff;
}

.card--highlight-strong .card-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.card--highlight-strong .highlight-label,
.card--highlight-strong .highlight-note,
.card--highlight-strong .highlight-value {
  color: #fff;
}

.card--highlight-strong::after {
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
}

.card--highlight-polo {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(232, 244, 255, 0.98));
}

.card--highlight-course {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239, 244, 255, 0.98));
}

.card--highlight-accommodation {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245, 247, 255, 0.98));
}

.card--highlight-polo .card-icon,
.card--highlight-course .card-icon,
.card--highlight-accommodation .card-icon {
  background: rgba(29, 78, 216, 0.12);
  color: #1d4ed8;
}

@keyframes highlightFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 18px 38px -30px rgba(15, 23, 42, 0.34);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px -30px rgba(30, 64, 175, 0.28);
  }
}

/* =========================
   PROGRAMACAO
========================= */
.datas-abas {
  display: flex;
  gap: 12px;
  margin: 18px 0 20px;
  flex-wrap: wrap;
}

.btn-data {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(30, 64, 175, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(239,244,255,0.96));
  color: #1e293b;
  font-weight: 700;
  box-shadow: 0 16px 34px -28px rgba(15, 23, 42, 0.4);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn-data.ativo {
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  color: #fff;
  border-color: rgba(30, 64, 175, 0.6);
  box-shadow: 0 18px 34px -24px rgba(30, 64, 175, 0.65);
}

.btn-data:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px -24px rgba(30, 64, 175, 0.35);
}

.hidden-day { display: none; }

.filtros-programacao {
  display: grid;
  gap: 12px;
}

.filter-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,247,255,0.96));
  border-radius: 18px;
  border: 1px solid rgba(30, 64, 175, 0.12);
  padding: 14px;
  display: grid;
  gap: 8px;
  box-shadow: 0 18px 34px -28px rgba(15, 23, 42, 0.38);
}

.filter-card label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #475569;
}

.filter-card select {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(30, 64, 175, 0.15);
  background: rgba(255,255,255,0.98);
  color: #0f172a;
}

.day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.day-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.1);
  color: #1d4ed8;
}

.table {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,255,0.96));
  border: 1px solid rgba(30, 64, 175, 0.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 48px -34px rgba(15, 23, 42, 0.38);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 120px 1.6fr 1fr 90px;
  gap: 12px;
  padding: 14px;
}

.table-head {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(30, 64, 175, 0.05));
  font-size: 12px;
  font-weight: 800;
  color: #1e293b;
}

.table-row {
  border-top: 1px solid rgba(30, 64, 175, 0.08);
  background: rgba(255,255,255,0.92);
}

.row-time {
  font-weight: 800;
  color: #1d4ed8;
}

.row-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(37, 99, 235, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-principal);
}

.row-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.row-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--escuro);
  margin-bottom: 6px;
}

.badge-tipo {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  background: rgba(29, 78, 216, 0.12);
  color: #1d4ed8;
  margin-bottom: 8px;
}

.badge-tipo.momento {
  background: rgba(148, 163, 184, 0.18);
  color: #475569;
}

.program-speaker {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.program-speaker-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.18), rgba(37, 99, 235, 0.08));
  color: var(--azul-principal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.program-speaker-avatar.is-image {
  background: rgba(30, 64, 175, 0.08);
}

.program-speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center;
}

.program-speaker-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.program-speaker-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
}

.program-speaker-copy strong {
  font-size: 14px;
  color: var(--escuro);
  line-height: 1.35;
}


.program-speaker-bio {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
  max-width: 58ch;
  overflow-wrap: anywhere;
}

.program-page {
  display: grid;
  gap: 18px;
}

.program-hero-card {
  position: relative;
  overflow: hidden;
}

.program-hero-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -45% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 68%);
  pointer-events: none;
}

.program-filter-shell {
  display: grid;
  gap: 16px;
}

.program-filter-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.program-clear-link {
  align-self: center;
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: none;
}

.program-filter-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.program-filter-actions {
  display: flex;
  justify-content: flex-end;
}

.program-empty-card {
  text-align: left;
}

.program-day-card {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.program-day-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.program-day-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
}

.program-day-title {
  margin: 6px 0 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.1;
  color: #0f172a;
}

.program-day-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(59, 130, 246, 0.08));
  color: #1d4ed8;
  font-weight: 800;
  white-space: nowrap;
}

.program-day-list {
  display: grid;
  gap: 14px;
}

.program-entry-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(30, 64, 175, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,255,0.94));
}

.program-entry-card.is-momento {
  border-color: rgba(100, 116, 139, 0.16);
}

.program-entry-time {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(59, 130, 246, 0.06));
  color: #1d4ed8;
}

.program-entry-time strong {
  font-size: 1.25rem;
  line-height: 1;
}

.program-entry-time span {
  font-size: 13px;
  color: #475569;
}

.program-entry-content {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.program-entry-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.program-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.1);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
}

.program-badge-muted {
  background: rgba(148, 163, 184, 0.16);
  color: #475569;
}

.program-badge-course {
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
}

.program-entry-title {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.3;
  color: #0f172a;
}

.program-entry-description {
  margin: 0;
  color: #475569;
  line-height: 1.72;
}

.program-entry-info-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.program-info-chip {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(30, 64, 175, 0.1);
  background: rgba(255,255,255,0.92);
}

.program-info-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
}

@media (max-width: 720px) {
  .program-speaker {
    gap: 10px;
  }

  .program-speaker-avatar {
    width: 44px;
    height: 44px;
  }

  .program-speaker-copy strong {
    font-size: 13px;
  }

  .program-speaker-bio {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .program-filter-top,
  .program-day-header {
    flex-direction: column;
    align-items: stretch;
  }

  .program-filter-grid {
    grid-template-columns: 1fr;
  }

  .program-filter-actions {
    justify-content: stretch;
  }

  .program-filter-actions .btn {
    width: 100%;
  }

  .program-entry-card {
    grid-template-columns: 1fr;
  }

  .program-entry-time {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: baseline;
  }

  .program-day-count {
    width: fit-content;
  }
}

/* =========================
   DOWNLOADS
========================= */
.downloads-grid {
  display: grid;
  gap: 14px;
}

.download-item {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  display: grid;
  gap: 8px;
}

.download-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, .12);
  display: grid;
  place-items: center;
  color: var(--azul-principal);
}

.download-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.download-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.download-name {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.download-hint {
  font-size: 13px;
  color: #64748b;
  overflow-wrap: anywhere;
}

/* =========================
   CONTACTS
========================= */
.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-info {
  display: grid;
  gap: 12px;
}

.contact-card-info {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  display: grid;
  place-items: center;
  color: var(--azul-principal);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 18px;
  padding: 22px;
}

.contact-alert {
  max-width: 980px;
  margin: 0 auto 16px;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.10);
}

.contact-alert--ok {
  background: rgba(22, 163, 74, 0.12);
}

.contact-alert--err {
  background: rgba(220, 38, 38, 0.12);
}

.contact-field {
  margin-bottom: 16px;
}

.contact-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.contact-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0 16px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--cinza-texto);
}

.contact-counter {
  font-size: 13px;
  opacity: .75;
}

.contact-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--azul-secundario), var(--azul-principal));
  color: #fff;
}

/* =========================
   HOTEIS
========================= */
.hotel-card-mapa {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.map-wrapper iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.hotel-info {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.hotel-info-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}

.hotel-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.12);
  display: grid;
  place-items: center;
  color: var(--azul-principal);
}

.hotel-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  margin-top: 40px;
}

.footer-inner {
  display: grid;
  gap: 20px;
  padding: 32px 0;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand-logo {
  height: 56px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-heading {
  font-weight: 800;
  margin: 0 0 6px 0;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  opacity: .85;
}

.footer-logos {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px 0 10px;
  background: #111c36;
}

.footer-logos img {
  height: 40px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0 18px;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.7);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .table-head {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .cards-grid--features,
  .cards-grid--steps,
  .cards-grid--highlights {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 980px) {
  .cards-grid--features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards-grid--steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards-grid--highlights { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cards-grid--highlights-primary { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cards-grid--highlights-secondary { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .downloads-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
  .hotel-card-mapa { grid-template-columns: 1.2fr 0.8fr; }
  .footer-inner { grid-template-columns: 1.2fr 0.8fr 1fr; }
  .filtros-programacao { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
