:root {
  --green: #006b45;
  --green-dark: #00442f;
  --blue: #0a3b66;
  --blue-dark: #06233f;
  --pink: #c2185b;
  --pink-dark: #8f0f45;
  --pink-soft: #fff1f7;
  --ink: #102033;
  --muted: #5b6b7b;
  --line: #d8e2e8;
  --soft: #f4f8fa;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(6, 35, 63, .12);
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 107, 69, .45);
  outline-offset: 3px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: .75rem 1rem;
  background: var(--blue-dark);
  color: var(--white);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.gov-strip {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem max(1rem, calc((100vw - 1180px) / 2));
  font-size: .78rem;
  color: var(--white);
  background: var(--blue-dark);
}
.gov-strip a { text-decoration: underline; text-underline-offset: 3px; }
.main-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0 max(1rem, calc((100vw - 1180px) / 2));
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--blue-dark);
}
.brand-logo {
  width: 96px;
  height: auto;
  max-height: 60px;
  flex: 0 0 auto;
}
.brand-copy strong,
.brand-copy small {
  display: block;
}
.brand-copy strong {
  white-space: nowrap;
  line-height: 1.05;
}
.brand-copy small {
  display: block;
  color: var(--green);
  font-weight: 800;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
  font-size: .9rem;
  font-weight: 700;
}
.nav-links a {
  color: var(--blue-dark);
  text-decoration: none;
}
.nav-links a:hover { color: var(--green); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .78rem 1.05rem;
  border: 1px solid var(--blue-dark);
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  font-size: .9rem;
}
.button-primary {
  background: var(--blue-dark);
  color: var(--white);
}
.button-secondary {
  background: var(--white);
  color: var(--blue-dark);
}
.button-feminine {
  border-color: var(--pink-dark);
  background: var(--pink-dark);
  color: var(--white);
}
.button:hover { box-shadow: 0 8px 20px rgba(6, 35, 63, .16); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 112px);
  padding: clamp(3rem, 7vw, 6rem) max(1rem, calc((100vw - 1180px) / 2)) 3rem;
  background: linear-gradient(110deg, #fff 0%, #fff 42%, #eef6f8 100%);
}
.registration-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(82vh - 112px);
  padding: clamp(3rem, 7vw, 5.5rem) max(1rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(110deg, #fff 0%, #fff 45%, #edf6f5 100%);
}
.program-hero {
  display: grid;
  align-items: center;
  min-height: calc(76vh - 112px);
  padding: clamp(3rem, 7vw, 5.5rem) max(1rem, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(110deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 48%, rgba(237,246,245,.86) 100%),
    radial-gradient(circle at 82% 30%, rgba(0,107,69,.2), transparent 30%),
    linear-gradient(135deg, #ffffff, #eaf4f5);
}
.registration-panel {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.registration-panel h2 {
  margin-bottom: 1.1rem;
  font-size: 1.35rem;
}
.registration-panel dl {
  display: grid;
  gap: .8rem;
  margin: 0;
}
.registration-panel div {
  padding-top: .8rem;
  border-top: 1px solid var(--line);
}
.registration-panel dt {
  color: var(--green);
  font-weight: 900;
}
.registration-panel dd {
  margin: .15rem 0 0;
  color: var(--ink);
}
.institution,
.section-label {
  margin: 0 0 .75rem;
  color: var(--green);
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 740px;
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}
.hero-subtitle {
  max-width: 780px;
  margin-bottom: .85rem;
  color: var(--green);
  font-size: clamp(.95rem, 1.45vw, 1.08rem);
  font-weight: 800;
  line-height: 1.35;
}
.hero-lead {
  max-width: 670px;
  color: #243b53;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.7rem 0;
}
.event-facts {
  display: grid;
  gap: .75rem;
  max-width: 700px;
  margin: 2rem 0 0;
}
.event-facts div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: .75rem;
  padding: .85rem 0;
  border-top: 1px solid var(--line);
}
.event-facts dt {
  color: var(--green);
  font-weight: 800;
}
.event-facts dd { margin: 0; color: var(--ink); }
.hero-media {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-media img {
  display: block;
  width: 100%;
}
.image-credit {
  padding: .38rem .65rem;
  color: #5e7283;
  font-size: .64rem;
  line-height: 1.35;
  border-top: 1px solid var(--line);
  background: #fff;
}

.event-cover {
  padding: 1rem clamp(1rem, 4vw, 4rem) 1.4rem;
  background: #fff;
}
.event-cover figure {
  max-width: 1440px;
  margin: 0 auto;
}
.event-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.summary-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.22);
  padding: 0 max(1rem, calc((100vw - 1180px) / 2));
  background-color: var(--blue-dark);
}
.summary-band div {
  padding: 1.7rem 1.2rem;
  color: var(--white);
  border-left: 1px solid rgba(255,255,255,.2);
}
.summary-band strong {
  display: block;
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  line-height: 1;
}
.summary-band span { color: rgba(255,255,255,.82); }

.section {
  padding: clamp(3rem, 7vw, 5.5rem) max(1rem, calc((100vw - 1180px) / 2));
}

.value-proposition {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, #fff, #f7fbfc);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.value-grid article {
  min-height: 190px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.value-grid h3 {
  margin-bottom: .55rem;
}
.value-grid p {
  color: var(--muted);
}

.home-page .schedule .detailed-program {
  display: none;
}

.home-page .schedule {
  background: #fff;
}
.two-column,
.public-showcase,
.wordpress-note {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
}
h2 {
  max-width: 780px;
  color: var(--blue-dark);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.14;
}
h3 {
  color: var(--blue-dark);
  font-size: 1.12rem;
  line-height: 1.2;
}
.prose {
  color: #2a3b4c;
  font-size: 1.05rem;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.track-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.track-number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--green);
  font-weight: 900;
  font-size: 1.55rem;
}
.track-card.feminine {
  border-color: rgba(143, 15, 69, .28);
  background: linear-gradient(180deg, #fff, var(--pink-soft));
}
.track-card.feminine .track-number,
.track-details article.feminine h3,
.edition-card.feminine .edition-year,
.audience-grid span.feminine,
.impact-grid article.feminine strong {
  color: var(--pink-dark);
}
.track-card p { color: var(--muted); }
.track-button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}
.track-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.feminine-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
  gap: 1rem;
  grid-column: 1 / -1;
}
.track-details article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbfc);
}
.track-details article.feminine {
  border-color: rgba(143, 15, 69, .25);
  background: linear-gradient(180deg, #fff, var(--pink-soft));
}
.track-details h3 {
  margin-bottom: .65rem;
}
.track-details p {
  color: #2a3b4c;
}
.track-details p:last-child {
  margin-bottom: 0;
}
.track-details article.law-card {
  margin-top: 0;
  padding: 1.35rem;
  border: 1px solid rgba(143, 15, 69, .28);
  border-left: 6px solid var(--pink-dark);
  background: var(--pink-soft);
}
.track-details article.law-card h3 {
  margin-bottom: .55rem;
  color: var(--pink-dark);
}
.track-details article.law-card p {
  margin-bottom: .75rem;
  color: #3a2631;
}
.track-details article.law-card a {
  color: var(--pink-dark);
  font-weight: 900;
}

@media (max-width: 960px) {
  .feminine-layout {
    grid-template-columns: 1fr;
  }
}

.journey {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 3rem;
  background: var(--soft);
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}
.journey-steps li {
  position: relative;
  padding: 4.8rem 1.2rem 1.2rem;
  background: var(--white);
  border-top: 5px solid var(--green);
}
.journey-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: .7rem;
  color: #b2c3ce;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 900;
}
.journey-steps strong { display: block; color: var(--blue-dark); }
.journey-steps span { color: var(--muted); }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.section-action {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.25rem;
}
.schedule-grid article {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: linear-gradient(#fff, #f8fbfc);
  border-top: 5px solid var(--green);
}
.schedule-grid time {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--green);
  font-weight: 900;
}
.featured-day {
  background: linear-gradient(145deg, var(--blue-dark), var(--green-dark)) !important;
  color: var(--white);
}
.featured-day h3,
.featured-day time { color: var(--white); }
.featured-day p { color: rgba(255,255,255,.82); }

