:root {
  --teal: #1A9BA1;
  --teal-dk: #0F6D72;
  --teal-lt: #3DC0C7;
  --orange: #E8521A;
  --orange-dk: #B83C0E;
  --dark: #1C1C1C;
  --mid: #3D4A4B;
  --light: #F0F8F8;
  --white: #FFFFFF;
  --grey: #E8EEED;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── TOPBAR ──────────────────────────────────── */
.topbar {
  background: var(--teal-dk);
  color: rgba(255, 255, 255, .75);
  font-size: .77rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .4rem 0;
}

.topbar a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .2s;
}

.topbar a:hover {
  color: #fff;
}

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
  background: rgba(15, 109, 114, .97);
  backdrop-filter: blur(10px);
  padding: .75rem 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 3px solid var(--orange);
}

.navbar-logo {
  height: 54px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, .82) !important;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem .85rem !important;
  transition: color .2s;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}

.btn-nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 3px;
  padding: .45rem 1.2rem !important;
  font-weight: 700 !important;
  letter-spacing: .07em;
  transition: background .2s, transform .15s;
}

.btn-nav-cta:hover {
  background: var(--orange-dk) !important;
  transform: translateY(-1px);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-active {
  color: #fff !important;
  border-bottom: 2px solid var(--orange);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-item.active .slide-eyebrow {
  animation: slideUp .5s .1s both;
}

.carousel-item.active .slide h1,
.carousel-item.active .slide h2 {
  animation: slideUp .55s .22s both;
}

.carousel-item.active .slide p {
  animation: slideUp .55s .35s both;
}

.carousel-item.active .slide-stats {
  animation: slideUp .5s .47s both;
}

.carousel-item.active .slide-btns {
  animation: slideUp .5s .57s both;
}

/* ── STRIP ───────────────────────────────────── */
.strip {
  background: var(--teal);
  padding: 2rem 0;
  margin-top: 32px;
}

.strip-item {
  text-align: center;
  color: #fff;
}

.strip-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .82;
  margin-top: .15rem;
}

.strip-divider {
  width: 1px;
  background: rgba(255, 255, 255, .22);
  align-self: stretch;
}

/* ── SECTION COMMONS ─────────────────────────── */
section {
  padding: 5.5rem 0;
}

.sec-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .4rem;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.sec-title .hl {
  color: var(--teal);
}

.sec-title .hlo {
  color: var(--orange);
}

.sec-lead {
  font-size: .97rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 620px;
}

.divline {
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  margin: .9rem 0 1.5rem;
}

/* ── MOTIVAÇÃO ───────────────────────────────── */
.motivacao-section {
  background: var(--white);
}

.motiv-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 36px rgba(15, 109, 114, .16);
}

.motiv-card {
  background: var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 0 6px 6px 0;
  padding: 1.6rem 1.5rem;
  margin-bottom: 1rem;
  transition: border-color .2s, box-shadow .2s;
}

.motiv-card:hover {
  border-left-color: var(--orange);
  box-shadow: 0 4px 18px rgba(15, 109, 114, .1);
}

.motiv-card h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .4rem;
}

.motiv-card:hover h5 {
  color: var(--orange);
}

.motiv-card p {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
}

/* ── JUSTIFICATIVA ───────────────────────────── */
.just-section {
  background: var(--grey);
}

.just-block {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(15, 109, 114, .07);
  height: 100%;
}

.just-block .num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(15, 109, 114, .1);
  line-height: 1;
  margin-bottom: .5rem;
}

.just-block h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
}

.just-block p {
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.75;
  margin: 0;
}

/* ── OBJETIVOS ───────────────────────────────── */
.objetivos-section {
  background: var(--teal-dk);
  position: relative;
  overflow: hidden;
}

.objetivos-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 82, 26, .2) 0%, transparent 70%);
}

.objetivos-section .sec-title {
  color: #fff;
}

.objetivos-section .sec-tag {
  color: #FFD580;
}

.objetivos-section .sec-lead {
  color: rgba(255, 255, 255, .65);
}

.obj-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 6px;
  padding: 1.7rem;
  transition: background .22s, border-color .22s, transform .22s;
  height: 100%;
}

