.page-horarios {
  background: #f5f5f1;
  color: #080808;
}

.page-horarios .container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.schedule-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 46%, rgba(0,0,0,.18) 100%),
    url('/assets/img/horario-hero.png');
  background-size: cover;
  background-position: center;
}

.schedule-hero__inner {
  position: relative;
  z-index: 2;
  padding: 90px 0 120px;
}

.schedule-hero__content {
  max-width: 880px;
}

.schedule-eyebrow,
.schedule-section-head span,
.schedule-card__kicker,
.schedule-modal__head span,
.schedule-filter-box label span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 950;
}

.schedule-eyebrow {
  color: #ffdf00;
  margin-bottom: 18px;
}

.schedule-hero h1 {
  max-width: 880px;
  margin: 0 0 22px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .86;
  letter-spacing: -4px;
  text-transform: uppercase;
}

.schedule-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  font-weight: 700;
}

.schedule-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.schedule-hero__badges span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.schedule-message {
  display: inline-flex;
  margin-top: 26px;
  padding: 15px 18px;
  border-radius: 18px;
  color: #111;
  font-weight: 950;
}

.schedule-message.ok { background: #dfffe7; }
.schedule-message.warn { background: #fff1b8; }
.schedule-message.error { background: #ffd6d6; }

.schedule-filters {
  position: relative;
  z-index: 5;
  margin-top: -54px;
}

.schedule-filter-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto auto;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(0,0,0,.14);
}

.schedule-filter-box label span {
  margin: 0 0 8px 4px;
  color: #777;
}

.schedule-filter-box select,
.schedule-form input[type="text"],
.schedule-form input[type="email"],
.schedule-form input[type="tel"],
.schedule-form input[type="number"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e7e7e0;
  border-radius: 999px;
  background: #fff;
  padding: 0 16px;
  color: #111;
  font: inherit;
  font-weight: 850;
  outline: none;
}

.schedule-clear {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #666;
  font-weight: 950;
  white-space: nowrap;
}

.schedule-list {
  padding: 72px 0 100px;
}

.schedule-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.schedule-section-head span {
  color: #777;
}

.schedule-section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .9;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.schedule-cards {
  display: grid;
  gap: 14px;
}

.schedule-card {
  display: grid;
  grid-template-columns: 170px 1fr 210px;
  gap: 22px;
  align-items: center;
  border: 1px solid #e6e6dd;
  border-radius: 30px;
  background: #fff;
  padding: 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.schedule-card:hover {
  transform: translateY(-2px);
  border-color: #d9d9cf;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.schedule-card--next {
  border: 2px solid #ffdf00;
  box-shadow: 0 18px 50px rgba(0,0,0,.09);
}

.schedule-card__date {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px;
  background: #080808;
  color: #fff;
  padding: 18px;
}

.schedule-card--next .schedule-card__date {
  background: #ffdf00;
  color: #080808;
}

.schedule-card__date strong {
  display: block;
  font-size: 36px;
  line-height: .9;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.schedule-card__date span {
  display: block;
  margin-top: 12px;
  color: inherit;
  opacity: .78;
  font-weight: 900;
}

.schedule-card__kicker {
  color: #777;
  margin-bottom: 10px;
}

.schedule-card h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: .9;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.schedule-card__meta {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
  color: #4a4a4a;
  font-weight: 750;
  line-height: 1.45;
}

.schedule-card__meta p {
  margin: 0;
}

.schedule-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.schedule-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f1f1eb;
  color: #222;
  font-size: 13px;
  font-weight: 900;
}

.schedule-tags .is-full {
  background: #111;
  color: #fff;
}

.schedule-card__action .btn {
  width: 100%;
}

.schedule-empty {
  border: 1px solid #e6e6dd;
  border-radius: 30px;
  background: #fff;
  padding: 48px;
  text-align: center;
}

.schedule-empty h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: .95;
  text-transform: uppercase;
}

.schedule-empty p {
  margin: 0;
  color: #777;
  font-weight: 900;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.68);
}

.schedule-modal.open {
  display: flex;
}

.schedule-modal__box {
  width: min(100%, 700px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}

.schedule-modal__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: #ffdf00;
  padding: 24px;
}

.schedule-modal__head span {
  color: rgba(0,0,0,.58);
  margin-bottom: 8px;
}

.schedule-modal__head h2 {
  margin: 0;
  font-size: 34px;
  line-height: .9;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.schedule-modal__close {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: #080808;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.schedule-modal__body {
  padding: 30px;
}

.schedule-modal__info {
  margin-bottom: 18px;
  color: #444;
  font-weight: 850;
  line-height: 1.5;
}

.schedule-form {
  display: grid;
  gap: 12px;
}

.schedule-form .btn {
  width: 100%;
}

/* DECLARAÇÕES OBRIGATÓRIAS */

.schedule-consents {
  display: grid;
  gap: 14px;
  margin: 18px 0 4px;
  padding: 20px;
  border-radius: 20px;
  background: #f7f7f4;
  border: 1px solid #e6e6dd;
}

.schedule-consents > strong {
  display: block;
  margin-bottom: 2px;
  color: #080808;
  font-size: 17px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.consent-line {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e7e7e0;
  cursor: pointer;
}

.consent-line input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  border-radius: 4px;
  flex: none;
  accent-color: #ffd500;
  cursor: pointer;
}

.consent-line span {
  color: #161616;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
}

.consent-links {
  margin: 0;
  padding: 0 4px;
  font-size: 14px;
  line-height: 1.4;
}

.consent-links a {
  color: #080808;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.schedule-sticky-book {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  box-shadow: 0 16px 44px rgba(0,0,0,.25);
}

@media (max-width: 980px) {
  .schedule-hero {
    min-height: 66vh;
  }

  .schedule-hero__inner {
    padding: 74px 0 104px;
  }

  .schedule-hero h1 {
    letter-spacing: -2px;
  }

  .schedule-filter-box {
    grid-template-columns: 1fr;
  }

  .schedule-clear {
    justify-content: center;
  }

  .schedule-section-head {
    display: block;
  }

  .schedule-section-head h2 {
    margin-top: 8px;
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .schedule-card__date {
    min-height: auto;
  }

  .schedule-card__date strong {
    font-size: 34px;
  }

  .schedule-sticky-book {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .page-horarios .container {
    width: min(100% - 24px, 1180px);
  }

  .schedule-hero__badges span {
    font-size: 13px;
  }

  .schedule-list {
    padding: 56px 0 86px;
  }

  .schedule-card,
  .schedule-filter-box,
  .schedule-empty,
  .schedule-modal__box {
    border-radius: 24px;
  }

  .schedule-modal__body {
    padding: 22px;
  }

  .schedule-card h3 {
    font-size: 34px;
  }

  .consent-line {
    grid-template-columns: 20px 1fr;
    padding: 12px;
  }

  .consent-line span {
    font-size: 14px;
  }
}