@font-face {
  font-family: 'MonumentExtended';
  src: url('/shared/assets/fonts/MonumentExtended-Ultrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
      --bg: #070707;
      --panel: rgba(255,255,255,.03);
      --panel-2: rgba(255,255,255,.045);
      --text: #f8f8f8;
      --muted: #c4c4c4;
      --line: rgba(255,255,255,.08);
      --gold: #FFBF00;
      --gold-soft: #ffd86a;
      --silver: #E6E6E6;
      --shadow: 0 24px 80px rgba(0,0,0,.45);
      --radius: 28px;
    }

    body {
      margin: 0;
      font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
      background: radial-gradient(circle at top, #111 0%, #090909 34%, #050505 100%);
      color: #f8f8f8;
    }
    .bg-glow {
      position: fixed;
      border-radius: 50%;
      filter: blur(90px);
      opacity: .18;
      pointer-events: none;
    }
    .bg-glow-1 { width: 260px; height: 260px; background: var(--gold); top: 60px; left: -60px; }
    .bg-glow-2 { width: 320px; height: 320px; background: #5e5e5e; bottom: 40px; right: -80px; }
    .header {
      position: sticky;
      top: 0;
      z-index: 90;
      background: rgba(7,7,7,.78);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.05);
      padding: 0px 0px;
    }
    .brand-logo { width: 150px; }
    .nav {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand-link {
      display: inline-flex;
      align-items: center;
    }

/* AÇÕES DO HEADER */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.language-popover {
  position: relative;
}

.language-trigger {
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--silver);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-trigger:hover,
.language-trigger:focus {
  border-color: rgba(255,191,0,.35);
  box-shadow: 0 0 0 3px rgba(255,191,0,.10);
  background: rgba(255,255,255,.06);
}

.language-trigger:active {
  transform: scale(.98);
}

.language-trigger-label {
  white-space: nowrap;
}

.language-trigger-chevron {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,.72);
  transition: transform .22s ease, color .22s ease;
  flex: 0 0 16px;
}

.language-popover.is-open .language-trigger-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 129px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255,191,0,.14);
  background: linear-gradient(180deg, rgba(20,20,20,.98), rgba(10,10,10,.98));
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 120;
}

.language-popover.is-open .language-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.language-option:hover {
  background: rgba(255,191,0,.08);
}

.language-option.is-active {
  background: rgba(255,191,0,.10);
  color: var(--gold);
}

.language-option-code {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255,255,255,.06);
  color: inherit;
  flex: 0 0 28px;
}

.language-option-text {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .language-trigger {
    height: 38px;
    min-width: 38px;
    padding: 0 12px;
  }

  .language-trigger-label {
    font-size: 13px;
    display: none;
  }

  .language-menu {
    left: auto;
    right: 0;
    min-width: 170px;
    background: rgba(11, 11, 11, 0.9);
  }
}
.language-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 20px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
.btn-share {
  height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255,191,0,.28);
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .15s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-share:hover {
  color: var(--gold);
  background: rgba(11, 11, 11, 0.9);
}
.btn-share-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 18px;
  transition: filter .2s ease, transform .2s ease;
}

/* MODAL */
.share-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}

.share-modal.active {
  display: flex;
}

.share-box {
  width: 100%;
  max-width: 430px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20,20,20,.98), rgba(10,10,10,.98));
  border: 1px solid rgba(255,191,0,.14);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.share-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.share-title {
  color: var(--silver);
  font-size: 18px;
  font-weight: 700;
}

.btn-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: var(--silver);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.btn-close:hover {
  border-color: rgba(255,191,0,.28);
  background: rgba(255,191,0,.08);
  color: var(--gold);
}

.share-body {
  padding: 18px 20px 22px;
}

.share-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.share-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.share-action {
  min-height: 108px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: var(--silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color .2s ease, transform .15s ease, background .2s ease, box-shadow .2s ease;
}

.share-action:hover {
  transform: translateY(-1px);
  border-color: rgba(255,191,0,.28);
  background: rgba(255,191,0,.05);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.share-action-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,191,0,.10);
  color: var(--gold);
}

.share-action.whatsapp .share-action-icon {
  background: rgba(255,191,0,.10);
  color: #FFBF00; /* FORÇA o dourado */
}

.share-action.print .share-action-icon {
  background: rgba(255,191,0,.10);
  color: #FFBF00; /* FORÇA o dourado */
}

.share-action span {
  color: var(--silver);
  font-size: 14px;
  font-weight: 600;
}

