/* ============================================================
   style.css · Bowling Green State University (BGSU) - Encontros SP
   Design System CS Educacional + BGSU Brand Identity
   ============================================================ */

/* --- Reset & Box Model ------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
}

/* --- Design Tokens ---------------------------------------- */
:root {
  /* BGSU Core Palette */
  /* Falcon Orange oficial — mesmo valor do logotipo (bgsu-logo.svg) */
  --bgsu-orange:        #FD5000;
  --bgsu-orange-hover:  #D94500;
  --bgsu-orange-active: #BB3B00;
  --bgsu-orange-light:  #FFF1E9;
  --bgsu-orange-tint:   #FF9A66; /* tom claro para uso sobre fundo escuro */
  --bgsu-orange-ring:   rgba(253, 80, 0, 0.22);
  
  --bgsu-brown:         #331E14; /* BGSU Falcon Dark Brown */
  --bgsu-brown-dark:    #22130C;

  /* CS Educacional Navy & Neutrals */
  --navy:         #0A1E3F;
  --navy-950:     #051124;
  --navy-900:     #0A1E3F;
  --navy-800:     #12315E;
  --navy-700:     #183D71;
  --navy-200:     #B8C9E2;
  --navy-100:     #E8EFF8;

  --paper:        #FAF6EF;
  --bg-soft:      #F8F6F2;
  --white:        #FFFFFF;

  /* Neutros e texto — antes espalhados como hex fixos pelo arquivo */
  --border:        #E2E8F0;
  --border-strong: #CBD5E1;
  --surface-alt:   #F8FAFC;
  --surface-alt-2: #F1F5F9;
  --text-body:     #334155;
  --text-muted:    #475569;
  --text-soft:     #64748B;
  --on-navy-accent: var(--bgsu-orange-tint);

  /* Semantic */
  --success:      #10B981;
  --warning:      #F59E0B;
  --danger:       #DC2626;

  /* Spacing */
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;
  --s9: 96px;

  /* Border radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(10,30,63,.06), 0 1px 2px rgba(10,30,63,.04);
  --shadow-md:    0 6px 16px rgba(10,30,63,.08), 0 2px 6px rgba(10,30,63,.04);
  --shadow-lg:    0 14px 32px rgba(10,30,63,.12), 0 4px 12px rgba(10,30,63,.06);

  /* Primary Brand Aliases */
  --brand:        var(--bgsu-orange);
  --brand-hover:  var(--bgsu-orange-hover);
  --brand-active: var(--bgsu-orange-active);
  --brand-light:  var(--bgsu-orange-light);
  --brand-ring:   var(--bgsu-orange-ring);
  --brand-fg:     var(--white);
}

/* --- Typography Scale ------------------------------------- */
.text-display-xl {
  font-size: clamp(30px, 8.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.text-heading {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--navy-900);
}

.text-subheading {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.35;
}

.text-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s2);
}

.text-eyebrow--light {
  color: var(--on-navy-accent);
}

.text-white {
  color: var(--white) !important;
}

.text-navy-200 {
  color: var(--navy-200) !important;
}

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

/* --- Container & Sections --------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .container { padding-inline: 36px; }
}

@media (min-width: 1100px) {
  .container { padding-inline: 48px; }
}

.section {
  padding-block: var(--s8);
}

@media (min-width: 900px) {
  .section { padding-block: var(--s9); }
}

.section--bg-soft   { background: var(--bg-soft); }
.section--paper     { background: var(--paper); }
.section--navy      { background: var(--navy-950); color: var(--white); }

.section-header {
  margin-bottom: var(--s7);
  max-width: 820px;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-lead {
  margin-top: var(--s3);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
}

.section--navy .section-lead {
  color: var(--navy-200);
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-family: inherit;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 200ms ease, color 150ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 100ms ease;
  white-space: nowrap;
  max-width: 100%;
}

/* Em telas estreitas o nowrap e o problema: um rotulo longo cria um
   min-content que o botao nao consegue encolher, e isso empurra a coluna
   inteira do grid para fora da tela. Deixar quebrar em duas linhas e
   melhor que estourar o layout. */
@media (max-width: 560px) {
  .btn {
    white-space: normal;
    text-wrap: balance;
    line-height: 1.3;
  }
  .btn--lg { padding: 13px 20px; }
  .btn--md { padding: 11px 16px; }
}

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

.btn--sm {
  font-size: 12px;
  padding: 7px 12px;
}

.btn--md {
  font-size: 14.5px;
  padding: 11px 20px;
}

.btn--lg {
  font-size: 16px;
  padding: 14px 26px;
}