.detailed-program {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}
.program-day {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(360px, 1.22fr);
  gap: 1.4rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.program-day-featured {
  border-color: rgba(0, 107, 69, .35);
  background: linear-gradient(180deg, #ffffff, #f2faf6);
}
.program-day-heading time {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--green);
  font-weight: 900;
}
.program-day-heading h3 {
  margin-bottom: .7rem;
  font-size: 1.22rem;
}
.program-day-heading p {
  margin-bottom: 0;
  color: var(--muted);
}
.program-list {
  display: grid;
  gap: .65rem;
}
.program-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: .9rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--line);
}
.program-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.program-list span {
  color: var(--blue-dark);
  font-weight: 900;
  white-space: nowrap;
}
.program-list div.feminine span {
  color: var(--pink-dark);
}
.program-list div.feminine {
  border-left: 4px solid rgba(143, 15, 69, .34);
  padding-left: .75rem;
}
.program-list p {
  margin-bottom: 0;
  color: #2a3b4c;
}

.public-showcase {
  background: linear-gradient(110deg, var(--blue-dark), #0b4d5c 52%, var(--green-dark));
  color: var(--white);
}
.public-showcase h2,
.public-showcase .section-label { color: var(--white); }
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .8rem;
}
.check-list li {
  padding: .9rem 1rem .9rem 2.8rem;
  background: rgba(255,255,255,.1);
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: .75rem;
  height: .75rem;
  border: 3px solid #9de0c8;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.past-editions {
  background: #fff;
}
.past-editions .section-heading p {
  max-width: 860px;
  color: var(--muted);
}
.edition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.edition-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7fbfc);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.edition-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 107, 69, .34);
  box-shadow: 0 16px 34px rgba(6, 35, 63, .12);
}
.edition-media {
  display: grid;
  place-items: center;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}
