/* ==========================================================================
   RotasSul Transfer — landing de evento: Natal Luz de Gramado
   Fase 3.

   Escopo: usada SOMENTE por /eventos/natal-luz-gramado/.
   Não é carregada pela home e não altera nenhum estilo existente.

   Reaproveita os tokens de :root definidos inline na home (mesmos valores,
   mesma paleta, mesmos raios e sombras) para manter a identidade visual sem
   depender do CSS inline do index.html — o que exigiria extrair centenas de
   linhas da home e refatorar o site inteiro.
   ========================================================================== */

/* ---------- base ---------- */
/* A home recebe box-sizing global dos CSS de template que esta página não
   carrega; sem isto, width:100% + padding estoura a largura do viewport. */
.nl-page *,
.nl-page *::before,
.nl-page *::after { box-sizing: border-box; }

.nl-skip {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.nl-skip:focus-visible {
  clip: auto;
  clip-path: none;
  height: auto;
  left: 12px;
  overflow: visible;
  top: 12px;
  white-space: normal;
  width: auto;
  z-index: 100;
}

.nl-page {
  background: var(--color-1, #fff);
  font-family: Epilogue, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.nl-container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
  width: 100%;
}

.nl-eyebrow {
  align-items: center;
  background: #1025360f;
  border: 1px solid #10253617;
  border-radius: 100px;
  color: #102536b8;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: .12em;
  padding: 7px 15px;
  text-transform: uppercase;
}

.nl-eyebrow__dot {
  background: var(--color-10, #f4c84b);
  border-radius: 50%;
  box-shadow: 0 0 0 2px #f4c84b4d;
  flex-shrink: 0;
  height: 7px;
  width: 7px;
}

.nl-section {
  padding: 80px 0;
  position: relative;
}

.nl-section--tint {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.nl-section__head {
  margin: 0 auto 44px;
  max-width: 760px;
  text-align: center;
}

.nl-section__head h2 {
  color: var(--color-2, #102536);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.04;
  margin: 14px 0 0;
  text-transform: uppercase;
}

.nl-section__head p {
  color: #102536ad;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.62;
  margin: 14px 0 0;
}

/* ---------- header ---------- */
.nl-header {
  align-items: center;
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  background: #ffffffd1;
  border-radius: 18px;
  box-shadow: 0 8px 28px #10253614, 0 0 0 1px #ffffffb3;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 50%;
  padding: 10px 14px;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  width: min(100% - 32px, 1180px);
  z-index: 50;
}

.nl-header__logo {
  align-items: center;
  border-radius: 14px;
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
}

.nl-header__logo img {
  display: block;
  height: 56px;
  object-fit: contain;
  width: 56px;
}

.nl-header__nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.nl-header__link {
  color: var(--color-2, #102536);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: opacity .2s var(--ease-out, ease);
  white-space: nowrap;
}

.nl-header__link:hover { opacity: .62; }

.nl-header__link:focus-visible,
.nl-header__logo:focus-visible,
.nl-btn:focus-visible,
.nl-link:focus-visible {
  outline: 3px solid #2f7bb6;
  outline-offset: 3px;
}

/* ---------- botões ---------- */
.nl-btn {
  align-items: center;
  border-radius: 100px;
  color: var(--color-2, #102536) !important;
  display: inline-flex;
  font-family: Epilogue, sans-serif;
  font-size: 15px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: -.025em;
  padding: 16px 28px;
  text-decoration: none !important;
  transition: transform .22s var(--ease-out, ease), box-shadow .22s var(--ease-out, ease), background .22s var(--ease-out, ease);
}

.nl-btn--primary {
  background: linear-gradient(135deg, #f7d86c 0%, #efbf44 100%);
  box-shadow: 0 8px 28px #f4c84b5c, 0 2px 6px #f4c84b2e, inset 0 1px #fff6;
}

.nl-btn--primary:hover {
  background: linear-gradient(135deg, #f8de80 0%, #f1c34d 100%);
  box-shadow: 0 14px 36px #f4c84b7a, 0 3px 8px #f4c84b38;
  transform: translateY(-2px);
}

.nl-btn--sm { font-size: 13px; padding: 12px 20px; }

.nl-btn svg { flex-shrink: 0; height: 18px; width: 18px; }

.nl-btn--ghost {
  background: #fff;
  border: 1px solid #10253621;
  box-shadow: var(--shadow-sm, 0 2px 10px #10253614);
}

.nl-btn--ghost:hover { background: #f7f9fc; transform: translateY(-2px); }

.nl-link {
  color: #1f5f91;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nl-link:hover { color: #102536; }

/* ---------- hero ---------- */
.nl-hero {
  align-items: center;
  background-color: #f7f4ef;
  background-image:
    radial-gradient(60% 70% at 80% 55%, #f4c84b17 0%, #0000 60%),
    radial-gradient(40% 50% at 10% 85%, #2f7bb60d 0%, #0000 50%);
  column-gap: clamp(32px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  padding: clamp(118px, 15vh, 150px) clamp(24px, 5.5vw, 80px) clamp(60px, 8vh, 84px);
  position: relative;
}

.nl-hero__copy { position: relative; z-index: 2; }

.nl-hero__h1 {
  color: var(--color-2, #102536);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 900;
  letter-spacing: clamp(-1.6px, -.032em, -2.6px);
  line-height: 1;
  margin: 22px 0 22px;
  text-transform: uppercase;
}

.nl-hero__h1 span {
  display: block;
  padding-bottom: 8px;
  position: relative;
}

.nl-hero__h1 span::after {
  background: var(--color-10, #f4c84b);
  border-radius: 2px;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 72px;
}

.nl-hero__sub {
  color: #102536ad;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.62;
  margin: 0 0 20px;
  max-width: 520px;
}

.nl-hero__dates {
  align-items: flex-start;
  background: #ffffffd1;
  border: 1px solid #10253614;
  border-radius: 16px;
  box-shadow: var(--shadow-sm, 0 2px 10px #10253614);
  display: flex;
  gap: 12px;
  margin: 0 0 26px;
  max-width: 520px;
  padding: 14px 16px;
}

.nl-hero__dates svg { color: var(--color-10, #efbf44); flex-shrink: 0; height: 18px; margin-top: 1px; width: 18px; }
.nl-hero__dates p { font-size: 13.5px; line-height: 1.5; margin: 0; color: #102536c4; }
.nl-hero__dates strong { color: var(--color-2, #102536); display: block; font-size: 14px; }

.nl-hero__note {
  align-items: center;
  color: #10253694;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
  margin: 16px 0 0;
}

.nl-hero__note svg { color: var(--color-10, #f4c84b); flex-shrink: 0; height: 14px; width: 14px; }

.nl-hero__visual { position: relative; z-index: 2; }

.nl-hero__image {
  border: 1px solid #fff9;
  border-radius: 28px;
  box-shadow: 0 30px 70px #10253638, 0 8px 20px #1025361f, inset 0 1px #ffffff59;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.nl-hero__image img {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.nl-hero__image figcaption {
  background: linear-gradient(180deg, #0000 0%, #051420b3 100%);
  bottom: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  left: 0;
  letter-spacing: .02em;
  padding: 28px 18px 14px;
  position: absolute;
  right: 0;
}

/* ---------- rotas ---------- */
.nl-routes {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nl-route {
  background: #fff;
  border: 1px solid rgba(16, 37, 54, .08);
  border-radius: 22px;
  box-shadow: 0 14px 40px #1025360f;
  padding: 24px;
  transition: transform .3s var(--ease-out, ease), box-shadow .3s var(--ease-out, ease);
}

.nl-route:hover { box-shadow: 0 20px 52px #10253619; transform: translateY(-4px); }

.nl-route__from {
  color: #1f5f91;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nl-route__to {
  align-items: center;
  color: var(--color-2, #102536);
  display: flex;
  font-size: 19px;
  font-weight: 900;
  gap: 9px;
  letter-spacing: -.03em;
  margin: 8px 0 0;
}

.nl-route__to svg { color: var(--color-10, #efbf44); flex-shrink: 0; height: 16px; width: 16px; }

.nl-route p { color: #102536a3; font-size: 14px; line-height: 1.55; margin: 10px 0 0; }

.nl-routes__note {
  color: #102536a3;
  font-size: 14px;
  line-height: 1.6;
  margin: 26px auto 0;
  max-width: 680px;
  text-align: center;
}

/* ---------- evento ---------- */
.nl-event {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.1fr .9fr;
}

.nl-event__body p { color: #102536ad; font-size: 16px; line-height: 1.68; margin: 0 0 16px; }
.nl-event__body p:last-child { margin-bottom: 0; }

.nl-facts { display: grid; gap: 14px; margin: 0; }

.nl-fact {
  background: #fff;
  border: 1px solid rgba(16, 37, 54, .08);
  border-radius: 18px;
  box-shadow: var(--shadow-sm, 0 2px 10px #10253614);
  padding: 18px 20px;
}

.nl-fact dt {
  color: #1f5f91;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nl-fact dd {
  color: var(--color-2, #102536);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.45;
  margin: 7px 0 0;
}

.nl-fact dd span { color: #102536a3; display: block; font-size: 13px; font-weight: 400; margin-top: 5px; }

/* ---------- figuras de apoio (Fase 3.1) ---------- */
.nl-figure {
  border: 1px solid #10253614;
  border-radius: 24px;
  box-shadow: var(--shadow-md, 0 8px 28px #1025361a);
  margin: 0 0 40px;
  overflow: hidden;
  position: relative;
}

.nl-figure img {
  aspect-ratio: 1640 / 860;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.nl-figure--caption { margin: 44px 0 0; }

.nl-figure--caption img { aspect-ratio: 1179 / 759; }

.nl-figure figcaption {
  background: linear-gradient(180deg, #0000 0%, #051420bf 100%);
  bottom: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  left: 0;
  letter-spacing: .01em;
  line-height: 1.45;
  padding: 40px 20px 16px;
  position: absolute;
  right: 0;
}

/* ---------- benefícios ---------- */
.nl-benefits {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nl-benefit {
  background: #fff;
  border: 1px solid rgba(16, 37, 54, .08);
  border-radius: 20px;
  box-shadow: var(--shadow-sm, 0 2px 10px #10253614);
  padding: 22px;
}

.nl-benefit svg { color: var(--color-10, #efbf44); height: 22px; width: 22px; }
.nl-benefit h3 { color: var(--color-2, #102536); font-size: 16px; font-weight: 900; letter-spacing: -.02em; margin: 12px 0 0; }
.nl-benefit p { color: #102536a3; font-size: 14px; line-height: 1.55; margin: 8px 0 0; }

/* ---------- ingressos ---------- */
.nl-tickets {
  align-items: center;
  background: linear-gradient(135deg, #fdf7e6 0%, #ffffff 100%);
  border: 1px solid #f4c84b3d;
  border-radius: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  padding: 30px;
}

.nl-tickets h2 { color: var(--color-2, #102536); font-size: 22px; font-weight: 900; letter-spacing: -.03em; margin: 0; text-transform: uppercase; }
.nl-tickets p { color: #102536ad; font-size: 15px; line-height: 1.6; margin: 10px 0 0; max-width: 640px; }

/* ---------- frota ---------- */
.nl-fleet {
  align-items: center;
  background: var(--color-2, #102536);
  border-radius: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 34px;
}

.nl-fleet h2 { color: #fff; font-size: 22px; font-weight: 900; letter-spacing: -.03em; margin: 0; text-transform: uppercase; }
.nl-fleet p { color: #ffffffb8; font-size: 15px; line-height: 1.6; margin: 10px 0 0; max-width: 560px; }

.nl-fleet .nl-btn--ghost {
  background: #ffffff14;
  border-color: #ffffff2e;
  box-shadow: none;
  color: #fff !important;
}

.nl-fleet .nl-btn--ghost:hover { background: #ffffff24; }

/* ---------- FAQ ---------- */
.nl-faq { margin: 0 auto; max-width: 820px; }

.nl-faq__item {
  background: #fff;
  border: 1px solid rgba(16, 37, 54, .09);
  border-radius: 16px;
  box-shadow: var(--shadow-sm, 0 2px 10px #10253614);
  margin-bottom: 12px;
  overflow: hidden;
}

.nl-faq__item summary {
  align-items: center;
  color: var(--color-2, #102536);
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 800;
  gap: 14px;
  justify-content: space-between;
  letter-spacing: -.02em;
  list-style: none;
  padding: 18px 22px;
}

.nl-faq__item summary::-webkit-details-marker { display: none; }

.nl-faq__item summary::after {
  color: var(--color-10, #efbf44);
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transition: transform .25s var(--ease-out, ease);
}

.nl-faq__item[open] summary::after { transform: rotate(45deg); }
.nl-faq__item summary:focus-visible { outline: 3px solid #2f7bb6; outline-offset: -3px; }
.nl-faq__answer { color: #102536ad; font-size: 15px; line-height: 1.65; padding: 0 22px 20px; }
.nl-faq__answer p { margin: 0; }

/* ---------- CTA final ---------- */
.nl-cta {
  background: linear-gradient(135deg, #102536 0%, #1a3c56 100%);
  border-radius: 30px;
  overflow: hidden;
  padding: 54px 34px;
  position: relative;
  text-align: center;
}

.nl-cta::before {
  background: radial-gradient(circle, #f4c84b26 0%, #0000 68%);
  border-radius: 50%;
  content: "";
  height: 420px;
  pointer-events: none;
  position: absolute;
  right: -90px;
  top: -160px;
  width: 420px;
}

.nl-cta > * { position: relative; z-index: 1; }
.nl-cta h2 { color: #fff; font-size: clamp(26px, 3.2vw, 40px); font-weight: 900; letter-spacing: -.045em; margin: 0 0 14px; text-transform: uppercase; }
.nl-cta p { color: #ffffffbd; font-size: 16px; line-height: 1.62; margin: 0 auto 26px; max-width: 560px; }

/* ---------- footer ---------- */
.nl-footer {
  background: var(--color-2, #102536);
  color: #ffffffb0;
  padding: 38px 0;
}

.nl-footer__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
}

.nl-footer p { font-size: 13.5px; line-height: 1.55; margin: 0; }
.nl-footer a { color: #fff; font-size: 13.5px; font-weight: 700; text-decoration: none; }
.nl-footer a:hover { text-decoration: underline; }
.nl-footer a:focus-visible { outline: 3px solid var(--color-10, #f4c84b); outline-offset: 3px; }

/* ---------- breadcrumb ---------- */
.nl-crumb { font-size: 13px; margin: 0 0 4px; }
.nl-crumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.nl-crumb li { align-items: center; color: #10253694; display: flex; gap: 8px; }
.nl-crumb li + li::before { color: #10253666; content: "›"; }
.nl-crumb a { color: #1f5f91; font-weight: 700; text-decoration: none; }
.nl-crumb a:hover { text-decoration: underline; }

/* ==========================================================================
   Breakpoints — alinhados aos da home (1100 / 991 / 640)
   ========================================================================== */

@media (max-width: 1100px) {
  .nl-hero { column-gap: 30px; grid-template-columns: 1fr 1fr; padding-left: 32px; padding-right: 32px; }
  .nl-routes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nl-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
  .nl-hero { grid-template-columns: 1fr; padding: clamp(104px, 16vw, 128px) 20px 52px; }
  .nl-hero__visual { margin-top: 32px; }
  .nl-hero__sub, .nl-hero__dates { max-width: 100%; }
  .nl-event { grid-template-columns: 1fr; }
  .nl-header__nav { gap: 18px; }
  .nl-section { padding: 62px 0; }
}

@media (max-width: 767px) {
  .nl-routes { grid-template-columns: 1fr; }
  .nl-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nl-container { padding: 0 20px; }
  /* em telas estreitas a foto panorâmica ficaria uma faixa fina: aproxima do 3:2
     mantendo o centro da composição, sem altura fixa arbitrária */
  .nl-figure { border-radius: 18px; margin-bottom: 30px; }
  .nl-figure img { aspect-ratio: 3 / 2; }
  .nl-figure--caption { margin-top: 32px; }
  .nl-figure--caption img { aspect-ratio: 4 / 3; }
  .nl-figure figcaption { font-size: 12px; padding: 32px 16px 14px; }
  .nl-header { border-radius: 16px; padding: 8px 10px; top: 10px; width: calc(100% - 20px); }
  .nl-header__logo img { height: 46px; width: 46px; }
  .nl-header__nav { gap: 14px; }
  .nl-header__link { font-size: 13px; }
  .nl-btn { font-size: 14px; padding: 15px 22px; width: 100%; justify-content: center; }
  .nl-btn--sm { font-size: 12px; padding: 10px 14px; width: auto; }
  .nl-hero__h1 { font-size: clamp(27px, 8.4vw, 38px); }
  .nl-tickets, .nl-fleet { padding: 24px; }
  .nl-cta { border-radius: 24px; padding: 40px 22px; }
  .nl-section { padding: 52px 0; }
  .nl-section__head { margin-bottom: 32px; }
  .nl-footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .nl-header__nav { gap: 10px; }
  .nl-header__link { font-size: 12px; }
  .nl-btn--sm { font-size: 11px; padding: 9px 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .nl-route, .nl-btn { transition: none !important; }
}