.btn--block {
  width: 100%;
}

.btn-primary {
  background: var(--brand);
  color: var(--brand-fg);
  border: none;
  box-shadow: none;
}

/* O brilho existe so no hover — em repouso o botao e chapado,
   como na SCLA e na MHS. */
.btn-primary:hover {
  background: var(--brand-hover);
  box-shadow: 0 4px 16px rgba(253,80,0,.40);
}

.btn-primary:active {
  background: var(--brand-active);
  transform: translateY(1px);
  box-shadow: none;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--brand-ring);
  outline-offset: 2px;
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(10,30,63,.15);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: rgba(10,30,63,.25);
}

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

.btn-secondary:focus-visible {
  outline: 2px solid rgba(10,30,63,.25);
  outline-offset: 2px;
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
}

.btn-ghost:hover {
  background: var(--navy-100);
}

/* --- TOPBAR ----------------------------------------------- */
.topbar {
  background: var(--bgsu-brown-dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s3);
  text-align: center;
}


.topbar__link {
  color: var(--on-navy-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topbar__link:hover {
  color: var(--white);
}

/* --- NAVBAR ----------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10,30,63,.08);
}

.navbar {
  padding: 14px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .navbar__logo { height: 46px; }
}

@media (max-width: 640px) {
  .navbar__logo { height: 38px; }
  .navbar #navbar-cta span { display: none; }
  .navbar #navbar-cta { padding: 9px 12px; }
}

/* --- HERO ---------------------------------------------------------
   Split 50/50, modelo da LP de evento da SCLA: conteudo a esquerda em
   fundo claro, foto a direita sem veu nenhum. A barra de fatos responde
   quando / onde / quanto num golpe de vista.
   A variante anterior (foto full-bleed sob scrim) esta guardada inteira
   em _hero-variante-a-backup.html, com instrucoes de restauracao.
   ------------------------------------------------------------------ */
.hero {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "media" "panel";
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "panel media";
    align-items: stretch;
    min-height: 620px;
  }
}

.hero__panel {
  grid-area: panel;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s7) 20px;
}

@media (min-width: 768px) {
  .hero__panel { padding-inline: 36px; }
}

@media (min-width: 900px) {
  .hero__panel {
    padding: var(--s8) var(--s8) var(--s8) max(48px, calc((100vw - 1200px) / 2 + 48px));
  }
}


.hero__headline {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--navy-950);
  margin-bottom: var(--s5);
  max-width: 20ch;
}

/* Barra de fatos do evento — ocupa a largura da coluna de texto */
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  background: var(--brand);
  color: var(--white);
  padding: 13px 18px;
  margin-bottom: var(--s5);
  align-self: stretch;
}

.hero__fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hero__fact i { font-size: 17px; }

.hero__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 52ch;
  margin-bottom: var(--s4);
}

.hero__note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 52ch;
  margin-bottom: var(--s6);
}

.hero__cta {
  align-self: flex-start;
}

.hero__media {
  grid-area: media;
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero__media { min-height: 320px; }
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* --- FAIXA DE CONFIANÇA ------------------------------------------
   Os 4 itens que ficavam dentro do hero na variante A. Padding
   reduzido: e uma faixa de apoio, nao uma secao de conteudo.
   ------------------------------------------------------------------ */
.section--trust-strip {
  padding-block: var(--s6);
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

@media (min-width: 640px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: var(--s4) var(--s5); }
}

@media (min-width: 1000px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item__icon {
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
}

/* --- PILARES DO EVENTO ------------------------------------ */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}

/* 4 itens: 2x2 no desktop evita o card orfao que sobra numa grade de 3 */
@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

.pillar-card {
  background: var(--white);
  padding: var(--s6);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pillar-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--bgsu-orange-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--brand);
  margin-bottom: var(--s4);
}

.pillar-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--s2);
  line-height: 1.35;
}

.pillar-card__text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- QUALIFICAÇÃO (PARA QUEM É) --------------------------- */
.qual-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s7);
  align-items: start;
}

@media (min-width: 960px) {
  .qual-layout {
    grid-template-columns: 1.3fr 0.9fr;
    gap: var(--s8);
  }
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  margin-top: var(--s5);
  margin-bottom: var(--s6);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
}

.check-item__icon {
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}

.check-item__text {
  font-size: 16px;
  color: var(--navy-800);
  line-height: 1.6;
}

.qual-cta {
  margin-top: var(--s5);
}

/* Event Summary Card */
.event-summary-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.event-summary-card__header {
  background: var(--bgsu-brown-dark);
  color: var(--white);
  padding: var(--s5) var(--s6);
}