.obj-card:hover {
  background: rgba(232, 82, 26, .18);
  border-color: var(--orange);
  transform: translateY(-4px);
}

.obj-icon {
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: .9rem;
}

.obj-card h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .35rem;
}

.obj-card p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  margin: 0;
}

/* ── IMPACTO ─────────────────────────────────── */
.impacto-section {
  background: var(--white);
}

.impacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.impacto-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--light);
  border-radius: 6px;
  padding: 1.4rem;
  border: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}

.impacto-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 18px rgba(15, 109, 114, .1);
}

.impacto-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
}

.impacto-item h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--teal);
  margin-bottom: .2rem;
}

.impacto-item p {
  font-size: .86rem;
  color: var(--mid);
  margin: 0;
  line-height: 1.55;
}


/* ── PROGRAMAÇÃO ─────────────────────────────── */
.programacao-section {
  background: var(--teal-dk);
}
.programacao-section .prog-item {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.09);
}

.programacao-section .sec-title { color: #fff; }
.programacao-section .sec-tag   { color: #FFD580; }
.programacao-section .sec-lead  { color: rgba(255,255,255,.65); }
.programacao-section .divline   { background: linear-gradient(90deg, #FFD580, var(--orange)); }

/* cabeçalho dos dias */
.prog-day-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.prog-day-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 3px;
  flex-shrink: 0;
}
.prog-day-badge.dia1 { background: var(--teal);   color: #fff; }
.prog-day-badge.dia2 { background: var(--orange); color: #fff; }
.prog-day-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.15);
}

/* separador de bloco */
.prog-block-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 1.5rem 0 .75rem;
}
.prog-block-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}
.prog-block-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
}

/* item palestrante */
.prog-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  margin-bottom: .6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background .2s, border-color .2s;
}
.prog-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}

/* item abertura / destaque escuro */
.prog-item.prog-item--dark {
  background: rgba(0,0,0,.2);
  border-color: rgba(255,255,255,.07);
}
.prog-item.prog-item--dark:hover {
  background: rgba(0,0,0,.28);
}

/* coluna de horário */
.prog-time {
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
}
.prog-time-hour {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  color: var(--teal-lt);
  letter-spacing: .06em;
  display: block;
}
.prog-time-dur {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
}

/* barra lateral colorida */
.prog-bar {
  width: 3px;
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
}
.prog-bar--teal   { background: var(--teal-lt); }
.prog-bar--orange { background: var(--orange); }

/* conteúdo do item */
.prog-speaker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 .15rem;
}
/* itens sobre fundo escuro da seção */
.programacao-section .prog-item {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.09);
}
.programacao-section .prog-role   { color: #fff; }
.programacao-section .prog-theme  { color: rgba(255,255,255,.55); }
.programacao-section .prog-time-hour { color: var(--teal-lt); }
.programacao-section .prog-time-dur  { color: rgba(255,255,255,.35); }

/* faixas de intervalo */
.prog-break {
  border-radius: 6px;
  padding: .9rem 1.4rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.prog-break--orange { background: rgba(232,82,26,.35); border: 1px solid rgba(232,82,26,.4); }
.prog-break--teal   { background: rgba(26,155,161,.25); border: 1px solid rgba(26,155,161,.3); }
.prog-break i {
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.prog-break span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}

/* encerramento / visita técnica */
.prog-closing {
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.prog-closing--flag   { background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.1); }
.prog-closing--visit  { background: rgba(232,82,26,.4); border: 1px solid rgba(232,82,26,.5); }
.prog-closing i { font-size: 1.2rem; color: #fff; flex-shrink: 0; }
.prog-closing-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  display: block;
}
.prog-closing-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}

/* ── COTAS ───────────────────────────────────── */
.cotas-section {
  background: var(--grey);
}

.cota-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .1);
  transition: transform .22s, box-shadow .22s;
  cursor: pointer;
}

.cota-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(15, 109, 114, .2);
}

.cota-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: .28rem .75rem;
  margin-bottom: .6rem;
}

.cota-ouro {
  background: #FFD580;
  color: #6b4a00;
}