.share-url-box {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 13px;
  word-break: break-all;
}

/* TOAST */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(10,10,10,.96);
  color: var(--silver);
  border: 1px solid rgba(255,191,0,.18);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1200;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .header-actions {
    gap: 8px;
  }

  .language-select {
    max-width: 120px;
    padding: 0 10px;
    font-size: 13px;
  }


  .share-options {
    grid-template-columns: 1fr 1fr;
  }

  .btn-share-text {
    display: none;
  }

  .btn-share {
    width: 37px;
    height: 37px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }
}



    .container {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .quote-page {
      padding: 32px 10px 80px;
    }
    

    .hero-card {
      background: linear-gradient(
  180deg,
  rgba(255,255,255,.045),
  rgba(255,255,255,.02)
);
      border: 1px solid rgba(255,191,0,.08);
    }
    .hero-card {
      overflow: hidden;
      border-radius: 28px;
      margin-bottom: 32px;
    }
    .hero-cover {
      min-height: 320px;
      background: rgba(255,255,255,.02);
    }

    .hero-cover img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      display: block;
    }
    .hero-content {
      padding: 15px;
      background: #0b0b0b;
    }

    .hero-badge {
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,191,0,.12);
      color: #FFBF00;
      border: 1px solid rgba(255,191,0,.25);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 14px;
      letter-spacing: 0.3px;
    }

    .hero-content h1 {
      margin: 0 0 10px;
      font-size: 34px;
      font-family: 'Inter', sans-serif;
      font-weight: 800;
    }

    .hero-description {
      margin: 0;
      color: #c4c4c4;
      line-height: 1.6;
    }
    .hero-content p {
      font-size: 13px;
      font-family: 'Inter', sans-serif;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-bottom: 20px;
    }

    .info-card {
      border-radius: 20px;
      padding: 18px;
    }

    .info-label {
      color: #c4c4c4;
      font-size: 13px;
      margin-bottom: 8px;
    }



    .section-card {
      border-radius: 28px;
      padding: 22px;
      margin-bottom: 20px;
    }

    .section-head h2 {
      margin: 0 0 16px;
      font-size: 24px;
    }

    .flights-list {
      display: grid;
      gap: 14px;
    }

    .flight-public-card {
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      background: rgba(255,255,255,.02);
      padding: 18px;
    }

    .flight-route {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .flight-meta {
      color: #c4c4c4;
      line-height: 1.6;
    }

    .public-note {
      color: #e6e6e6;
      line-height: 1.7;
      white-space: pre-wrap;
    }

    @media (max-width: 768px) {
      .info-grid {
        grid-template-columns: 1fr;
      }

      .hero-content h1 {
        font-size: 25px;
      }
    }











.outbound-flight-card {
  position: relative;
  z-index: 3;
  background: #0b0b0b;
  border: 1px solid rgba(255, 191, 0, 0.08);
  border-radius: 28px;
  padding: 18px 20px 10px;
  overflow: hidden;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .25),   /* sombra geral leve */
  0 28px 60px rgba(0, 0, 0, .55),   /* sombra forte inferior */
  inset 0 1px 0 rgba(255, 255, 255, .03);
  transition: box-shadow .28s ease;
}
.outbound-flight-stack.fare-open .outbound-flight-card,
.outbound-flight-stack.details-open .outbound-flight-card {
  box-shadow:
    0 18px 50px rgba(0,0,0,.35),
    0 40px 80px rgba(0,0,0,.6);
}
.outbound-flight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.outbound-flight-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.flight-airline-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.flight-airline-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
}

.outbound-flight-body {
  padding: 14px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.outbound-flight-footer {
  padding-top: 11px;
}
.outbound-flight-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.outbound-flight-footer-left {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.84);
}
.outbound-flight-footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.flight-compact-body {
  display: grid;
  grid-template-columns:
    62px
    minmax(110px, 0.1fr)
    minmax(150px, 1.1fr)
    minmax(110px, 0.1fr)
    minmax(140px, .9fr)
    34px;
  align-items: center;
  gap: 20px;
}

.flight-compact-logo {
  width: 48px;
  height: 48px;
  align-self: center; /* 🔥 garante alinhamento */
  padding: 6px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
}