.event-summary-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--on-navy-accent);
  text-transform: uppercase;
  margin-bottom: var(--s1);
}

.event-summary-card__title {
  font-size: 20px;
  font-weight: 700;
}

.event-summary-card__body {
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
}

.info-row__icon {
  width: 40px;
  height: 40px;
  background: var(--navy-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy-800);
  flex-shrink: 0;
}

.info-row__content {
  display: flex;
  flex-direction: column;
}

.info-row__content strong {
  font-size: 14px;
  color: var(--navy-900);
}

.info-row__content span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 2px;
}

.event-summary-card__footer {
  background: var(--surface-alt);
  padding: var(--s4) var(--s6);
  border-top: 1px solid var(--border);
}

.event-summary-card__note {
  font-size: 12.5px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.event-summary-card__note i {
  color: var(--warning);
  font-size: 16px;
  flex-shrink: 0;
}

/* --- ABOUT BGSU (A INSTITUIÇÃO) --------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  align-items: start;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--s8);
  }
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
}

.about-paragraphs strong {
  color: var(--navy-900);
}

.stats-grid {
  display: grid;
  gap: var(--s4);
}

.stats-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
}

.stat-card {
  background: var(--white);
  padding: var(--s5);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* V7: quatro estatisticas do mesmo tipo usam o mesmo tratamento.
   As variantes --accent e --highlight foram removidas de proposito. */

.stat-card__number {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--brand);
  margin-bottom: var(--s2);
}

.stat-card__number-main {
  font-weight: 900;
}

.stat-card__number-suffix {
  font-size: 24px;
}

.stat-card__label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Foto do campus fechando a secao: e a prova do que os paragrafos
   afirmam sobre campus, seguranca e comunidade internacional. */
.about-figure {
  margin-top: var(--s7);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.about-figure img {
  width: 100%;
  height: clamp(200px, 32vw, 360px);
  object-fit: cover;
  object-position: center 58%;
  display: block;
}

/* --- CURSOS & ÁREAS EM ALTA DEMANDA ----------------------- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: var(--s6);
}

.course-card {
  background: var(--white);
  padding: var(--s6);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.course-card__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s4);
}





.course-card__icon-header {
  font-size: 32px;
  color: var(--brand);
  margin-bottom: var(--s3);
}

.course-card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.3;
  margin-bottom: var(--s1);
}

.course-card__college {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: var(--s4);
}

.course-card__desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--s5);
  flex-grow: 1;
}

.course-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding-top: var(--s4);
  border-top: 1px solid var(--surface-alt-2);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
}

.course-card__features li {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.course-card__features i {
  color: var(--success);
}

.courses-cta {
  margin-top: var(--s8);
  padding: var(--s6);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

.courses-cta__text {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--s4);
}

/* --- VANTAGENS ESTRATÉGICAS ------------------------------- */





/* --- VANTAGENS: foto em coluna + lista de uma frase por item ------
   A secao argumenta com abstracoes (bolsa, visto, custo). A foto ocupa
   uma coluna inteira e ancora tudo em uma pessoa; os quatro pontos
   ficam em lista, nao em cards, porque uma frase nao sustenta um card.
   ------------------------------------------------------------------ */
.adv-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  margin-bottom: var(--s7);
}

@media (min-width: 900px) {
  .adv-layout {
    /* 28% em vez de 36%: o arquivo tem 510px de largura nativa e o slot
       passa a ~309px, entao a imagem cobre telas 2x quase por inteiro.
       Em 36% o slot ficava em 397px e ela era ampliada em retina. */
    grid-template-columns: minmax(220px, 28%) 1fr;
    gap: var(--s7);
    align-items: stretch;
  }
}

.adv-layout__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 260px;
}

.adv-layout__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.adv-list {
  display: flex;
  flex-direction: column;
}

.adv-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s4);
  padding-block: var(--s5);
  border-top: 1px solid rgba(255,255,255,.12);
}

.adv-item:first-child {
  border-top: none;
  padding-top: 0;
}

.adv-item:last-child { padding-bottom: 0; }

.adv-item__num {
  font-size: 15px;
  font-weight: 800;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  line-height: 1.55;
}

.adv-item__title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 5px;
}

.adv-item__text {
  font-size: 14.5px;
  color: var(--navy-200);
  line-height: 1.6;
}

/* Faixa-convite que fecha as Vantagens: a secao inteira argumenta com
   abstracoes (bolsa, visto, custo) e termina pedindo o agendamento. */
