/* ============================================================
   VOE RJ — Flight Page Design
   Mobile-first · Sticky booking card · Fully responsive
   ============================================================ */

/* ── Reset base ───────────────────────────────────────────── */
.fp-page * { box-sizing: border-box; }

/* Removed old overflow-x reset since styles.css now uses clip */

/* ── Hero image ───────────────────────────────────────────── */
.fp-hero {
  position: relative;
  width: 100%;
  height: clamp(220px, 40vw, 460px);
  overflow: hidden;
  background: #111827;
}
.fp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}


/* ── Page wrapper ─────────────────────────────────────────── */
.fp-main {
  padding-top: clamp(1rem, 3vw, 1.75rem);
  padding-bottom: 5rem;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.fp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #6B7280;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}
.fp-breadcrumb a { color: #4B5563; text-decoration: none; }
.fp-breadcrumb a:hover { color: #111827; text-decoration: underline; }
.fp-breadcrumb-sep { color: #D1D5DB; }

/* ════════════════════════════════════════════════════════════
   LAYOUT: Flexbox com sticky booking card no desktop
   ════════════════════════════════════════════════════════════ */
.fp-layout {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
}

/* ── Content column (esquerda) ── */
.fp-content {
  flex: 1;
  min-width: 0; /* evita overflow no flex */
}

/* ── Booking sidebar (direita) ── */
/*
  O wrap é apenas um SPACER no layout flex.
  O JS aplica position:fixed no .fp-booking-card automaticamente
  usando a posição real do wrap após o layout renderizar.
  Isso garante card fixo sem depender de sticky em qualquer browser.
*/
.fp-booking-wrap {
  flex: 0 0 360px;
  width: 360px;
}

/* ── Título e rating ──────────────────────────────────────── */
.fp-title {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.fp-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.fp-stars { color: #F59E0B; font-size: 0.9375rem; letter-spacing: 0.04em; }
.fp-rating-score { font-weight: 700; font-size: 0.9375rem; color: #111827; }
.fp-rating-count { font-size: 0.875rem; color: #6B7280; text-decoration: underline; cursor: pointer; }

.fp-description {
  color: #374151;
  line-height: 1.78;
  font-size: clamp(0.9375rem, 2vw, 1rem);
  margin-bottom: 0;
}

.fp-divider {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: clamp(1.25rem, 3vw, 2rem) 0;
}

.fp-section-title {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.25rem;
}

/* ── Tour info grid ───────────────────────────────────────── */
.fp-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.fp-info-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.fp-info-icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  background: #F3F4F6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 0.8125rem;
}
.fp-info-label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #111827;
  display: block;
  margin-bottom: 0.1rem;
}
.fp-info-value {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.5;
}

/* ── Itinerary ────────────────────────────────────────────── */
.fp-itinerary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 2rem;
}
.fp-stop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.4;
}
.fp-stop-icon { color: #FFC300; font-size: 0.75rem; flex-shrink: 0; }

/* ── Important list ───────────────────────────────────────── */
.fp-important-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fp-important-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.5;
}
.fp-important-list li::before {
  content: '•';
  color: #9CA3AF;
  flex-shrink: 0;
  line-height: 1.5;
}
.fp-important-note {
  font-size: 0.8125rem;
  color: #9CA3AF;
  margin-top: 0.875rem;
  line-height: 1.55;
}

/* ── Gallery ──────────────────────────────────────────────── */
.fp-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-radius: 0.875rem;
  overflow: hidden;
  margin-top: 1.5rem;
}
.fp-gallery-item { overflow: hidden; position: relative; }
.fp-gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.fp-gallery-item:hover img { transform: scale(1.04); }
.fp-gallery-item.fp-gallery-main { grid-column: span 2; }
.fp-gallery-item.fp-gallery-main img { height: 260px; }

/* ════════════════════════════════════════════════════════════
   BOOKING CARD
   ════════════════════════════════════════════════════════════ */
.fp-booking-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.06),
    0 8px 32px rgba(0,0,0,0.10);
  position: -webkit-sticky;
  position: sticky;
  top: 6.5rem;
  z-index: 10;
  align-self: flex-start;
}

/* Header */
.fp-bc-top {
  padding: 1.25rem 1.375rem;
  border-bottom: 1px solid #F3F4F6;
  background: #FAFAFA;
}
.fp-bc-from {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  margin-bottom: 0.25rem;
}
.fp-bc-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.fp-bc-price-amount {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.04em;
  line-height: 1;
}
.fp-bc-price-per { font-size: 0.875rem; color: #6B7280; }
.fp-bc-pix-note { font-size: 0.75rem; color: #9CA3AF; margin-top: 0.2rem; }

/* Body */
.fp-bc-body {
  padding: 1.25rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fp-bc-field-label {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

/* Passengers */
.fp-pax-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.fp-pax-btn {
  height: 2.75rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.5rem;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 180ms cubic-bezier(0.22,1,0.36,1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px; /* touch target */
}
.fp-pax-btn:hover:not(.active) {
  border-color: #FFC300;
  color: #111827;
  background: #FFFBEB;
}
.fp-pax-btn.active {
  background: #FFC300;
  border-color: #D4A017;
  color: #0d0b08;
  box-shadow: 0 2px 8px rgba(255,195,0,0.38);
}

/* Date */
.fp-bc-date {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.875rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #374151;
  background: #fff;
  transition: border-color 180ms;
  cursor: pointer;
  min-height: 44px;
}
.fp-bc-date:focus {
  outline: none;
  border-color: #FFC300;
  box-shadow: 0 0 0 3px rgba(255,195,0,0.18);
}

/* Cancellation */
.fp-bc-cancel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #16A34A;
}

/* Price breakdown */
.fp-bc-breakdown {
  background: #F9FAFB;
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fp-bc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #6B7280;
}
.fp-bc-row-card { font-size: 0.75rem; color: #9CA3AF; }
.fp-bc-row-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  border-top: 1px solid #E5E7EB;
}

/* CTA button */
.fp-bc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #FFC300;
  color: #0d0b08;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.9375rem;
  height: 3rem;
  border-radius: 0.625rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(255,195,0,0.32);
  border: none;
  cursor: pointer;
  width: 100%;
  min-height: 48px;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
}
.fp-bc-cta:hover {
  background: #FFD340;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,195,0,0.42);
}

.fp-bc-footnote {
  font-size: 0.6875rem;
  color: #9CA3AF;
  text-align: center;
  line-height: 1.4;
}
.fp-bc-response {
  font-size: 0.6875rem;
  color: #6B7280;
  text-align: center;
}

/* ── Outros voos: carrossel com setas de navegação ─────────── */
.fp-related {
  padding: 3rem 0 4rem;
  background: #F9FAFB;
  border-top: 1px solid #E5E7EB;
}

/* Header: título + setas lado a lado */
.fp-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fp-related-title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #111827;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Par de setas */
.fp-related-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.fp-rel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  color: #374151;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
  flex-shrink: 0;
}
.fp-rel-btn:hover:not(:disabled) {
  background: #FFC300;
  border-color: #FFC300;
  color: #0d0b08;
  box-shadow: 0 4px 12px rgba(255,195,0,0.30);
}
.fp-rel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Carrossel sem scrollbar visível */
.fp-related-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;        /* sem espaço para scrollbar */
  scrollbar-width: none;    /* Firefox: esconde scrollbar */
}
.fp-related-track::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* Card do carrossel */
.fp-related-card {
  flex: 0 0 clamp(220px, 28vw, 280px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 200ms, transform 200ms;
}
.fp-related-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.fp-related-img {
  height: 160px;
  overflow: hidden;
  position: relative;
  background: #E5E7EB;
}
.fp-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.fp-related-card:hover .fp-related-img img { transform: scale(1.06); }

.fp-related-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  background: #FFC300;
  color: #0d0b08;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

.fp-related-body {
  padding: 1rem 1.125rem 1.125rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.375rem;
}
.fp-related-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}
.fp-related-duration {
  font-size: 0.75rem;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.fp-related-price {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  margin-top: 0.25rem;
}
.fp-related-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #9CA3AF;
}
.fp-related-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: #111827;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8125rem;
  height: 2.625rem;
  border-radius: 0.5rem;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.5rem;
  transition: background 200ms;
}
.fp-related-cta:hover { background: #1F2937; }

@media (max-width: 767px) {
  .fp-related { padding: 2rem 0 3rem; }
  .fp-related-card { flex: 0 0 clamp(190px, 72vw, 260px); }
  .fp-related-img { height: 140px; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE STICKY BAR (fixo no rodapé em mobile/tablet)
   ════════════════════════════════════════════════════════════ */
.fp-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  border-top: 1px solid #E5E7EB;
  padding: 0.75rem 1.25rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}
.fp-mb-from {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9CA3AF;
  margin-bottom: 0.1rem;
}
.fp-mb-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1;
}
.fp-mb-per {
  font-size: 0.625rem;
  font-weight: 400;
  color: #6B7280;
  display: block;
  margin-top: 0.1rem;
}
.fp-mb-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: #FFC300;
  color: #0d0b08;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0 1.25rem;
  height: 2.875rem;
  border-radius: 0.625rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255,195,0,0.32);
  min-height: 48px;
  transition: background 200ms, transform 200ms;
}
.fp-mb-cta:hover { background: #FFD340; transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════
   CONVERSION SECTION (mobile: ao fim do conteúdo)
   Aparece no lugar do sidebar escondido em mobile/tablet.
   ════════════════════════════════════════════════════════════ */
.fp-conversion {
  display: none;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-top: 3px solid #FFC300;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.fp-conversion-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #9CA3AF;
  margin-bottom: 0.25rem;
}
.fp-conversion-price {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.04em;
  line-height: 1;
}
.fp-conversion-note {
  font-size: 0.8125rem;
  color: #6B7280;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}
.fp-conversion-pax-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.625rem;
}
.fp-conversion-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #FFC300;
  color: #0d0b08;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  height: 3.25rem;
  border-radius: 0.625rem;
  text-decoration: none;
  margin-top: 1rem;
  min-height: 48px;
  box-shadow: 0 4px 18px rgba(255,195,0,0.32);
  transition: background 200ms, transform 200ms, box-shadow 200ms;
}
.fp-conversion-cta:hover {
  background: #FFD340;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,195,0,0.42);
}
.fp-conversion-cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #16A34A;
  margin-top: 0.875rem;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════════════════════ */