.flight-compact-side,
.flight-compact-side-arrival {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.flight-compact-side {
  align-items: flex-start;
  text-align: left;
}

.flight-compact-side-arrival {
  align-items: flex-end;
  text-align: right;
}

.flight-compact-mainline,
.flight-compact-mainline-arrival {
  display: flex;
  align-items: baseline;
  line-height: 0.9;
  margin-bottom: 4px;
}

.flight-compact-mainline {
  justify-content: flex-start;
}

.flight-compact-mainline-arrival {
  justify-content: flex-end;
}

/* 🔥 BLOCO TIPOGRÁFICO PADRÃO (VOO) */

.flight-compact-time {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 24px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.flight-compact-iata {
  margin-left: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.88);
}

.flight-compact-city {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.flight-compact-duration {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: 0.02em;
}

.flight-compact-stops {
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.66);
}


.flight-compact-date {
  margin-top: 4px;
  font-size: 12px;
  color: #c4c4c4;
}

.flight-compact-center {
  min-width: 0;
  text-align: center;
  width: 100%;
}
.flight-compact-line {
  position: relative;
  height: 1px;
  width: 100%;
  margin: 8px 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.22),
    rgba(255,255,255,.08)
  );
}
.flight-compact-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,191,0,.10);
  transform: translate(-50%, -50%);
}

.flight-change-fare-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.82);
  padding: 0;
  cursor: pointer;
}

.flight-change-fare-btn:hover {
  color: var(--gold);
}


.flight-compact-fare {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.flight-fare-badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,191,0,.22);
  background: rgba(255,191,0,.08);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.flight-fare-inline {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.flight-fare-inline-price {
  margin-top: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-block;
  text-align: center;
  font-family: Inter, system-ui, sans-serif;

  background: linear-gradient(90deg, #FFBF00, #ffd86a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flight-fare-inline-price::before {
  content: "Preço por pessoa";
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  font-family: Inter, system-ui, sans-serif;
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .flight-fare-inline-price::before {
    content: "Por pessoa";
    font-size: 10px;
  }
}
.flight-compact-fare,
.flight-fare-inline {
  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 centraliza badge e preço */
  justify-content: center;
}


@media (max-width: 768px) {

  .flight-compact-body {
    display: grid;
    grid-template-columns: 47px 0.6fr 0.9fr 0.6fr 1fr 28px;
    align-items: center;
    gap: 8px;
    min-height: 0; /* remove a folga extra */
  }

  /* LOGO */
  .flight-compact-logo {
    width: 36px;
    height: 36px;
    padding: 4px;
    align-self: center;
  }



  /* ORIGEM */
  .flight-compact-mainline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    line-height: 1;
  }

  .flight-compact-iata {
    margin-left: 0;   /* 🔥 remove o offset do desktop */
    margin-top: 0;
  }

  /* DESTINO */
  .flight-compact-mainline-arrival {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin: 0;
    line-height: 1;
  }

  .flight-compact-time {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }

  .flight-compact-iata {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }

  .flight-compact-city {
    display: none;
  }

  /* CENTRO */
  .flight-compact-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 0;
  }

  .flight-compact-duration {
    font-size: 8px;
  }

  .flight-compact-line {
    margin: 6px 0;
  }
  .flight-compact-line::after {
    width: 5px;
    height: 5px;
  }

  .flight-compact-stops {
    font-size: 8px;
    margin-top: 2px;
    line-height: 1;
  }

  /* TARIFA */
  .flight-compact-fare {
    display: flex;
    justify-content: center;
  }

  .flight-fare-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    margin-top: 0;
  }

  .flight-fare-badge {
    font-size: 8px;
    padding: 2px 6px;
    margin-bottom: 3px;
  }

  .flight-fare-inline-price {
    font-size: 12px;
    line-height: 1;
  }

  .flight-fare-inline-price::after {
    font-size: 8px;
  }

  /* TOGGLE */
  .flight-compact-toggle {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px;
    min-height: 27px;
    padding: 0 !important;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .flight-compact-toggle svg {
    width: 14px;
    height: 14px;
  }
}


.flight-compact-baggage {
  display: flex;
  align-items: center;
}

.flight-compact-bag {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: opacity .2s ease, color .2s ease, filter .2s ease;
}

.flight-compact-bag svg {
  width: 24px;
  height: 24px;
  display: block;
}

.flight-compact-bag.is-active {
  color: var(--gold);
  opacity: 1;
}

.flight-compact-bag.is-disabled {
  color: rgba(255,255,255,.42);
  opacity: .45;
  filter: none;
}

.flight-bag-qty {
  display: none;
}

.flight-compact-toggle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform .22s ease,
    color .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}