.edition-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.edition-card:hover .edition-media img {
  transform: scale(1.04);
}
.edition-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: .55rem;
  padding: 1rem;
}
.edition-year {
  font-size: .78rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
}
.edition-card.feminine:hover {
  border-color: rgba(143, 15, 69, .38);
}
.edition-body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--blue-dark);
}
.edition-body p {
  margin: 0;
  color: var(--muted);
}
.edition-source {
  margin-top: auto;
  font-size: .82rem;
  color: #5e7283;
}
.edition-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.event-places {
  background: #fff;
}
.event-places .section-heading p {
  max-width: 830px;
  color: var(--muted);
}
.places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.place-card {
  display: flex;
  flex-direction: column;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  background: linear-gradient(180deg, #fff, #f7fbfc);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.place-card.feminine {
  border-top-color: var(--pink-dark);
  background: linear-gradient(180deg, #fff, var(--pink-soft));
}
.place-card.feminine h3 {
  color: var(--pink-dark);
}
.place-card p {
  color: var(--muted);
}
.place-card .button {
  width: fit-content;
  margin-top: auto;
}
.curitiba-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: var(--soft);
}
.curitiba-panel > div {
  padding: 1.25rem;
  background: var(--white);
}
.curitiba-panel p {
  color: #2a3b4c;
}
.curitiba-panel .button {
  margin-top: .3rem;
}

.audience-grid,
.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
}
.audience-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: .9rem;
  text-align: center;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-weight: 800;
}
.audience-grid span.feminine {
  border-color: rgba(143, 15, 69, .28);
  background: var(--pink-soft);
}
.impact {
  background: var(--soft);
}
.impact-grid {
  grid-template-columns: repeat(3, 1fr);
}
.impact-grid article {
  padding: 1.4rem;
  background: var(--white);
  border-left: 5px solid var(--green);
}
.impact-grid article.feminine {
  border-left-color: var(--pink-dark);
  background: var(--pink-soft);
}
.impact-grid strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.45rem;
  line-height: 1.1;
}
.impact-grid span { color: var(--muted); }

.school-tour {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, .72fr);
  gap: 1.5rem;
  align-items: stretch;
  background: linear-gradient(110deg, #ffffff 0%, #ffffff 44%, #edf6f5 100%);
}
.school-tour p {
  color: #2a3b4c;
}
.school-tour .button {
  margin-top: .6rem;
}
.school-tour-panel {
  display: grid;
  gap: .85rem;
}
.school-tour-panel article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.school-tour-panel strong {
  display: block;
  margin-bottom: .35rem;
  color: var(--blue-dark);
}
.school-tour-panel span {
  color: var(--muted);
}

