/* ========= Reset ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-bg: #070a1f;
  --c-bg-deep: #040716;
  --c-lime: #b9e86f;
  --c-lime-soft: #c9f08a;
  --c-lime-dim: rgba(185, 232, 111, 0.55);
  --c-lime-ghost: rgba(185, 232, 111, 0.08);
  --c-white: #ffffff;
  --c-white-80: rgba(255, 255, 255, 0.82);
  --c-white-65: rgba(255, 255, 255, 0.65);
  --c-pelo-brasil: #e6ecee;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html,
body {
  background: var(--c-bg-deep);
  color: var(--c-white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ========= Hero ========= */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vh, 96px) 24px clamp(48px, 8vh, 96px);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("/public/images/grupo-central-pelo-brasil/hero-bg-mapa-brasil-hexagonos.webp")
      center center / cover no-repeat,
    radial-gradient(
      ellipse at 50% 45%,
      #0f1a4a 0%,
      #070a1f 60%,
      #030516 100%
    );
  background-color: #070a1f;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(7, 10, 31, 0) 0%,
      rgba(7, 10, 31, 0.35) 55%,
      rgba(4, 7, 22, 0.85) 100%
    );
  pointer-events: none;
}

.hero__inner {
  width: 100%;
  max-width: 880px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ========= Eyebrow pill ========= */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid var(--c-lime-dim);
  background: var(--c-lime-ghost);
  color: var(--c-lime);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 22px;
}

/* ========= Pré-inscrições ========= */
.pre-insc {
  color: var(--c-lime);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ========= Title ========= */
.title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
  line-height: 0;
}

.title__img {
  width: clamp(320px, 56vw, 720px);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(185, 232, 111, 0.12));
}

/* ========= Tagline ========= */
.tagline {
  color: var(--c-white-80);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 400;
  margin-bottom: 22px;
  line-height: 1.5;
  max-width: 640px;
}

/* ========= Middle badge ========= */
.badge-mid {
  display: inline-flex;
  margin-bottom: 30px;
}

.badge-mid img {
  height: clamp(30px, 3.4vw, 40px);
  width: auto;
}

/* ========= Dates ========= */
.dates {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(18px, 3.2vw, 44px);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.date-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.date-item__day {
  color: var(--c-lime);
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.date-item__city {
  color: var(--c-white-65);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ========= CTA ========= */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border-radius: 999px;
  background: var(--c-lime);
  color: #0a1128;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--c-lime);
  box-shadow:
    0 0 0 1px rgba(185, 232, 111, 0.15),
    0 12px 32px rgba(185, 232, 111, 0.22);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.cta:hover {
  background: var(--c-lime-soft);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(185, 232, 111, 0.25),
    0 18px 40px rgba(185, 232, 111, 0.32);
}

.cta:active {
  transform: translateY(0);
}

/* ========= Responsive ========= */
@media (max-width: 900px) {
  .hero .dates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: initial;
  }

  .hero .dates .date-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .title__line-2 {
    gap: 8px;
  }

  .eyebrow-pill {
    font-size: 10px;
    letter-spacing: 0.18em;
    padding: 8px 16px;
    margin-bottom: 16px;
  }

  .cta {
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: auto;
    padding: 56px 20px 56px;
  }

  .pre-insc {
    margin-bottom: 12px;
  }

  .title {
    margin-bottom: 18px;
  }

  .tagline {
    margin-bottom: 18px;
  }

  .badge-mid {
    margin-bottom: 22px;
  }

  .hero .dates {
    margin-bottom: 22px;
  }
}

/* ========= Agenda section ========= */
.agenda {
  position: relative;
  width: 100%;
  padding: clamp(72px, 10vh, 120px) 24px clamp(72px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
  background: #070a1f;
}

.agenda__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(7, 10, 31, 0.92) 0%,
      rgba(7, 10, 31, 0.82) 40%,
      rgba(7, 10, 31, 0.95) 100%
    ),
    url("/public/images/grupo-central-pelo-brasil/hero-bg-mapa-brasil-hexagonos.webp")
      center center / cover no-repeat;
  filter: saturate(0.7);
}

.agenda__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(10, 20, 70, 0.35) 0%,
      rgba(7, 10, 31, 0) 60%
    ),
    radial-gradient(
      ellipse at 85% 80%,
      rgba(10, 20, 70, 0.3) 0%,
      rgba(7, 10, 31, 0) 60%
    );
  pointer-events: none;
}