.flight-compact-toggle:hover {
  color: var(--gold);
  border-color: rgba(255,191,0,.32);
  background: rgba(255,191,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.24);
}
.flight-compact-toggle.active {
  color: var(--gold);
  border-color: rgba(255,191,0,.35);
  background: rgba(255,191,0,.08);
  box-shadow: 0 0 0 4px rgba(255,191,0,.06);
}
.flight-compact-toggle svg {
  transition: transform .25s ease;
}
.flight-compact-toggle.active svg {
  transform: rotate(180deg);
}

.outbound-flight-details-card {
  border: 1px solid rgba(255, 191, 0, 0.14);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  padding: 18px;
}

.outbound-flight-details-card {
  border: 1px solid rgba(255, 191, 0, 0.14);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.02)
  );
  padding: 18px 18px 16px;
}

/* TIMELINE */
.flight-timeline {
  display: flex;
  flex-direction: column;
}

.flight-timeline-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin-top: 6px;
}
.flight-timeline-row {
  min-height: 20px;
  display: flex;
  align-items: center;
}

.flight-timeline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 191, 0, .10);
  flex: 0 0 7px;
}

.flight-timeline-connector {
  width: 2px;
  flex: 1;
  min-height: 42px;
  margin: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.30),
    rgba(255,255,255,.06)
  );
}
.flight-timeline-content {
  min-width: 0;
}

.flight-timeline-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #F5F5F5;
}

.flight-timeline-time {
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  margin-right: 8px;
}

.flight-timeline-airport {
  color: rgba(255,255,255,.92);
  font-size: 14px;
}

.flight-timeline-segment {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 26px;
  padding: 6px 0;
}
.flight-timeline-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}

.flight-segment-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255,255,255,.04);
}
.flight-segment-logo-wrap {
  margin-top: 20px;
}

.flight-timeline-duration {
  position: absolute;
  left: 88px;
  top: 39%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,191,0,.28);
  background: linear-gradient(
    180deg,
    rgba(255,191,0,.18),
    rgba(255,191,0,.10)
  );
  color: #FFBF00;
  font-size: 11px;
  font-weight: 700;
}

.flight-timeline-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.flight-stop-separator {
  display: grid;
  grid-template-columns: 22px 1fr; /* 🔥 mesma lógica da timeline */
  column-gap: 66px;
  align-items: center;
  margin: 16px 0;
}

.flight-stop-rail {
  width: 22px;
}

.flight-stop-content {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 191, 0, 0.25);
  border-bottom: 1px solid rgba(255, 191, 0, 0.25);
  font-size: 11px;
  color: #d7d7d7;
  line-height: 1.4;
}


.outbound-flight-title-footer {
    font-size: 14px;
    font-weight: 700;
    color: #f5f5f5;
}

@media (max-width: 768px) {
  .flight-segment-logo {
    width: 30px;
    height: 30px;
  }
  .flight-timeline-segment {
    column-gap: 5px;
  }
  .flight-timeline-rail {
    height: 44px;
  }
  .flight-timeline-connector {
    width: 1px;
    min-height: 45px;
  }
  .flight-timeline-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);

    /* 🔥 halo proporcional */
    box-shadow: 0 0 0 4px rgba(255, 191, 0, 0.12);

    flex: 0 0 4px;
  }
  .flight-timeline-time,
  .flight-timeline-airport {
    font-size: 11px;
    margin-right: 0;
  }
  .flight-timeline-item {
    gap: 1px;
  }
  .flight-timeline-duration {
    padding: 4px 7px;
    font-size: 9px;
    left: 54px;
    top: 34%;
  }
  .flight-timeline-meta {
   font-size: 9px;
  }
  .flight-segment-logo-wrap {
    margin-top: 18px;
  }
  .flight-stop-content {
    font-size: 9px;
  }
  .flight-stop-separator {
    column-gap: 32px;
    margin-top: 0;
  }
}

.fare-price-current {
  color: var(--gold);
  font-weight: 600;
}


.flight-fare-option-price-bottom {
  margin-top: 12px;
  margin-bottom: 10px;
}

.fare-price-main {
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #FFBF00, #ffd86a);
  -webkit-background-clip: text;
}

.fare-price-delta {
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #FFBF00, #ffd86a);
  -webkit-background-clip: text;
}

.fare-price-delta.is-positive {
  color: var(--gold);
}

.fare-price-delta.is-negative {
  color: #00c853;
}

.fare-price-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.3;
}

.quote-total-card {
  margin-top: 32px;
  margin: 28px 0 0;
  padding: 18px 20px 10px;
  border-radius: 28px;
  background: #0b0b0b;
  border: 1px solid rgba(255, 191, 0, 0.08);
  color: var(--text);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, .25),
    0 28px 60px rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 255, 255, .03);
}