/* Tablet largo: card menor */
@media (max-width: 1100px) {
  .fp-booking-wrap {
    flex: 0 0 320px;
    width: 320px;
  }
}

/* Card fixed: visível mesmo com pai visibility:hidden */
.fp-booking-card {
  visibility: visible;
}

/* Tablet: esconde sidebar, mostra bottom bar + conversion */
@media (max-width: 900px) {
  .fp-layout {
    flex-direction: column;
    gap: 0;
  }

  .fp-content {
    width: 100%;
  }

  .fp-booking-wrap {
    display: none !important; /* sidebar escondido em mobile/tablet */
  }

  .fp-mobile-bar {
    display: flex; /* barra fixa no rodapé */
  }

  .fp-conversion {
    display: block; /* card de reserva ao fim do conteúdo */
  }

  body.fp-page {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }
  
  body.fp-page .whatsapp-float {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  /* Hero */
  .fp-hero { height: clamp(200px, 52vw, 300px); }


  /* Main */
  .fp-main { padding-bottom: 4rem; }

  /* Itinerary: uma coluna */
  .fp-itinerary-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  /* Gallery */
  .fp-gallery { grid-template-columns: 1fr 1fr; gap: 0.375rem; }
  .fp-gallery-item img { height: 130px; }
  .fp-gallery-item.fp-gallery-main img { height: 200px; }

  /* Passenger buttons: tamanho mínimo de toque */
  .fp-pax-grid { gap: 0.375rem; }
  .fp-pax-btn { font-size: 0.9375rem; }

  /* Mobile bar: mais compacta */
  .fp-mobile-bar { padding: 0.625rem 1rem; }
  .fp-mb-price { font-size: 1.125rem; }
  .fp-mb-cta { font-size: 0.8125rem; padding: 0 1rem; }

  /* Conversion card */
  .fp-conversion { padding: 1.25rem; }
  .fp-conversion-price { font-size: 1.75rem; }
}

/* Mobile pequeno */
@media (max-width: 400px) {
  .fp-hero { height: 180px; }
  .fp-title { font-size: 1.25rem; }
  .fp-gallery-item img { height: 110px; }
  .fp-gallery-item.fp-gallery-main img { height: 175px; }
}

/* Telas muito grandes: limita a largura do booking */
@media (min-width: 1400px) {
  .fp-booking-wrap {
    flex: 0 0 380px;
    width: 380px;
  }
}

/* ════════════════════════════════════════════════════════════
   Toque final — polish de todos os elementos
   ════════════════════════════════════════════════════════════ */

/* ── Hero badge aprimorado ── */
.fp-hero-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

/* ── Quick facts chips (abaixo do título) ── */
.fp-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.fp-fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.8rem;
  background: #F3F4F6;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}

.fp-fact-chip i { color: #FFC300; font-size: 0.6875rem; }
.fp-fact-chip.fp-chip-highlight {
  background: #FFFBEB;
  color: #92400E;
  border: 1px solid #FDE68A;
}
.fp-fact-chip.fp-chip-highlight i { color: #F59E0B; }

/* ── Info grid: 2 colunas no desktop ── */
.fp-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

@media (max-width: 640px) {
  .fp-info-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── Booking card trust badge ── */
.fp-bc-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.375rem;
  background: #FFFBEB;
  border-bottom: 1px solid #FDE68A;
  font-size: 0.75rem;
  font-weight: 700;
  color: #92400E;
  letter-spacing: 0.04em;
}
.fp-bc-badge i { color: #F59E0B; font-size: 0.8125rem; }

/* ── Conversion section: melhorada ── */
.fp-conversion {
  margin: 0 1.25rem 1.5rem;
  border-radius: 1rem;
}

/* ── Description: melhor tipografia ── */
.fp-description {
  border-left: 3px solid #FFC300;
  padding-left: 1rem;
  margin-bottom: 0;
}

/* ── Section title com acento ── */
.fp-section-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.fp-section-title::before {
  content: '';
  width: 3px;
  height: 1.125rem;
  background: #FFC300;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Info item: melhor espaçamento ── */
.fp-info-item {
  padding: 0.75rem;
  background: #F9FAFB;
  border-radius: 0.625rem;
  border: 1px solid #F3F4F6;
  transition: border-color 150ms;
}
.fp-info-item:hover { border-color: #FDE68A; }

/* ── Important list: styled check ── */
.fp-important-list li::before { content: none; }
.fp-important-list li {
  padding: 0.5rem 0.625rem;
  background: #F9FAFB;
  border-radius: 0.375rem;
  border-left: 2px solid #D1D5DB;
}
.fp-important-list li::marker { display: none; }
/* usar ícone check */
.fp-imp-icon {
  color: #16A34A;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Related card: melhor CTA ── */
.fp-related-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: #111827;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.625rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 180ms;
}
.fp-related-cta:hover { background: #FFC300; color: #0d0b08; }

/* ── Mobile responsivo: quick facts ── */
@media (max-width: 480px) {
  .fp-quick-facts { gap: 0.375rem; }
  .fp-fact-chip { font-size: 0.75rem; padding: 0.25rem 0.625rem; }
  .fp-description { border-left-width: 2px; padding-left: 0.75rem; }
}

/* ════════════════════════════════════════════════════════════
   Duração + Tipo de voo (Compartilhado / Privativo)
   ════════════════════════════════════════════════════════════ */

/* Chips de duração no topo do card de reserva */
.fp-bc-dur-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.625rem;
}
.fp-bc-dur-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #F3F4F6;
  color: #374151;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.275rem 0.625rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.fp-bc-dur-chip i { color: #FFC300; font-size: 0.5rem; }

/* Seletor Compartilhado / Privativo */
.fp-mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.fp-mode-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.875rem 0.5rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.625rem;
  background: #fff;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all 180ms ease;
  line-height: 1.2;
}
.fp-mode-btn i {
  font-size: 1.125rem;
  color: #9CA3AF;
  transition: color 180ms;
}
.fp-mode-btn:hover:not(.active) {
  border-color: #374151;
  color: #374151;
}
.fp-mode-btn:hover:not(.active) i { color: #374151; }
.fp-mode-btn.active {
  background: #111827;
  border-color: #111827;
  color: #fff;
}
.fp-mode-btn.active i { color: #FFC300; }

/* Caixa informativa abaixo dos botões */
.fp-mode-info {
  margin-top: 0.625rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.fp-mode-info i { flex-shrink: 0; margin-top: 0.1rem; font-size: 0.875rem; }

.fp-mode-info-shared {
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #BFDBFE;
}
.fp-mode-info-shared i { color: #3B82F6; }

.fp-mode-info-private {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}
.fp-mode-info-private i { color: #22C55E; }

/* Label do tipo na breakdown */
.fp-bc-mode-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  margin-left: 0.375rem;
}
.fp-bc-mode-tag.shared { background: #DBEAFE; color: #1D4ED8; }
.fp-bc-mode-tag.private { background: #DCFCE7; color: #16A34A; }

/* Mobile conversion section: duração */
.fp-conv-dur-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}
.fp-conv-dur-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(0,0,0,0.06);
  color: #374151;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.275rem 0.625rem;
  border-radius: 9999px;
}
.fp-conv-dur-chip i { color: #FFC300; font-size: 0.5rem; }

@media (max-width: 400px) {
  .fp-mode-btn { padding: 0.75rem 0.25rem; font-size: 0.75rem; }
  .fp-mode-btn i { font-size: 1rem; }
}
