/* Lidera Agro — Participantes · extra styles */

/* ─── Hero CTA row + countdown ────────────────────────────────── */
.hero-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cd-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-dark);
  opacity: .65;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}
body.theme-dark .cd-label { color: var(--green-light); }

.countdown {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(12, 68, 57, .92);
  color: #fff;
  padding: 16px 22px;
  font-family: 'Space Grotesk', sans-serif;
}
body.theme-dark .countdown { background: rgba(134, 230, 180, .12); border: 1px solid var(--green-light); }

.cd-block { text-align: center; min-width: 48px; }
.cd-v {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.cd-l {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .65;
  margin-top: 6px;
}
.cd-sep {
  font-size: 32px;
  line-height: 1;
  opacity: .35;
  align-self: center;
  margin-top: -6px;
}

/* ─── Razões (5 cards) — wider grid than the 4-cards version ──── */
.razoes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 60px;
}
@media (max-width: 1200px) { .razoes-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .razoes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .razoes-grid { grid-template-columns: 1fr; } }

.razoes-grid .why-cell {
  background: rgba(255,255,255,.5);
  padding: 32px 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .3s, transform .3s;
  position: relative;
}
body.theme-dark .razoes-grid .why-cell { background: rgba(255,255,255,.04); }
.razoes-grid .why-cell:hover { background: var(--green-dark); color: #fff; }
.razoes-grid .why-cell:hover .why-num,
.razoes-grid .why-cell:hover .why-h,
.razoes-grid .why-cell:hover p { color: inherit; }

/* ─── Agenda (programação) ───────────────────────────────────── */
.agenda {
  margin-top: 60px;
  display: grid;
  gap: 0;
}

.agenda-row {
  display: grid;
  grid-template-columns: 100px 32px 1fr;
  gap: 24px;
  padding: 22px 0;
  position: relative;
}
@media (max-width: 720px) {
  .agenda-row { grid-template-columns: 70px 24px 1fr; gap: 14px; padding: 18px 0; }
}

.ag-time {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--green-dark);
  letter-spacing: -.01em;
  padding-top: 4px;
}
body.theme-dark .ag-time { color: var(--green-light); }

.ag-marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 12px;
}
.ag-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-bright);
  border: 3px solid var(--green-pale);
  z-index: 2;
}
body.theme-dark .ag-dot { border-color: var(--cream); }
.ag-line {
  position: absolute;
  top: 24px;
  bottom: -22px;
  width: 2px;
  background: var(--line);
  z-index: 1;
}

/* Talk rows: bigger dot, branded color */
.agenda-row.kind-talk .ag-dot {
  width: 18px;
  height: 18px;
  background: var(--green-dark);
  margin-top: -2px;
}
body.theme-dark .agenda-row.kind-talk .ag-dot { background: var(--green-light); }

.agenda-row.kind-panel .ag-dot {
  background: var(--gold);
}

.ag-content {
  padding-top: 4px;
}
.ag-kind {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 6px;
}
.agenda-row.kind-break .ag-kind { color: var(--green-mid); opacity: .6; }
.agenda-row.kind-panel .ag-kind { color: var(--gold); }

.ag-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.2;
  letter-spacing: -.01em;
}
body.theme-dark .ag-title { color: var(--green-light); }
.agenda-row.kind-talk .ag-title { font-size: 24px; font-weight: 700; }
.agenda-row.kind-break .ag-title { font-weight: 500; opacity: .7; font-style: italic; }

.ag-speaker {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: .02em;
}
body.theme-dark .ag-speaker { color: var(--green-bright); }

.ag-desc {
  margin-top: 8px;
  font-size: 14.5px;
  opacity: .7;
  max-width: 56ch;
  line-height: 1.5;
}

/* ─── É para mim? (checklist) ────────────────────────────────── */
.checklist {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .checklist { grid-template-columns: 1fr; } }

.check-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
}
body.theme-dark .check-row { background: rgba(255,255,255,.04); }

.check-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.theme-dark .check-icon { background: var(--green-light); color: var(--green-dark); }

.check-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -.01em;
  line-height: 1.2;
}
body.theme-dark .check-title { color: var(--green-light); }

.check-desc {
  margin-top: 4px;
  font-size: 14.5px;
  opacity: .75;
  line-height: 1.45;
}

.commitment {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--green-dark);
  color: #fff;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1000px;
}
.commitment-mark {
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  margin-top: -2px;
}
.commitment-k {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 8px;
}
.commitment-v {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

/* ─── Ingressos (2 lotes) ────────────────────────────────────── */
.ingressos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 800px) { .ingressos-grid { grid-template-columns: 1fr; } }

.ingresso {
  padding: 40px 36px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
body.theme-dark .ingresso { background: rgba(255,255,255,.04); }

.ingresso.open {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  box-shadow: var(--shadow-2);
}
.ingresso.open::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 30px);
  pointer-events: none;
}

.ingresso.upcoming {
  opacity: .85;
}