.quote-total-lines {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.quote-total-row {
  align-items: center;
}

.quote-total-row,
.quote-total-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quote-total-row span,
.quote-total-final span {
  font-size: 12px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,.65);
}

.quote-total-row strong {
  font-size: 13px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  text-align: right;
  min-width: 110px;
  display: inline-block;
}

.quote-total-final {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.quote-total-final strong {
  font-size: 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 0 14px rgba(255,191,0,.12);
  background: linear-gradient(90deg, #FFBF00, #ffd86a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .quote-total-card {
    margin-top: 28px;
    padding: 22px 20px;
  }


  .quote-total-final strong {
    font-size: 20px;
  }
  .quote-total-row strong {
    font-size: 13px;
    font-family: Inter, system-ui, sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #FFBF00, #ffd86a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--silver);
  }
}

/* DESKTOP: mostra até 4 tarifas por página */
@media (min-width: 769px) {
  .flight-fares-mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 16px;
  }

  .flight-fares-track {
    display: flex;
    transition: transform .28s ease;
    will-change: transform;
  }

  .flight-fare-slide {
    flex: 0 0 25%;
    min-width: 25%;
    padding: 0 8px;
  }

  .flight-fares-nav-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 191, 0, .24);
    border-radius: 999px;
    background: rgba(255, 191, 0, .08);
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .flight-fares-nav-btn:disabled {
    opacity: .35;
    cursor: default;
  }

  .flight-fares-counter {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.78);
  }
}



.site-footer {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  align-items: center;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 10px 14px;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 🔥 SEU PADRÃO DE ÍCONE */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  width: 40px;
  height: 40px;
  transition: 0.2s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  color: var(--gold-soft);
  transform: translateY(-2px);
}


.site-footer-copy {
  font-size: 13px;
  font-weight: 500;
}
/* MOBILE */
@media (max-width: 768px) {
  .site-footer-inner {
    flex-direction: column; /* 🔥 joga o texto pra baixo */
    gap: 12px;
    text-align: center;
  }

  .site-footer-social {
    justify-content: center;
    flex-wrap: wrap; /* opcional: quebra ícones se não couber */
    gap: 5px;
  }

  .site-footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.6);
  }
  .social-icon svg {
    width: 20px;
    height: 20px;
  }
}





/* ESTADO FECHADO PADRÃO */
.flight-details-subblock,
.flight-fares-subblock {
  position: relative;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  margin-top: -34px;
  padding-top: 34px;
  transition:
    opacity .18s ease,
    transform .28s cubic-bezier(.22,.8,.3,1);
}

/* ESTADO ABERTO */
.flight-details-subblock.open {
  margin-bottom: -72px;
  max-height: 5000px;
  opacity: 1;
  pointer-events: auto;
}
.flight-fares-subblock.open {
  margin-bottom: -34px;
  max-height: 5000px;
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .flight-details-subblock.open,
  .flight-fares-subblock.open {
    margin-bottom: -58px;
  }
}
.flight-details-subblock-inner {
  border: 1px solid rgba(255, 191, 0, 0.12);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: #0b0b0b;
  padding: 80px 18px 18px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .03);
}

.flight-details-header {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #FFBF00;
  text-transform: uppercase;
}

@media (max-width: 768px) {

  .flight-details-subblock-inner {
    padding: 52px 14px 14px;
    border-radius: 0 0 24px 24px;
  }
}


.flight-fares-subblock-inner {
  border: 1px solid rgba(255, 191, 0, 0.12);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background: #0b0b0b;
  padding: 80px 18px 18px;
}

.flight-fares-mobile-topbar {
  display: none;
}

.flight-fares-viewport {
  overflow: hidden;
}

.flight-fares-track {
  display: flex;
  transition: transform .18s ease-out;
  will-change: transform;
}

.flight-fare-slide {
  min-width: 25%;
  flex: 0 0 25%;
  padding: 4px;
  box-sizing: border-box;
}
.fare-subtext {
  display: block;
  font-size: 9px;
  margin-top: 2px;
}
.flight-details-subblock-inner,
.flight-fares-subblock-inner {
  position: relative;
  margin-top: 0;
  transform: translateY(-34px);
  padding-top: 96px;
  border-top: 0;
  border-radius: 0 0 28px 28px;
  z-index: 2;
}


.outbound-flight-stack {
  position: relative;
  margin-bottom: 32px;
}