.cota-prata {
  background: #C8D6D6;
  color: #2a3d3d;
}

.cota-bronze {
  background: #D4956A;
  color: #4a1e08;
}

.cota-header {
  padding: 1.8rem 1.5rem 1rem;
}

.cota-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: .15rem;
}

.cota-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.cota-price sup {
  font-size: 1rem;
  vertical-align: top;
  margin-top: .4rem;
  display: inline-block;
}

.cota-body {
  padding: 0 1.5rem 1.8rem;
}

.cota-feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .86rem;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.cota-feature:last-child {
  border-bottom: none;
}

.cota-feature i {
  color: var(--teal);
  font-size: .9rem;
}

.btn-cota {
  display: block;
  text-align: center;
  margin: 1.2rem 1.5rem 1.8rem;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .7rem 1.5rem;
  text-decoration: none;
  transition: background .2s;
}

.btn-cota:hover {
  background: var(--teal-dk);
  color: #fff;
}

/* destaque cota ouro */
.cota-destaque {
  border: 2px solid var(--orange);
}

.cota-destaque .cota-header {
  background: var(--orange);
  color: #fff;
}

.cota-destaque .cota-header h3 {
  color: #fff;
}

.cota-destaque .btn-cota {
  background: var(--orange);
}

.cota-destaque .btn-cota:hover {
  background: var(--orange-dk);
}

/* ── FEIRA RURAL ──────────────────────────────── */
.feira-section {
  background: var(--teal-dk);
  position: relative;
  overflow: hidden;
}

.feira-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 82, 26, .15) 0%, transparent 70%);
}

.feira-section .sec-title {
  color: #fff;
}

.feira-section .sec-tag {
  color: #FFD580;
}

.feira-section .sec-lead {
  color: rgba(255, 255, 255, .7);
}

.feira-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .35);
  transition: transform .3s;
}

.feira-img:hover {
  transform: scale(1.02);
}

.feira-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 3px;
  padding: .38rem .9rem;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  margin: .25rem;
}

.feira-pill i {
  color: #FFD580;
}

/* ── LOCAL / COMO CHEGAR ─────────────────────── */
.local-section {
  background: var(--white);
}

.local-map {
  width: 100%;
  height: 380px;
  border-radius: 6px;
  border: none;
  box-shadow: 0 6px 24px rgba(15, 109, 114, .14);
}

.info-card {
  background: var(--light);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  transition: box-shadow .2s;
}

.info-card:hover {
  box-shadow: 0 4px 16px rgba(15, 109, 114, .12);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.info-card h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--teal);
  margin-bottom: .15rem;
}

.info-card p {
  font-size: .88rem;
  color: var(--mid);
  margin: 0;
  line-height: 1.6;
}

/* ── CTA INSCRIÇÃO ───────────────────────────── */
.cta-section {
  background: var(--orange);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}

.cta-section::before {
  content: 'III';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 22rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .06);
  top: -3rem;
  left: -1rem;
  line-height: 1;
  user-select: none;
}

.cta-section .sec-title {
  color: #fff;
}

.cta-section .sec-lead {
  color: rgba(255, 255, 255, .82);
}

.btn-cta-w {
  background: #fff;
  color: var(--orange);
  border: none;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95rem 2.6rem;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s, box-shadow .15s;
}

.btn-cta-w:hover {
  color: var(--orange-dk);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--teal-dk);
  padding: 4rem 0 1.5rem;
  color: rgba(255, 255, 255, .45);
}

footer p {
  font-size: .84rem;
  line-height: 1.7;
}

footer h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .9rem;
}

footer a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  font-size: .85rem;
  display: block;
  margin-bottom: .35rem;
  transition: color .2s;
}

footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: .77rem;
  color: rgba(255, 255, 255, .3);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: rgba(255, 255, 255, .45);
  font-size: .95rem;
  text-decoration: none;
  margin-right: .4rem;
  transition: border-color .2s, color .2s;
}

.footer-social a:hover {
  border-color: var(--orange);
  color: #fff;
}

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANCHOR OFFSET ───────────────────────────── */
[id] {
  scroll-margin-top: 80px;
}