.agenda__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.agenda__eyebrow {
  color: var(--c-lime);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.agenda__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.agenda__title--bold {
  font-weight: 800;
}

.agenda__title--light {
  font-weight: 400;
  opacity: 0.95;
  margin-left: 6px;
}

.agenda__subtitle {
  color: var(--c-white-65);
  font-size: clamp(14px, 1.15vw, 16px);
  margin-bottom: 36px;
}

/* ========= City cards ========= */
.city-cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.city-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(18, 25, 66, 0.55) 0%,
    rgba(10, 16, 45, 0.55) 100%
  );
  border: 1.5px solid rgba(185, 232, 111, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  min-height: 170px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(185, 232, 111, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.city-card:hover {
  transform: translateY(-2px);
  border-color: var(--c-lime);
  box-shadow:
    0 0 0 1px rgba(185, 232, 111, 0.2),
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(185, 232, 111, 0.2);
}

.city-card__day {
  color: var(--c-lime);
  font-size: clamp(36px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
}

.city-card__month {
  color: var(--c-white-65);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 8px;
}

.city-card__divider {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 14px 0 14px;
}

.city-card__city {
  color: var(--c-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.city-card__state {
  color: var(--c-white-65);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

.agenda__disclaimer {
  color: var(--c-white-65);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 920px;
}

.agenda__dot {
  color: var(--c-lime);
  padding: 0 4px;
}

.cta--left {
  align-self: flex-start;
}

/* ========= FAQ section ========= */
.faq {
  position: relative;
  width: 100%;
  padding: clamp(72px, 10vh, 120px) 24px clamp(72px, 10vh, 110px);
  background: #0a1030;
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq__eyebrow {
  color: var(--c-lime);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.faq__title {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -0.005em;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  margin-bottom: 40px;
}

.faq-item {
  background: linear-gradient(
    180deg,
    rgba(18, 25, 66, 0.55) 0%,
    rgba(10, 16, 45, 0.5) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(185, 232, 111, 0.25);
  background: linear-gradient(
    180deg,
    rgba(22, 32, 80, 0.6) 0%,
    rgba(12, 18, 55, 0.55) 100%
  );
}

.faq-item__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--c-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  user-select: none;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--c-lime);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--c-lime);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item__icon::before {
  left: 50%;
  top: 0;
  width: 2px;
  height: 18px;
  transform: translateX(-50%);
}

.faq-item__icon::after {
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-item[open] .faq-item__icon::before {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.faq-item__a {
  padding: 0 22px 22px;
  color: var(--c-white-65);
  font-size: 14px;
  line-height: 1.65;
}

.faq__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-item__q {
    font-size: 14px;
    padding: 18px 18px;
  }

  .faq-item__a {
    padding: 0 18px 18px;
    font-size: 13px;
  }
}

/* ========= Reserve section ========= */
.reserve {
  position: relative;
  width: 100%;
  padding: clamp(72px, 10vh, 110px) 24px clamp(96px, 12vh, 140px);
  background: var(--c-bg-deep);
  text-align: center;
  border-top: 1px solid rgba(185, 232, 111, 0.25);
}

.reserve::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(320px, 40vw);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--c-lime) 50%,
    transparent 100%
  );
  box-shadow: 0 0 18px rgba(185, 232, 111, 0.5);
}

.reserve__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reserve__title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.reserve__title--light {
  font-weight: 300;
  opacity: 0.95;
}

.reserve__title--bold {
  font-weight: 800;
  margin-left: 8px;
}

.reserve__text {
  color: var(--c-white-65);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

/* ========= Modal ========= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
  animation: modalFadeIn 0.18s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: linear-gradient(
    180deg,
    #0e1538 0%,
    #080c26 100%
  );
  border: 1px solid rgba(185, 232, 111, 0.15);
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: modalSlideUp 0.22s ease-out;
}

@keyframes modalSlideUp {
  from { transform: translateY(14px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-white-80);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  z-index: 2;
}

.modal__close:hover {
  background: rgba(185, 232, 111, 0.12);
  border-color: rgba(185, 232, 111, 0.35);
  color: var(--c-lime);
}

.modal__content {
  padding: 36px 36px 32px;
}

.modal__eyebrow {
  color: var(--c-lime);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal__title {
  color: var(--c-white);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.modal__subtitle {
  color: var(--c-white-65);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ========= Form ========= */
.form__row {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form__grid .form__row {
  margin-bottom: 10px;
}

/* ========= Steps ========= */
.form__progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.form__progress-bar {
  position: relative;
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.form__progress-fill {
  position: absolute;
  inset: 0;
  width: 50%;
  background: linear-gradient(90deg, var(--c-lime), #c9f08a);
  border-radius: 999px;
  transition: width 0.28s ease;
}

.form__progress-label {
  color: var(--c-white-65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.form__progress-label [data-step-label] {
  color: var(--c-lime);
}

.form__step[hidden] {
  display: none !important;
}

.form__next {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  cursor: pointer;
  border: 1px solid var(--c-lime);
}

.form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.form__actions .form__submit {
  width: 100%;
  margin-top: 0;
}

.form__back {
  padding: 8px 14px;
  background: transparent;
  border: none;
  color: var(--c-white-65);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.18s ease;
}

.form__back:hover {
  color: var(--c-lime);
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--c-white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form__input:focus {
  outline: none;
  border-color: rgba(185, 232, 111, 0.6);
  background: rgba(185, 232, 111, 0.04);
  box-shadow: 0 0 0 3px rgba(185, 232, 111, 0.12);
}

.form__input.is-invalid {
  border-color: rgba(255, 90, 90, 0.65);
  background: rgba(255, 90, 90, 0.05);
}

.form__input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(255, 90, 90, 0.15);
}

.form__select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b9e86f' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px 8px;
  cursor: pointer;
  color: var(--c-white);
}

.form__select:invalid,
.form__select option[value=""] {
  color: rgba(255, 255, 255, 0.45);
}

.form__select option {
  background: #0e1538;
  color: var(--c-white);
}

.form__error {
  color: #ff8b8b;
  font-size: 11px;
  margin-top: 5px;
  min-height: 14px;
  line-height: 1.3;
}

.form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--c-lime);
}

.form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

.form__submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10, 17, 40, 0.25);
  border-top-color: #0a1128;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}

.form__submit.is-loading .form__submit-label {
  opacity: 0.7;
}

.form__submit.is-loading .form__submit-spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form__notice {
  color: var(--c-white-65);
  font-size: 11px;
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ========= Modal success ========= */
.modal__success {
  text-align: center;
  padding: 18px 4px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal__success[hidden],
.form[hidden],
.modal__form-view[hidden] {
  display: none !important;
}

.modal__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(185, 232, 111, 0.14);
  border: 1px solid rgba(185, 232, 111, 0.4);
  color: var(--c-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.modal__success-title {
  color: var(--c-white);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.modal__success-text {
  color: var(--c-white-65);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 380px;
}

@media (max-width: 520px) {
  .modal {
    padding: 12px;
    align-items: center;
  }

  .modal__dialog {
    max-height: calc(100dvh - 24px);
    border-radius: 16px;
  }

  .modal__content {
    padding: 24px 20px 20px;
  }

  .modal__eyebrow {
    margin-bottom: 8px;
  }

  .modal__title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .modal__subtitle {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form__row,
  .form__grid .form__row {
    margin-bottom: 8px;
  }

  .form__input {
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 10px;
  }

  .form__progress {
    margin-bottom: 14px;
  }

  .form__error {
    font-size: 10px;
    min-height: 12px;
    margin-top: 3px;
  }

  .form__notice {
    margin-top: 10px;
    font-size: 10px;
  }

  .form__actions {
    gap: 8px;
  }

  .form__back {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* ========= Footer ========= */
.footer {
  background: var(--c-bg-deep);
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__text {
  color: var(--c-white-65);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ========= Responsive (new sections) ========= */
@media (max-width: 960px) {
  .city-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .city-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .agenda .cta--left {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .city-card {
    padding: 22px 20px;
    min-height: 150px;
  }

  .agenda__inner {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .title__line-1 {
    font-size: 42px;
  }
  .title__line-2 {
    font-size: 34px;
  }

  .city-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .city-card {
    padding: 18px 14px;
    min-height: 140px;
  }

  .city-card__day {
    font-size: 32px;
  }

  .city-card__city {
    font-size: 14px;
  }
}
