:root {
  --gp-yellow: #f0a500;
  --gp-yellow-dark: #f0a500;
  --gp-orange: #e45826;
  --gp-gray: #f5f7fa;

  --gp-accent: var(--gp-yellow);

  --bs-link-color: var(--gp-orange);
  --bs-link-hover-color: var(--gp-orange);
  --bs-link-color-rgb: #e45826;
  --bs-warning: var(--gp-yellow);
  --bs-warning-rgb: 240, 165, 0;
  --bs-warning-bg-subtle: rgba(240, 165, 0, 0.18);
  --bs-warning-border-subtle: rgba(240, 165, 0, 0.35);
  --bs-warning-text-emphasis: #6b4700;

  --font-title: "Ubuntu", sans-serif;
  --font-body: "Ubuntu", sans-serif;

  --gp-border: rgba(0, 0, 0, 0.08);

  --gp-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --gp-shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.06);
  --gp-shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
  --gp-shadow-xs: 0 12px 30px rgba(0, 0, 0, 0.06);

  --gp-radius: 8px;

  --gp-sticky-top: 1rem;
}

/* Base */
html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.gp-page {
  flex: 1 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  color: var(--gp-orange);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  color: #000;
}

h3 {
  font-size: 1.45rem;
  color: var(--gp-orange);
}

h4 {
  font-size: 1.2rem;
  color: var(--gp-orange);
}

h5 {
  font-size: 1rem;
  color: var(--gp-orange);
}

h6 {
  font-size: 0.9rem;
  color: var(--gp-orange);
}

/* Lists */
ul.gp-list {
  list-style: none;
  padding-left: 1.5rem;
}

ul.gp-list li {
  position: relative;
}

ul.gp-list li::before {
  content: "";
  position: absolute;
  left: -1.3rem;
  top: 0.65em;
  width: 0.55rem;
  height: 0.55rem;
  background-color: var(--gp-yellow);
  border-radius: 50%;
  border: 2px solid rgb(255 225 161);
  box-sizing: border-box;
}

/* Header / Navbar */
.gp-nav-wrap {
  background: var(--gp-yellow);
}

.gp-nav-accent {
  height: 3px;
  background: var(--gp-orange);
}

.gp-brand-img {
  height: 92px;
  width: auto;
  display: block;
}

.gp-toggler {
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  background: rgba(255, 255, 255, 0.15);
}

.gp-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.gp-toggler-bars {
  display: block;
  width: 22px;
  height: 14px;
  position: relative;
}

.gp-toggler-bars::before,
.gp-toggler-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 99px;
}

.gp-toggler-bars::before {
  top: 2px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.85);
}

.gp-toggler-bars::after {
  bottom: 2px;
}

.nav-link {
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.nav.nav-underline .nav-link.active {
  border-bottom-width: 2px;
  border-bottom-color: var(--gp-orange);
}

/* Hero */
.gp-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: 70vh;
}

.gp-hero-video,
.gp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gp-hero-video {
  z-index: 0;
}

.gp-hero-img {
  z-index: -1;
}

.gp-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75));
}

.gp-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.gp-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gp-hero-kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gp-yellow);
  box-shadow: 0 0 0 4px rgba(240, 165, 0, 0.18);
  flex: 0 0 auto;
}

.gp-hero-title {
  color: #fff;
}

.gp-hero-lead {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
}

/* Footer */
.gp-footer {
  background: var(--gp-gray);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* Home */
.gp-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6c757d;
  font-weight: 700;
}

.gp-kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gp-yellow);
  box-shadow: 0 0 0 4px rgba(240, 165, 0, 0.18);
  flex: 0 0 auto;
}

.gp-about-title {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.gp-about-lead {
  color: #495057;
  line-height: 1.75;
  max-width: 62ch;
}

.gp-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(
    180deg,
    rgba(240, 165, 0, 0.1),
    rgba(255, 255, 255, 1)
  );
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gp-feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--gp-shadow-xs);
}

.gp-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex: 0 0 auto;
}

.gp-ico svg {
  width: 22px;
  height: 22px;
  fill: var(--gp-orange);
}

.gp-feature-title {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #212529;
  margin-bottom: 0.1rem;
}

.gp-feature-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

.gp-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tags / Badges */
.gp-schedule-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.gp-tag-event {
  background: rgba(240, 165, 0, 0.18);
  border-color: rgba(240, 165, 0, 0.35);
  color: #6b4700;
}

.gp-tag-activity {
  background: rgba(25, 135, 84, 0.14);
  border-color: rgba(25, 135, 84, 0.3);
  color: #0f5132;
}

.gp-tag-deadline {
  background: rgba(220, 53, 69, 0.12);
  border-color: rgba(220, 53, 69, 0.3);
  color: #842029;
}

.gp-tag-authors {
  background: rgba(13, 110, 253, 0.12);
  border-color: rgba(13, 110, 253, 0.25);
  color: #084298;
}