.outbound-flight-stack.fare-open,
.outbound-flight-stack.details-open {
  margin-bottom: 32px;
  padding-bottom: 0;
}

.outbound-flight-stack + .outbound-flight-stack {
  margin-top: 0;
}

@media (max-width: 768px) {
  .outbound-flight-stack,
  .outbound-flight-stack.fare-open,
  .outbound-flight-stack.details-open {
    margin-bottom: 24px;
  }
}



@media (max-width: 768px) {
  .flight-fares-track {
    margin: 0 -9px;
  }
  .fare-list-text {
  font-size: 13px;
  }
  .fare-subtext {
  font-size: 13px;
  }
}

@media (max-width: 768px) {
  .flight-fares-subblock-inner {
    padding: 52px 14px 14px;
    border-radius: 0 0 24px 24px;
  }

  .flight-fares-mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
  }

  .flight-fares-counter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.88);
  }

  .flight-fares-nav-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,191,0,.24);
    border-radius: 999px;
    background: rgba(255,191,0,.08);
    color: var(--gold);
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .flight-fares-nav-btn:disabled {
    opacity: .35;
    cursor: default;
  }

  .flight-fare-slide {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 15px;
  }

  .flight-fare-option-card {
    min-height: unset;
  }

  .flight-fare-option-head {
    min-height: 48px;
    font-size: 16px;
    padding: 0 14px;
  }

  .flight-fare-option-body {
    min-height: unset;
    margin-left: 5px;
  }

  .fare-list-item {
    font-size: 12px;
  }

  .flight-fare-option-footer {
    padding: 14px 16px 16px;
  }

  .flight-fare-option-btn {
    height: 40px;
    font-size: 14px;
  }
}

.flight-fare-option-card {
  height: 100%;
  min-height: 340px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: #0f0f11;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.flight-fare-option-card.is-selected {
  border-color: rgba(255,191,0,.35);
  border: 1px solid rgba(255,191,0,.35);
  box-shadow:
    0 0 0 1px rgba(255,191,0,.15),
    0 10px 30px rgba(0,0,0,.4);
}

.flight-fare-option-head {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
  font-weight: 700;
  color: #f5f5f5;
  text-align: center;
}


.flight-fare-option-footer {
  padding: 12px;
}

.flight-fare-option-btn {
  width: 100%;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.flight-fare-option-btn.is-added {
  border-color: rgba(255,191,0,.35);
  background: linear-gradient(
    180deg,
    #FFBF00,
    #E6A800
  );
  color: #111;
  cursor: default;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(255,191,0,.25);
}













.fare-feature-line strong {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255,255,255,.88);
}

.flight-fare-option-body {
  flex: 1;
  min-height: 130px;
  padding: 15px 6px 4px;
  overflow: visible;
}

.fare-features-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fare-list-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 1px;
  font-size: 9px;
  line-height: 1.35;
}

.fare-list-item.is-highlight {
  color: rgba(255,255,255,.92);
}

.fare-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  font-size: 10px;
  font-weight: 900;
  color: var(--gold);
  margin-top: 1px;
}

.fare-list-text {
  display: block;
}
.flight-fare-option-card.is-premium {
  background: linear-gradient(
    180deg,
    #FFBF00 0%,
    #E6A800 100%
  );
  border: 1px solid rgba(255, 191, 0, 0.6);
  color: #1a1a1a;
}
.flight-fare-option-card.is-premium * {
  color: #1a1a1a !important;
}
.flight-fare-option-card.is-premium .flight-fare-option-head {
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.flight-fare-option-card.is-premium .flight-fare-option-btn {
  background: rgba(0,0,0,.15);
  border: 1px solid rgba(0,0,0,.25);
  color: #1a1a1a;
}

.flight-fare-option-card.is-premium .flight-fare-option-btn:hover {
  background: rgba(0,0,0,.25);
}
.fare-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  margin-left: 2px;
  vertical-align: -1px;
  cursor: pointer;
  flex: 0 0 11px;
  z-index: 10;
}

.fare-info::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;

  background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23e3e3e3'>\
<path d='M14.5986 16H17.4014V23.007H14.5986V16ZM14.5986 10.3944H17.4014V13.1972H14.5986V10.3944ZM16 4.78878C9.8058 4.78878 4.78878 9.8058 4.78878 16C4.78878 22.1942 9.8058 27.2112 16 27.2112C22.1942 27.2112 27.2112 22.1942 27.2112 16C27.2112 9.8058 22.1942 4.78878 16 4.78878ZM16 2C23.7357 2 30 8.27827 30 16C30 23.7217 23.7217 30 16 30C8.27827 30 2 23.7217 2 16C2 8.27827 8.26426 2 16 2Z'/>\
</svg>") no-repeat center;

  background-size: 11px 11px;
}

