/* ══════════════════════════════════════════════════════════
   VERSION 1: Grid Cards
   Slots as 2-column card grid, mensagem as full-width banner
   ══════════════════════════════════════════════════════════ */

.v1-horarios {
  max-width: 900px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid #16223a;
}

.v1-horarios__header {
  margin-bottom: 1.5rem;
}

.v1-horarios__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 .4rem;
}

.v1-horarios__subtitle {
  color: var(--muted);
  font-size: .9rem;
  margin: 0 0 .5rem;
}

.v1-horarios__charity {
  font-size: .85rem;
  color: #6ee7b7;
  margin: 0;
}

.v1-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 480px) {
  .v1-grid { grid-template-columns: 1fr; }
}

.v1-card {
  background: #0f1d30;
  border: 1px solid #16223a;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.v1-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(34,197,94,.1);
}

.v1-card__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.v1-card__date {
  font-size: .95rem;
  font-weight: 600;
}

.v1-card__time {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .5rem;
}

.v1-card__form .btn {
  width: 100%;
}

.v1-mensagem {
  max-width: 900px;
  margin: 2rem auto 0;
}

.v1-mensagem__banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(90deg, rgba(34,197,94,.08) 0%, rgba(34,197,94,.02) 100%);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: .75rem;
  padding: 1.25rem 1.5rem;
  position: relative;
}

.v1-mensagem__badge {
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--primary);
  color: #0b1220;
  padding: .15rem .5rem;
  border-radius: 4px;
}

.v1-mensagem__content {
  flex: 1;
}

.v1-mensagem__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 .3rem;
}

.v1-mensagem__content p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.v1-mensagem__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.v1-mensagem__price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

@media (max-width: 640px) {
  .v1-mensagem__banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .v1-mensagem__action {
    width: 100%;
  }
  .v1-mensagem__action .btn {
    width: 100%;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════════════════
   VERSION 2: Timeline
   Vertical timeline with dots/lines, mensagem as last step
   ══════════════════════════════════════════════════════════ */

.v2-section {
  max-width: 900px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid #16223a;
}

.v2-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 .4rem;
}

.v2-header__sub {
  color: var(--muted);
  font-size: .9rem;
  margin: 0 0 .5rem;
}

.v2-header__charity {
  font-size: .85rem;
  color: #6ee7b7;
  margin: 0 0 2rem;
}

.v2-timeline {
  position: relative;
  padding-left: 2rem;
}

.v2-timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.v2-timeline__item:last-child {
  padding-bottom: 0;
}

.v2-timeline__dot {
  position: absolute;
  left: -2rem;
  top: .35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #0b1220;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  z-index: 1;
}

.v2-timeline__dot--promo {
  background: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96,165,250,.25);
}

.v2-timeline__line {
  position: absolute;
  left: calc(-2rem + 5px);
  top: 16px;
  bottom: 0;
  width: 2px;
  background: #16223a;
}

.v2-timeline__item:last-child .v2-timeline__line {
  display: none;
}

.v2-timeline__content {
  background: #0f1d30;
  border: 1px solid #16223a;
  border-radius: .75rem;
  padding: 1.25rem 1.5rem;
  transition: border-color .15s ease;
}

.v2-timeline__content:hover {
  border-color: var(--primary);
}

.v2-timeline__content--promo {
  border-color: rgba(96,165,250,.3);
  background: linear-gradient(135deg, rgba(15,29,48,1) 0%, rgba(20,30,55,1) 100%);
}

.v2-timeline__content--promo:hover {
  border-color: #60a5fa;
}

.v2-timeline__date {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.v2-timeline__details {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: .75rem;
}

.v2-timeline__time {
  font-size: .85rem;
  color: var(--muted);
}

.v2-timeline__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.v2-timeline__badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(96,165,250,.15);
  border: 1px solid rgba(96,165,250,.3);
  color: #93c5fd;
  padding: .15rem .5rem;
  border-radius: 99px;
  margin-bottom: .5rem;
}

.v2-timeline__content--promo h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 .4rem;
}

.v2-timeline__content--promo p {
  font-size: .88rem;
  color: #c8d9ee;
  margin: 0 0 .75rem;
  line-height: 1.5;
}


/* ══════════════════════════════════════════════════════════
   VERSION 3: Compact Table
   Dense rows with inline actions, mensagem as simple row
   ══════════════════════════════════════════════════════════ */

.v3-section {
  max-width: 900px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid #16223a;
}

.v3-section__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.v3-section__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 .3rem;
}

.v3-section__charity {
  font-size: .8rem;
  color: #6ee7b7;
  margin: 0;
}

.v3-section__meta {
  font-size: .8rem;
  color: var(--muted);
  white-space: nowrap;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.15);
  border-radius: 99px;
  padding: .3rem .8rem;
}

.v3-table {
  border: 1px solid #16223a;
  border-radius: .75rem;
  overflow: hidden;
}

.v3-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: .6rem 1.25rem;
  background: rgba(22,34,58,.5);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.v3-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: .85rem 1.25rem;
  border-top: 1px solid #16223a;
  transition: background .15s ease;
}

.v3-table__row:hover {
  background: rgba(34,197,94,.04);
}