.adv-invite {
  background: linear-gradient(135deg, rgba(253,80,0,0.2) 0%, rgba(255,255,255,0.05) 100%);
  border: 1.5px solid rgba(253,80,0,0.4);
  border-radius: var(--r-xl);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  align-items: flex-start;
}

/* No desktop o texto fica a esquerda e o botao a direita, preenchendo a
   faixa. Sem isso o conteudo empilha e sobra um vazio na metade direita. */
@media (min-width: 800px) {
  .adv-invite {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--s6);
  }
}

.adv-invite__btn { flex-shrink: 0; }

.adv-invite__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
}

.adv-invite__text {
  font-size: 15px;
  color: var(--navy-200);
  max-width: 52ch;
}


/* --- QUEM CONDUZIRÁ OS ENCONTROS (HOSTS) ------------------- */
.hosts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}

@media (min-width: 900px) {
  .hosts-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s7);
  }
}

.host-card {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
}

.host-card__header {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s5);
}

.host-card__avatar-wrap {
  flex-shrink: 0;
}

.host-card__avatar {
  width: 84px;
  height: 84px;
  border-radius: var(--r-pill);
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 640px) {
  .host-card__avatar { width: 68px; height: 68px; }
}

.host-card__meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

/* Logo da instituicao no fim da linha do cabecalho, alinhado com a foto.
   Caixa de tamanho fixo para que marcas de proporcoes bem diferentes
   (BGSU 2,3:1 e CSE 0,8:1) ocupem um espaco visual parecido. */
.host-card__badge {
  max-height: 26px;
  max-width: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
}

/* O selo da BGSU e horizontal (3,4:1) e o da CSE e vertical (0,8:1).
   Limites diferentes para que ocupem massa visual parecida. */
.host-card__badge--cse { max-height: 38px; max-width: 34px; }

@media (max-width: 480px) {
  .host-card__badge { max-height: 22px; max-width: 80px; }
  .host-card__badge--cse { max-height: 32px; max-width: 28px; }
}


.host-card__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.2;
  margin-top: 2px;
}

.host-card__role {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 3px;
}

.host-card__body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-bottom: var(--s5);
  flex-grow: 1;
}

.host-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s5);
  padding-top: var(--s4);
  border-top: 1px solid var(--surface-alt-2);
}



/* --- AGENDA DA REUNIÃO ------------------------------------ */
.agenda-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .agenda-wrap { padding: var(--s8); }
}

.agenda-header {
  margin-bottom: var(--s6);
}

.agenda-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}

@media (min-width: 768px) {
  .agenda-items { grid-template-columns: repeat(2, 1fr); }
}

.agenda-item {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.agenda-item__num {
  width: 36px;
  height: 36px;
  background: var(--bgsu-orange-light);
  color: var(--brand);
  font-weight: 900;
  font-size: 18px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.agenda-item__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.35;
}

.agenda-item__text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- LOCALIZAÇÃO ------------------------------------------ */
/* min-width: 0 nos itens: sem isso, um filho indivisivel (um botao com
   rotulo longo) impede a coluna de encolher e ela vaza da tela. */
.location-box > *,
.qual-layout > *,
.about-grid > *,
.adv-layout > *,
.hero > * {
  min-width: 0;
}

.location-box {
  background: var(--paper);
  border-radius: var(--r-xl);
  border: 1px solid #E5DEC9;
  padding: var(--s6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}

@media (min-width: 900px) {
  .location-box {
    grid-template-columns: 1.3fr 0.8fr;
    padding: var(--s8);
    gap: var(--s7);
    align-items: center;
  }
}

.location-box__desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: var(--s3);
  margin-bottom: var(--s5);
}




.location-security-note {
  background: var(--white);
  padding: var(--s4);
  border-radius: var(--r-md);
  border-left: 3px solid var(--brand);
  display: flex;
  gap: var(--s3);
  font-size: 13.5px;
  color: var(--text-muted);
}

.location-security-note i {
  color: var(--brand);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.schedule-reminder {
  background: var(--white);
  padding: var(--s6);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.schedule-reminder__title {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: var(--s3);
}

.schedule-reminder__text {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: var(--s5);
  line-height: 1.55;
}

/* --- PASSO A PASSO (COMO PARTICIPAR) ---------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: var(--s5);
}

.step-card {
  background: var(--white);
  padding: var(--s6);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}


.step-card__icon {
  font-size: 36px;
  color: var(--navy-800);
  margin-bottom: var(--s3);
}

.step-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--s2);
}

.step-card__text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* --- FORMULÁRIO MULTI-STEP -------------------------------- */
.section--form {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.form-wrap {
  max-width: 680px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s6);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .form-wrap { padding: var(--s7); }
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s6);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--border);
}

.form-progress__label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.form-progress__dots {
  display: flex;
  gap: var(--s2);
}

.form-progress__dot {
  width: 28px;
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--border);
  transition: all 200ms ease;
}