.ingresso.closed {
  opacity: .55;
  background: rgba(120, 120, 120, .08);
}
body.theme-dark .ingresso.closed { background: rgba(255, 255, 255, .03); }
.ingresso.closed .name,
.ingresso.closed .price,
.ingresso.closed .tier { color: #6b7280 !important; }
.ingresso.closed .installment { background: rgba(120,120,120,.12); color: #6b7280; }

.ingresso .ribbon.ribbon-closed {
  background: #6b7280;
}

.ingresso .ribbon {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.ingresso .tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ingresso.open .tier { color: var(--green-light); }

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
}
.status-dot.open {
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .25);
  animation: pulse 1.8s ease-in-out infinite;
}
.status-dot.upcoming {
  background: #9ca3af;
}
.status-dot.closed {
  background: #6b7280;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, .25); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.ingresso .name {
  margin-top: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--green-dark);
}
.ingresso.open .name { color: #fff; }
body.theme-dark .ingresso .name { color: var(--green-light); }
body.theme-dark .ingresso.open .name { color: #fff; }

.ingresso .price-wrap {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.ingresso .price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--green-dark);
  letter-spacing: -.02em;
  line-height: 1;
}
.ingresso.open .price { color: #fff; }
body.theme-dark .ingresso .price { color: var(--green-light); }

.ingresso .price-tax {
  font-size: 14px;
  opacity: .65;
  font-weight: 500;
}

.ingresso .installment {
  margin-top: 6px;
  display: inline-block;
  background: rgba(46, 166, 116, .15);
  color: var(--green-bright);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  letter-spacing: .02em;
}
.ingresso.open .installment {
  background: var(--green-light);
  color: var(--green-dark);
}

.ingresso .deadline {
  margin-top: 16px;
  font-size: 13px;
  font-style: italic;
  opacity: .65;
}

.ingresso .benefits {
  margin-top: 32px;
  list-style: none;
  display: grid;
  gap: 14px;
  flex-grow: 1;
  padding: 0;
}
.ingresso .benefits li {
  font-size: 14.5px;
  line-height: 1.45;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}
.ingresso .benefits li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-bright);
  margin-top: 5px;
}
.ingresso.open .benefits li::before { background: var(--green-light); }
.ingresso .benefits li.exclusive { font-weight: 600; }

.ingresso-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  padding: 18px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
}
.ingresso-cta:hover {
  background: #b78a30;
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.ingresso-cta.disabled {
  background: rgba(255,255,255,.08);
  color: rgba(0,0,0,.4);
  cursor: not-allowed;
  text-transform: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
}
body.theme-dark .ingresso-cta.disabled { color: rgba(255,255,255,.4); }
.ingresso.upcoming .ingresso-cta.disabled {
  background: rgba(12, 68, 57, .08);
  color: rgba(12, 68, 57, .55);
}
.ingresso.upcoming .ingresso-cta.disabled:hover {
  transform: none;
  box-shadow: none;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--line);
  border-top: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
}
body.theme-dark .faq-list { border-color: var(--green-light); }

.faq-item {
  background: rgba(255,255,255,.65);
  transition: background .3s;
}
body.theme-dark .faq-item { background: rgba(255,255,255,.04); }
.faq-item.open { background: rgba(255,255,255,.95); }
body.theme-dark .faq-item.open { background: rgba(255,255,255,.08); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  text-align: left;
  letter-spacing: -.005em;
  line-height: 1.3;
}
body.theme-dark .faq-q { color: var(--green-light); }

.faq-toggle {
  font-size: 28px;
  font-weight: 400;
  color: var(--green-bright);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.faq-a {
  padding: 0 28px 28px 28px;
  font-size: 16px;
  line-height: 1.6;
  opacity: .82;
  max-width: 75ch;
}

/* ─── Sticky buy bar (bottom) ────────────────────────────────── */
.buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 32px;
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 -8px 32px rgba(10, 38, 32, .25);
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.buy-bar.show { transform: translateY(0); }

@media (max-width: 720px) {
  .buy-bar { padding: 12px 16px; flex-wrap: wrap; gap: 12px; }
}

.bb-info { display: flex; flex-direction: column; gap: 2px; }
.bb-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-light);
}
.bb-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.bb-price small {
  font-size: 12px;
  font-weight: 500;
  opacity: .65;
  margin-left: 4px;
  letter-spacing: 0;
}
.buy-bar .btn { background: var(--gold); color: #fff; padding: 14px 22px; }
.buy-bar .btn:hover { background: #b78a30; }

/* Clearance so the fixed buy bar doesn't cover the footer logos */
.foot { padding-bottom: 130px; }
@media (max-width: 720px) {
  .foot { padding-bottom: 190px; }
}

/* Tighten top-bar CTA in dark mode */
.top-bar .btn { color: #fff; }
body.theme-dark .top-bar .btn { background: var(--green-light); color: var(--green-dark); }

/* Cotas intro inherits — but tweak the H2 for participants context */
#ingressos.sec { padding-top: 100px; padding-bottom: 100px; }
#faq.sec { padding-top: 100px; padding-bottom: 100px; }