.awards {
  background: var(--soft);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.awards-grid article {
  min-height: 220px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.awards-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}
.awards-grid article.feminine {
  border-color: rgba(143, 15, 69, .28);
  background: linear-gradient(180deg, #fff, var(--pink-soft));
}
.awards-grid article.feminine span {
  background: var(--pink-dark);
}
.awards-grid h3 {
  margin-bottom: .55rem;
}
.awards-grid p {
  color: var(--muted);
}

.podcast-feature {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, .55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  color: var(--white);
  background: linear-gradient(120deg, var(--blue-dark), #0a4e5a 48%, var(--green-dark));
}
.podcast-feature h2,
.podcast-feature .section-label {
  color: var(--white);
}
.podcast-feature p {
  max-width: 780px;
  color: rgba(255,255,255,.86);
}
.feature-actions {
  display: grid;
  gap: .8rem;
}
.feature-actions .button-secondary {
  border-color: rgba(255,255,255,.75);
}

.showroom-feature {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, .72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  color: var(--white);
  background: linear-gradient(120deg, #17324f, #0d5c63 52%, var(--green-dark));
}
.showroom-feature h2,
.showroom-feature .section-label {
  color: var(--white);
}
.showroom-feature p {
  max-width: 760px;
  color: rgba(255,255,255,.86);
}
.showroom-highlight-list {
  display: grid;
  gap: .85rem;
}
.showroom-highlight-list article {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.1);
}
.showroom-highlight-list strong {
  display: block;
  margin-bottom: .3rem;
  color: var(--white);
}
.showroom-highlight-list span {
  color: rgba(255,255,255,.82);
}

.registration {
  background: var(--soft);
}
.enrollment-overview {
  background: var(--soft);
}
.enrollment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.enrollment-grid a {
  min-height: 180px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.enrollment-grid strong {
  display: block;
  margin-bottom: .7rem;
  color: var(--blue-dark);
  font-size: 1.15rem;
  line-height: 1.25;
}
.enrollment-grid span {
  color: var(--muted);
}
.enrollment-grid a.feminine {
  border-color: rgba(143, 15, 69, .25);
  background: var(--pink-soft);
}
.enrollment-grid a.feminine strong {
  color: var(--pink-dark);
}
.enrollment-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, .8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.enrollment-detail.alt {
  background: var(--soft);
}
.enrollment-detail.feminine {
  background: linear-gradient(180deg, #fff, var(--pink-soft));
}
.enrollment-detail.feminine .section-label,
.enrollment-detail.feminine h2,
.enrollment-detail.feminine label,
.enrollment-detail.feminine .requirement-card h3 {
  color: var(--pink-dark);
}
.enrollment-detail > div > p {
  max-width: 760px;
  color: #2a3b4c;
  font-size: 1.05rem;
}
.requirement-card {
  padding: 1.3rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.requirement-card ul {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--muted);
}
.requirement-card li + li { margin-top: .45rem; }
.requirement-card .button + .button { margin-top: .7rem; }
.registration-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.registration-grid article {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.registration-grid h3 { min-height: 62px; }
.registration-grid p {
  color: var(--muted);
  flex: 1;
}
.registration-grid .button { width: 100%; }
.registration-grid article.feminine {
  border-color: rgba(143, 15, 69, .25);
  background: var(--pink-soft);
}
.registration-grid article.feminine h3 {
  color: var(--pink-dark);
}
.registration-grid article .button + .button {
  margin-top: .7rem;
}
.form-note {
  max-width: 850px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.form-section {
  background: linear-gradient(180deg, #fff, #f7fbfc);
}
.external-form-section {
  background: linear-gradient(180deg, #fff, #f7fbfc);
}
.external-form-card {
  max-width: 760px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.external-form-card p {
  color: var(--muted);
}
.disabled-link {
  opacity: .72;
  cursor: not-allowed;
}
.registration-form {
  display: grid;
  gap: 1.1rem;
  max-width: 980px;
}
.registration-form fieldset {
  margin: 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.registration-form legend {
  padding: 0 .4rem;
  color: var(--blue-dark);
  font-weight: 900;
}
.fieldset-note {
  margin: 0 0 .8rem;
  color: var(--muted);
  font-size: .95rem;
}
.registration-form label {
  display: grid;
  gap: .35rem;
  color: var(--blue-dark);
  font-weight: 800;
}
.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  min-height: 44px;
  padding: .72rem .8rem;
  border: 1px solid #b7c8d4;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}
.registration-form textarea {
  resize: vertical;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.checkbox-line {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: .7rem !important;
  color: #2a3b4c !important;
  font-weight: 700 !important;
}
.checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin-top: .25rem;
}

.sponsorship {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  background: linear-gradient(180deg, #fff, #f8fbfc);
}
.sponsor-content > p {
  color: #2a3b4c;
  font-size: 1.05rem;
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  margin: 1.2rem 0;
}
.sponsor-grid article {
  padding: 1rem;
  border-left: 4px solid var(--green);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(6, 35, 63, .06);
}
.sponsor-grid h3 {
  margin-bottom: .4rem;
  font-size: 1.05rem;
}
.sponsor-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.committee {
  background: var(--soft);
}
.committee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.committee-grid article {
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.committee-grid article.feminine {
  border-color: rgba(143, 15, 69, .25);
  background: var(--pink-soft);
}
.committee-grid article.feminine h3,
.committee-grid article.feminine strong {
  color: var(--pink-dark);
}
.committee-grid h3 {
  min-height: 58px;
  margin-bottom: .8rem;
  font-size: 1.12rem;
}
.committee-grid p {
  margin-bottom: .5rem;
  color: var(--muted);
}
.committee-grid strong {
  color: var(--blue-dark);
}

.institutions-section {
  background: #fff;
}
.institution-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 35, 63, .06);
}
.institution-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}
.institution-table th,
.institution-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.institution-table th {
  color: var(--white);
  background: var(--blue-dark);
  font-size: .9rem;
}
.institution-table td {
  color: #2a3b4c;
}
.institution-table tbody tr:nth-child(even) {
  background: #f8fbfc;
}
.institution-table td:first-child,
.institution-table td:last-child {
  color: var(--blue-dark);
  font-weight: 800;
  white-space: nowrap;
}

.wordpress-note {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem max(1rem, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--green);
}
.cta h2 {
  margin-bottom: .3rem;
  color: var(--white);
  font-size: clamp(1.25rem, 2.35vw, 1.75rem);
}
.cta p { margin-bottom: 0; color: rgba(255,255,255,.86); }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.social-links a {
  padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.6);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem;
  padding: 1.1rem max(1rem, calc((100vw - 1180px) / 2));
  color: rgba(255,255,255,.78);
  background: var(--blue-dark);
  font-size: .84rem;
  line-height: 1.25;
}
.site-footer > div {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.site-footer strong {
  display: block;
  color: var(--white);
  line-height: 1.2;
}
.site-footer p {
  margin-bottom: 0;
  line-height: 1.35;
}
.footer-event-name {
  color: #9de0c8;
  font-size: .84rem;
}
.footer-discreet {
  margin-top: 0;
  color: rgba(255,255,255,.58);
  font-size: .79rem;
}
.footer-supporters {
  color: rgba(255,255,255,.78);
  font-size: .79rem;
}
.footer-map {
  margin-top: .35rem;
}
.footer-map-single {
  width: 100%;
}
.footer-map strong {
  margin-bottom: .25rem;
}
.footer-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
}
.footer-map-links a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-size: .74rem;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.footer-map-links span {
  color: rgba(255,255,255,.45);
}
.footer-map-links a:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.72);
}

@media (max-width: 980px) {
  .main-nav { align-items: flex-start; flex-direction: column; padding-top: 1rem; padding-bottom: 1rem; }
  .brand-logo { width: 82px; max-height: 54px; }
  .nav-links { flex-wrap: wrap; }
  .hero,
  .registration-hero,
  .program-hero,
  .two-column,
  .journey,
  .public-showcase,
  .showroom-feature,
  .wordpress-note,
  .program-day,
  .enrollment-detail,
  .podcast-feature,
  .sponsorship,
  .school-tour,
  .curitiba-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .summary-band,
  .track-grid,
  .journey-steps,
  .schedule-grid,
  .audience-grid,
  .impact-grid,
  .registration-grid,
  .enrollment-grid,
  .committee-grid,
  .awards-grid,
  .edition-grid,
  .value-grid,
  .places-grid,
  .track-details,
  .showroom-highlight-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero { min-height: auto; }
}

@media (max-width: 640px) {
  .gov-strip { flex-direction: column; gap: .25rem; }
  .hero { padding-top: 2.4rem; }
  .hero-actions,
  .cta,
  .social-links { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .event-facts div { grid-template-columns: 1fr; gap: .15rem; }
  .summary-band,
  .track-grid,
  .journey-steps,
  .schedule-grid,
  .audience-grid,
  .impact-grid,
  .registration-grid,
  .sponsor-grid,
  .enrollment-grid,
  .committee-grid,
  .awards-grid,
  .edition-grid,
  .value-grid,
  .places-grid,
  .curitiba-panel,
  .form-grid,
  .showroom-highlight-list {
    grid-template-columns: 1fr;
  }
  .awards-grid article { min-height: auto; }
  .program-list div { grid-template-columns: 1fr; gap: .25rem; }
  .track-card { min-height: auto; }
  .registration-grid article { min-height: auto; }
  .registration-grid h3 { min-height: 0; }
  h1 { font-size: clamp(2.1rem, 11vw, 3rem); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