.form-progress__dot.is-active {
  background: var(--brand);
  width: 44px;
}

.form-progress__dot.is-done {
  background: var(--navy-800);
}

.form-step-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
}

.form-step-info {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-top: calc(-1 * var(--s3));
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  margin-bottom: var(--s6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.form-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-900);
}

.form-input,
.form-select {
  height: 48px;
  padding: 0 var(--s4);
  background: var(--bg-soft);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--navy-950);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--brand-ring);
}

.form-input.is-error,
.form-select.is-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A1E3F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form-error {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--danger);
  display: none;
  margin-top: 2px;
}

.form-error.is-visible {
  display: block;
}

.radio-group {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: var(--s2);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-900);
}

.radio-option input[type="radio"] {
  accent-color: var(--brand);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--brand);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--brand);
  text-decoration: underline;
}

/* --- Campo de telefone (intl-tel-input) ---------------------------
   O CSS do CDN impoe fonte, altura, borda e fundo proprios. Sem estes
   overrides o campo destoa de todos os outros do formulario.
   Mesmos seletores que a SCLA usa, com os tokens da BGSU e a altura
   de 48px do nosso .form-input (a SCLA usa 44px).
   ------------------------------------------------------------------ */
.phone-field {
  display: flex;
  gap: var(--s2);
  align-items: stretch;
  width: 100%;
}

.phone-field .iti { width: 100%; }
.phone-number-input { width: 100%; }

.phone-field .iti__tel-input {
  height: 48px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  letter-spacing: 0.01em;
  color: var(--navy-950);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.phone-field .iti__tel-input:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--brand-ring);
}

.phone-field .iti__tel-input.is-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.15);
}

.phone-field .iti__selected-country {
  background: transparent;
  border-radius: var(--r-md) 0 0 var(--r-md);
}

.phone-field .iti__selected-country-primary {
  height: 48px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.phone-field .iti__selected-dial-code {
  font-family: inherit;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  letter-spacing: 0.01em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 100%;
  margin-top: 1px;
}

.phone-field .iti__country-list {
  font-family: inherit;
  color: var(--navy-950);
  max-height: 280px;
  border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow-md);
  border-radius: var(--r-md);
  margin-top: 6px;
  z-index: 120;
}

.phone-field .iti__search-input {
  font-family: inherit;
  font-size: 16px;
  line-height: 1.3;
  min-height: 40px;
  padding: 10px 12px 10px 40px !important;
  background-position: 12px center !important;
  border-radius: var(--r-sm);
  box-sizing: border-box;
}

.phone-field .iti__country { padding-block: 10px; }

.phone-field .iti__country-name,
.phone-field .iti__dial-code { font-size: 14px; }

.phone-field .iti__country-name { color: var(--navy-950); }

.phone-field .iti__dial-code {
  font-family: inherit;
  color: var(--text-muted);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.phone-field .iti__country[data-country-code="us"] {
  border-bottom: 1px solid var(--navy-100);
  margin-bottom: 6px;
}

.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.form-nav--single {
  justify-content: flex-end;
}

.hidden {
  display: none !important;
}




/* --- FAQ ACCORDION ---------------------------------------- */
.faq-container {
  max-width: 820px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 150ms ease;
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-question {
  width: 100%;
  padding: var(--s5);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
}

.faq-icon {
  font-size: 18px;
  color: var(--brand);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease;
}

.faq-answer__inner {
  padding: 0 var(--s5) var(--s5);
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--surface-alt-2);
  padding-top: var(--s3);
}

.faq-cta {
  margin-top: var(--s7);
}

.faq-cta p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: var(--s3);
}

/* --- FOOTER ----------------------------------------------- */
.footer {
  background: var(--bgsu-brown-dark);
  padding-block: var(--s6);
  min-height: 80px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  align-items: center;
  text-align: center;
}

.footer__logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: .7;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__copy  { font-size: 13px; color: rgba(255,255,255,.55); }
.footer__legal { font-size: 12px; color: rgba(255,255,255,.45); }

.footer__links {
  display: flex;
  gap: var(--s5);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,.40);
  transition: color 150ms ease;
}

.footer__link:hover { color: rgba(255,255,255,.70); }