.gp-tag-neutral {
  background: rgba(108, 117, 125, 0.12);
  border-color: rgba(108, 117, 125, 0.25);
  color: #495057;
}

/* Page hero */
.gp-page-hero {
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  background: radial-gradient(
      1200px 400px at 20% 0%,
      rgba(240, 165, 0, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 300px at 85% 35%,
      rgba(228, 88, 38, 0.12),
      transparent 60%
    ),
    #fff;
  box-shadow: var(--gp-shadow);
  overflow: hidden;
}

.gp-page-hero-inner {
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
}

.gp-page-title {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 2.05rem;
  margin: 0;
}

.gp-page-lead {
  margin-top: 0.35rem;
  line-height: 1.7;
  color: #495057;
  max-width: 100%;
}

.gp-facts {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gp-fact {
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
}

@supports not (
  (-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px))
) {
  .gp-fact {
    background: #fff;
  }
}

/* Programação */
.gp-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gp-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  background: #fff;
  box-shadow: var(--gp-shadow-sm);
  position: relative;
  overflow: hidden;
}

.gp-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(
    180deg,
    rgba(240, 165, 0, 0.9),
    rgba(240, 165, 0, 0.25)
  );
}

.gp-block-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gp-border);
  background: rgba(0, 0, 0, 0.02);
  font-size: 1.25rem;
}

.gp-block-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.gp-h2 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.gp-pill {
  font-size: 0.78rem;
  padding: 0.38rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--gp-border);
  background: #fff;
  white-space: nowrap;
}

.gp-card {
  border: 1px solid var(--gp-border) !important;
  border-radius: var(--gp-radius) !important;
  box-shadow: var(--gp-shadow-soft);
}

.gp-card .card-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.gp-panel {
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  background: #fff;
  box-shadow: var(--gp-shadow-soft);
  padding: 1.2rem;
}

.gp-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.gp-panel-title {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1.15rem;
}

.gp-panel-sub {
  font-size: 0.85rem;
  color: #6c757d;
}

.gp-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gp-timeline-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.9rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--gp-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, rgba(0, 0, 0, 0.01));
  align-items: start;
}

.gp-timeline-date {
  border-right: 1px dashed rgba(0, 0, 0, 0.1);
  padding-right: 0.9rem;
  min-width: 92px;
}

.gp-timeline-d {
  font-weight: 700;
  font-size: 1.05rem;
  color: #212529;
}

.gp-timeline-w {
  font-size: 0.85rem;
  color: #6c757d;
}

.gp-timeline-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.gp-timeline-text {
  color: #495057;
  line-height: 1.45;
}

/* Sidebar */
.gp-side {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gp-side-card {
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  background: #fff;
  box-shadow: var(--gp-shadow-soft);
  padding: 1.1rem;
}

.gp-side-title {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.gp-side-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.gp-side-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.gp-side-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gp-accent);
  margin-top: 0.45rem;
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.18);
}

.gp-side-strong {
  font-weight: 700;
}

.gp-side-callout {
  margin-top: 0.9rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(240, 165, 0, 0.25);
  background: rgba(240, 165, 0, 0.1);
}

.gp-btn {
  border-radius: 14px;
  padding: 0.6rem 0.95rem;
}

/* Map */
.gp-map-card {
  padding: 0;
  overflow: hidden;
}

.gp-map-wrap {
  height: 280px;
  background: #f1f3f5;
}

.gp-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Misc */
.badge-step {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: var(--bs-warning-bg-subtle);
  border: 1px solid var(--bs-warning);
  color: #000;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.rules {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.rules li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ementa-box {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  padding: 1rem;
  background: var(--bs-light-bg-subtle);
}

.gp-side-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gp-quick {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gp-quick:hover {
  transform: translateY(-2px);
}

.gp-quick-ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gp-gray);
  font-size: 20px;
}

.gp-sticky {
  position: sticky;
  top: var(--gp-sticky-top);
}

.accordion {
  --bs-accordion-active-color: #000;
  --bs-accordion-active-bg: var(--bs-warning-bg-subtle);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.accordion-button:hover {
  background-color: var(--bs-warning-bg-subtle);
  color: #000;
}

.gp-logo {
  width: 150px;
  height: 90px;
  padding: 12px;
}

.gp-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gp-pub {
  width: 320px;
}

.gp-pub-cover {
  width: 300px;
  height: 300px;
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 0 !important;
}

.gp-pub-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border: 1px solid var(--gp-border);
}

.gp-pub-text {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Responsive */
@media (max-width: 991px) {
  .gp-brand-img {
    height: 72px;
  }

  .gp-side {
    position: static;
    top: auto;
  }

  .gp-map-wrap {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .gp-facts {
    grid-template-columns: 1fr;
  }

  .gp-timeline-row {
    grid-template-columns: 1fr;
  }

  .gp-timeline-date {
    border-right: 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-right: 0;
    padding-bottom: 0.7rem;
  }

  .gp-timeline-main {
    flex-direction: column;
  }

  .gp-timeline-main .gp-schedule-tag {
    width: fit-content;
  }
}