.fare-info::after {
  content: attr(data-info);
  position: absolute;
  bottom: 135%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}
.flight-fares-subblock,
.flight-fares-viewport {
  overflow: hidden !important;
}
.fare-info:hover::after {
  opacity: 1;
}








.quote-total-card.is-price-updating {
  animation: totalCardPulse .55s ease;
}

.quote-total-card.is-price-updating .quote-total-final strong {
  animation: totalValueGlow .55s ease;
}

@keyframes totalCardPulse {
  0% {
    box-shadow:
      0 12px 30px rgba(0,0,0,.25),
      0 28px 60px rgba(0,0,0,.55),
      inset 0 1px 0 rgba(255,255,255,.03);
  }

  45% {
    box-shadow:
      0 0 0 1px rgba(255,191,0,.18),
      0 0 34px rgba(255,191,0,.16),
      0 28px 60px rgba(0,0,0,.55);
  }

  100% {
    box-shadow:
      0 12px 30px rgba(0,0,0,.25),
      0 28px 60px rgba(0,0,0,.55),
      inset 0 1px 0 rgba(255,255,255,.03);
  }
}

@keyframes totalValueGlow {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255,191,0,0);
  }

  45% {
    transform: scale(1.035);
    text-shadow: 0 0 18px rgba(255,191,0,.24);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 14px rgba(255,191,0,.12);
  }
}

.flight-fare-option-card.is-fare-selected-anim {
  animation: fareSelectedPulse .55s ease;
}

@keyframes fareSelectedPulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.025);
    box-shadow:
      0 0 0 1px rgba(255,191,0,.28),
      0 0 28px rgba(255,191,0,.18);
  }

  100% {
    transform: scale(1);
  }
}

/* ============================= */
/* CTA PASSAGEIROS (FORA DO CARD) */
/* ============================= */

.quote-passengers-action-outside {
  max-width: var(--container-max);
  margin: 22px auto 0;
  padding: 0 var(--container-gutter);
  display: flex;
  justify-content: flex-end;
}

/* BOTÃO */
.btn-passengers-next {
  min-height: 48px;
  margin-top: 30px;
  padding: 0 26px;
  border-radius: 999px;

  border: 1px solid rgba(255, 191, 0, 0.35);

  background: linear-gradient(
    135deg,
    #FFBF00 0%,
    #ffd86a 100%
  );

  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;

  cursor: pointer;

  box-shadow:
    0 14px 34px rgba(255, 191, 0, 0.18),
    0 0 0 1px rgba(255, 191, 0, 0.15) inset;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.15s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
}
.btn-passengers-next:hover:not(.is-loading) {
  box-shadow: 0 10px 28px rgba(255,191,0,0.35);
  transform: translateY(-1px);
}
.otp-illustration img {
  width: 100px;
  opacity: 0.85;
  filter: brightness(0.9) saturate(0.8);
}
/* HOVER */
.btn-passengers-next:hover {
  transform: translateY(-1px);

  box-shadow:
    0 18px 44px rgba(255, 191, 0, 0.28),
    0 0 0 1px rgba(255, 191, 0, 0.25) inset;
}

.btn-passengers-next.is-loading {
  background: linear-gradient(135deg, #9c9c9c, #bdbdbd); /* cinza suave */
  color: #222;

  opacity: 0.75;
  filter: saturate(0.3) brightness(0.95);

  box-shadow: none;
  transform: none;

  pointer-events: none;
  cursor: not-allowed;
}

/* ACTIVE */
.btn-passengers-next:active {
  transform: translateY(0);
  box-shadow:
    0 10px 22px rgba(255, 191, 0, 0.18);
}

/* MOBILE */
@media (max-width: 768px) {
  .quote-passengers-action-outside {
    justify-content: stretch;
  }

  .btn-passengers-next {
    width: 100%;
    margin-top: 30px;
  }
}

/* ============================= */
/* ETAPAS DO CHECKOUT */
/* ============================= */

.checkout-steps {
  margin: 26px 0;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.checkout-step {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255,255,255,.48);
}

.checkout-step span {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);

  background: rgba(255,255,255,.035);

  font-weight: 900;
  line-height: 1;
}

.checkout-step strong {
  font-size: 13px;
  font-weight: 800;
}