.v3-table__date {
  font-size: .9rem;
  font-weight: 600;
}

.v3-table__time {
  font-size: .85rem;
  color: var(--muted);
}

.v3-table__price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
}

.v3-mensagem {
  max-width: 900px;
  margin: 1rem auto 0;
}

.v3-mensagem__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #0f1d30;
  border: 1px solid rgba(34,197,94,.15);
  border-radius: .75rem;
  padding: .85rem 1.25rem;
  transition: border-color .15s ease;
}

.v3-mensagem__row:hover {
  border-color: rgba(34,197,94,.35);
}

.v3-mensagem__icon {
  font-size: 1.5rem;
}

.v3-mensagem__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: .9rem;
}

.v3-mensagem__desc {
  font-size: .8rem;
  color: var(--muted);
}

.v3-mensagem__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 640px) {
  .v3-section__top { flex-direction: column; align-items: flex-start; }
  .v3-table__header { display: none; }
  .v3-table__row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: .25rem .75rem;
  }
  .v3-table__time { grid-column: 1; }
  .v3-table__price { grid-column: 2; grid-row: 1; }
  .v3-mensagem__row { flex-wrap: wrap; }
}


/* ══════════════════════════════════════════════════════════
   VERSION 4: Horizontal Scroll Cards
   Horizontally scrolling cards, mensagem is the last card
   ══════════════════════════════════════════════════════════ */

.v4-section {
  max-width: 900px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid #16223a;
}

.v4-section__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 .4rem;
}

.v4-section__subtitle {
  color: var(--muted);
  font-size: .9rem;
  margin: 0 0 .5rem;
}

.v4-section__charity {
  font-size: .85rem;
  color: #6ee7b7;
  margin: 0 0 1.5rem;
}

.v4-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
}

.v4-scroll::-webkit-scrollbar {
  height: 4px;
}

.v4-scroll::-webkit-scrollbar-track {
  background: #16223a;
  border-radius: 2px;
}

.v4-scroll::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.v4-scroll__card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: #0f1d30;
  border: 1px solid #16223a;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  transition: border-color .15s ease, transform .15s ease;
}

.v4-scroll__card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.v4-scroll__card--promo {
  border-color: rgba(34,197,94,.25);
  background: linear-gradient(135deg, rgba(15,29,48,1) 0%, rgba(11,25,44,1) 100%);
}

.v4-scroll__label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.v4-scroll__badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: #86efac;
  padding: .15rem .5rem;
  border-radius: 99px;
}

.v4-scroll__promo-icon {
  font-size: 2rem;
}

.v4-scroll__date {
  font-size: .9rem;
  font-weight: 700;
}

.v4-scroll__time {
  font-size: .8rem;
  color: var(--muted);
}

.v4-scroll__price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: .25rem 0;
}

.v4-scroll__card .btn {
  width: 100%;
  margin-top: auto;
}


/* ══════════════════════════════════════════════════════════
   VERSION 5: Mensagem Hero + Slot Pills
   Mensagem as big hero first, slots as compact pills below
   ══════════════════════════════════════════════════════════ */

.v5-hero {
  max-width: 900px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid #16223a;
}

.v5-hero__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(34,197,94,.06) 0%, rgba(15,29,48,1) 50%, rgba(34,197,94,.04) 100%);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 1.25rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.v5-hero__inner::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34,197,94,.08) 0%, transparent 70%);
  pointer-events: none;
}

.v5-hero__icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 16px rgba(34,197,94,.3));
}

.v5-hero__body {
  flex: 1;
}

.v5-hero__badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: #86efac;
  padding: .2rem .65rem;
  border-radius: 99px;
  margin-bottom: .5rem;
}

.v5-hero__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 .5rem;
}

.v5-hero__desc {
  font-size: .9rem;
  color: #c8d9ee;
  margin: 0;
  line-height: 1.6;
}

.v5-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.v5-hero__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.btn--lg {
  padding: .75rem 1.75rem;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .v5-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  .v5-hero__icon { font-size: 2.5rem; }
  .v5-hero__cta {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .v5-hero__cta .btn { flex: 1; text-align: center; }
}

.v5-slots {
  max-width: 900px;
  margin: 1.5rem auto 0;
}

.v5-slots__header {
  margin-bottom: 1rem;
}

.v5-slots__header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 .25rem;
}

.v5-slots__header p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
}

.v5-slots__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.v5-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15,29,48,.6);
  border: 1px solid #16223a;
  border-radius: .5rem;
  padding: .6rem 1rem;
  transition: border-color .15s ease;
}

.v5-slot:hover {
  border-color: var(--primary);
}

.v5-slot__left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.v5-slot__day {
  font-size: .9rem;
  font-weight: 600;
}

.v5-slot__time {
  font-size: .8rem;
  color: var(--muted);
}

.v5-slot__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.v5-slot__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: .4rem .9rem;
  border-radius: .4rem;
  font-weight: 600;
  font-size: .8rem;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.btn--outline:hover {
  background: var(--primary);
  color: #0b1220;
}

@media (max-width: 480px) {
  .v5-slot {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .v5-slot__right {
    width: 100%;
    justify-content: space-between;
  }
}
