:root {
  --font-heading: "Coda", "Audiowide", sans-serif; 
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.hero-entrada {
  position: relative;
  overflow: hidden;
  background: #ffffff; 
  color: #111;
  padding-bottom: 0; 
}

body {
  padding-top: 70px; 
   cursor: url('public/pointer1.png'), auto;
}

a, button, .btn {
  cursor: url(''), pointer;
}



.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px 16px; 
  z-index: 3;
  position: relative;
}

.pre-title {
  letter-spacing: 6px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #1d1d1d;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.hero-titulo {
  font-family: 'Michroma';
  font-weight: 400;
  font-size: clamp(2.0rem, 7.0vw, 6.0rem);
  line-height: 0.95;
  margin: 0 0 12px 0;
  color: #22190f; 
  letter-spacing: -0.01em;
}

.hero-lead {
  color: rgba(0,0,0,0.65);
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: var(--font-body);
}

.hero-cta .btn { margin: 0 .35rem; }

.snake-band {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 0;

  height: clamp(160px, 26vh, 380px);
  background: #fff;
}

.tooltip-icon {
  display: inline-block;
  margin-left: 5px;
  background: #0d6efd;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
  position: relative;
}

.tooltip-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-size: 13px;
  z-index: 10;
}

.tooltip-icon:hover::after,
.tooltip-icon:active::after {
  opacity: 1;
}


.snake-band-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center top; 
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-titulo { font-size: clamp(1.8rem, 10vw, 3.2rem); line-height: 1; }
  .snake-band { height: clamp(120px, 22vh, 220px); }
  .pre-title { font-size: 0.78rem; }
}

.card { border-radius: 8px; }

.palestrante-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  height: 100%;

}

.palestrante-img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 6px;
  background: #f4f4f6;
}

:root{
  --btn-radius-pill: 40px;
  --btn-padding: 0.85rem 1.25rem;
  --muted-contrast: #ededed;
  --dark-btn-bg: #4b4947;
  --primary-color: #0d6efd; 
}

.vertical-divider{
  width: 1px;
  background: #e6e6e6;
  height: 90%;
  margin-top: 18px;
  border-radius: 1px;
}

.section-title { font-size: 1.8rem; margin-bottom: 1rem; }
.lead-text p { font-size: 1.05rem; line-height: 1.6; color: #111; }

.highlight-italic { color: #73bcd1; font-style: italic; font-weight: 600; }

.big-right-title {
  font-family: var(--font-heading, system-ui);
  color: #2a211d;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.btn-pill {
  border-radius: var(--btn-radius-pill) !important;
  padding: var(--btn-padding) !important;
  text-transform: none;
  font-weight: 600;
}

#btn_inscrever {
  background: var(--primary-color);
  border: none;
  color: white;
  box-shadow: 0 8px 20px rgba(13,110,253,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#btn_editais, #btn_editais_mobile {
  background: #f7f7f8;
  color: #222;
  border: 1px solid #e6e6e6;
}

.btn-dark {
  background: var(--dark-btn-bg);
  border: none;
  color: #f7f5f3;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.btn i.bi { font-size: 1.2rem; }

.buttons-list .btn { min-height: 56px; }

.btn:focus, a:focus {
  outline: 3px solid rgba(13,110,253,0.18);
  outline-offset: 3px;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .vertical-divider { display: none; }
  .big-right-title { font-size: clamp(1.4rem, 6.2vw, 2.4rem); margin-top: 0.6rem; }
  .section-title { font-size: 1.6rem; }
  .lead-text p { font-size: 1rem; }

  #btn_inscrever { width: 100%; display: inline-flex; justify-content: center; }
  #btn_editais_mobile { margin-top: .6rem; }

  .buttons-list .btn { min-height: 64px; font-size: 1rem; padding-left: 1rem; padding-right: 1rem; }
  .buttons-list .btn i.bi { font-size: 1.35rem; margin-left: .25rem; margin-right: 1rem; }

  .row.gx-5 { gap: 1.25rem; }
}

@media (min-width: 1400px) {
  .big-right-title { font-size: 4.2rem; }
}

.footer-section {
  position: relative;
  text-align: center;
  padding: 40px 20px 100px; 
  color: #fff;
  background: url('public/img/Footer.png') no-repeat center top;
  background-size: contain;
  background-attachment: scroll;
}

.cronograma-card {
  width: 100%;
  max-width: 520px;
  background: #2e2e2e;
  color: #f7f7f7;
  border-radius: 16px;
  padding: .5rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  margin: 0 auto;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
}

.cronograma-card h5 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  text-align: left;
}

.cronograma-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cronograma-card ul li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.cronograma-card ul li:last-child {
  border-bottom: none;
}

#secao_participar {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

#secao_participar .col-lg-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

#secao_participar .mt-4.d-flex.gap-2 {
  gap: 1rem;
}

@media (max-width: 991px) {
  .cronograma-card {
    max-width: 100%;
    text-align: center;
    padding: 1.8rem;
  }

  .cronograma-card h5 {
    text-align: center;
  }

  .cronograma-card ul li {
    font-size: 1rem;
  }
}

/* ======== Seção "Sobre o ENPF" ======== */
#sobre {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

#sobre .section-title {
  font-family: "Michroma", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: #222;
}

.sobre-texto {
  max-width: 900px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #333;
  text-align: justify;
}

.sobre-texto p {
  margin-bottom: 1.2rem;
}

.tema-titulo {
  font-family: "Michroma", sans-serif;
  color: #111;
  font-size: 1.8rem;
  font-weight: 600;
}

.perguntas-lista {
  list-style: disc;
  padding-left: 2rem;
  color: #444;
  line-height: 1.8;
}

@media (max-width: 768px) {
  #sobre .section-title {
    font-size: 1.8rem;
  }

  .sobre-texto {
    font-size: 1rem;
    text-align: left;
  }

  .tema-titulo {
    font-size: 1.4rem;
  }
}