.checkout-line {
  height: 1px;
  background: rgba(255,255,255,.14);
}

.checkout-step.is-active,
.checkout-step.is-done {
  color: var(--gold);
}

.checkout-step.is-active span,
.checkout-step.is-done span {
  color: var(--gold);
  border-color: rgba(255,191,0,.45);
  background: rgba(255,191,0,.12);
}


.otp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.otp-modal.is-open {
  display: flex;
}

.otp-box {
  width: min(100%, 460px);
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.otp-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
}

.otp-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.otp-text {
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.5;
}

.otp-code-area {
  margin-top: 18px;
  justify-items: center;
}

.otp-code-area.hidden {
  display: none;
}

.otp-message {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.otp-message.success {
  color: var(--gold);
}

.otp-message.error {
  color: #ff6b6b;
}
@media (max-width: 768px) {
  .otp-modal {
    padding: 16px;
    align-items: center;     /* 🔥 centraliza vertical */
    justify-content: center; /* 🔥 centraliza horizontal */
  }

  .otp-box {
    width: 100%;
    max-width: 420px; /* 🔥 limita largura */
    padding: 22px 10px 22px;
    border-radius: 22px;
  }

  .otp-code-inputs {
    gap: 8px;
  }

  .otp-digit {
    height: 46px;
    font-size: 22px;
  }

  .otp-code-title {
    font-size: 20px;
  }

  .otp-code-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .otp-validate-btn {
    height: 46px;
  }
}

/* ============================= */
/* HEADER USER LOGADO */
/* ============================= */

.header-user {
  position: relative;
}

.header-user-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
}

.header-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #999);
}

@media (max-width: 768px) {
  .header-user-avatar {
    width: 30px;
    height: 30px;
  }
}
.header-user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.header-user-arrow {
  margin-left: 6px;
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header-user-menu.is-open ~ .header-user-trigger .header-user-arrow,
.header-user-trigger.is-open .header-user-arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--gold);
}
.header-user-info strong {
  font-size: 13px;
  color: var(--gold);
}

.header-user-info span {
  font-size: 12px;
  color: var(--muted);
}

.header-user-menu {
  position: absolute;
  right: 0;
  top: 52px;
  width: 240px;
  padding: 16px;
  border-radius: 18px;
  background: #0c0c0c;
  border: 1px solid rgba(255, 191, 0, 0.08);
  box-shadow: var(--shadow);
  display: none;
  z-index: 1000;
}

.header-user-menu.is-open {
  display: block;
}

.header-user-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.header-user-divider {
  height: 1px;
  background: var(--line);
  margin: 12px 0;
}

.header-user-item {
  display: block;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--gold);
  padding: 10px 0;
  cursor: pointer;
}

.header-user-item:hover {
  color: #f8f8f8;
}

.header-user-item.logout {
  color: #ff6b6b;
}

.otp-resend-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.otp-box.is-code-step .otp-title,
.otp-box.is-code-step > .otp-text,
.otp-box.is-code-step > .otp-email-preview,
.otp-box.is-code-step > #sendOtpBtn {
  display: none;
}

.otp-illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}


.otp-code-title {
  margin: 0 0 14px;
  text-align: center;
  color: var(--text);
  font-weight: 900;
}

.otp-code-text {
  max-width: 420px;
  margin: 0 auto 26px;
  text-align: center;
  color: var(--muted);
  line-height: 1.5;
}

.otp-code-inputs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 22px;
  justify-content: center;
}

.otp-digit {
  width: 40px;
  height: 30px;
  border: 0;
  border-bottom: 2px solid rgba(255,255,255,.22);
  background: transparent;
  color: var(--gold);
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  outline: none;
}

.otp-digit:focus {
  border-bottom-color: var(--gold);
}

.otp-validate-btn {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: #111;
  font-weight: 900;
  cursor: pointer;
}

.otp-resend-btn {
  width: 100%;
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.otp-resend-btn strong {
  color: var(--gold);
}

.alert {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  min-width: 280px;
  max-width: 420px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 15, 15, 0.96);
  border: 1px solid rgba(255,255,255,.10);
  color: #f8f8f8;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.alert.show {
  opacity: 1;
  transform: translateY(0);
}

.alert.success {
  border-color: rgba(255,191,0,.35);
  color: var(--gold);
}

.alert.error {
  border-color: rgba(255,120,120,.35);
  color: #ff9c9c;
}

@media (max-width: 768px) {
  .alert {
    top: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
    min-width: 0;
  }
}