/* Design System Moga Viagens — Seção de Investimento & Precificação */
.investment {
  padding: 104px 0 96px;
  background: #f6efe5;
  color: #4a281b;
}

.investment .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.investment .section-heading > p {
  color: #705440;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.8;
}

/* ==========================================================================
   DUAS OPÇÕES DE PREÇO LADO A LADO (QUARTO DUPLO E INDIVIDUAL)
   ========================================================================== */


.pricing-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 980px;
  width: 100%;
  margin: 40px auto 0;
  align-items: stretch;
  box-sizing: border-box;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  border-radius: 4px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

/* Card 1: Quarto Duplo (Tom Castanho Oficial Moga) */
.card-double {
  background: #4a281b;
  color: #fffaf3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(43, 27, 20, 0.14);
}

/* Card 2: Quarto Individual (Tom Castanho Noturno / Expresso Profundo) */
.card-single {
  background: #29150c;
  color: #fffaf3;
  border: 1px solid rgba(183, 104, 62, 0.32);
  box-shadow: 0 16px 40px rgba(26, 13, 7, 0.2);
}

/* Cabeçalho do Card */
.pricing-card-header {
  padding-bottom: 18px;
}

.card-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 30px;
}

.badge-popular {
  background: rgba(183, 104, 62, 0.28);
  color: #f6efe5;
  border: 1px solid rgba(183, 104, 62, 0.55);
}

.badge-single {
  background: rgba(214, 189, 165, 0.15);
  color: #eed6c2;
  border: 1px solid rgba(214, 189, 165, 0.35);
}

.badge-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.card-tag {
  font-size: 11px;
  color: #d6bda5;
  letter-spacing: 0.02em;
}

.card-title {
  font-family: var(--display, 'Jost', sans-serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.card-subtitle {
  font-size: 12.5px;
  line-height: 1.55;
  color: #e3cebd;
  margin-bottom: 12px;
  max-width: 44ch;
}

.card-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #c9ab92;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.card-meta .meta-icon {
  width: 13px;
  height: 13px;
}

/* Bloco de Preço */
.card-price-block {
  padding-block: 16px 18px;
}

.card-price-block .price-prefix {
  font-size: 11px;
  color: #d8beaa;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.card-price-block .price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display, 'Jost', sans-serif);
  line-height: 1.05;
}

.card-price-block .currency {
  font-size: 21px;
  font-weight: 300;
  color: #d8beaa;
}

.card-price-block .amount {
  font-size: clamp(2.8rem, 3.8vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: #fffaf3;
}

.card-price-block .price-installment {
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 8px;
  color: #fffaf3;
}

.card-price-block .price-installment strong {
  font-weight: 600;
  color: #fae4cf;
}

.card-price-block .price-total-note {
  font-size: 11.5px;
  color: #caa78f;
  margin-top: 4px;
  line-height: 1.5;
}

.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 18px;
}

/* Lista de Recursos / Benefícios */
.card-features {
  flex-grow: 1;
  margin-bottom: 24px;
}

.features-label {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d6bda5;
  margin-bottom: 12px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 12.5px;
  line-height: 1.5;
  color: #ebdcd0;
}

.feature-icon.check {
  width: 15px;
  height: 15px;
  color: #d79f7d;
  flex-shrink: 0;
  margin-top: 2px;
}

.features-list strong {
  color: #fffaf3;
  font-weight: 600;
}

/* Área de CTA do Card */
.card-cta-area {
  margin-top: auto;
  padding-top: 4px;
}

.price-card-cta,
.price-cta,
.price-cta-single {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.card-double .price-cta {
  background: #f6efe5;
  color: #4a281b;
  border: 1px solid #f6efe5;
}

.card-double .price-cta:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.card-single .price-cta-single {
  background: #f6efe5;
  color: #29150c;
  border: 1px solid #f6efe5;
}

.card-single .price-cta-single:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.card-fine {
  font-size: 10.5px;
  line-height: 1.5;
  color: #caa78f;
  margin-top: 10px;
  text-align: center;
}

/* ==========================================================================
   INCLUSÕES UNIFICADAS & TRANQUILIDADE GARANTIDA (.inclusions-hub)
   ========================================================================== */
.inclusions-hub {
  margin-top: 64px;
  padding-top: 52px;
  border-top: 1px solid rgba(74, 40, 27, 0.15);
}

.inclusions-hub-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.hub-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b7683e;
  margin-bottom: 8px;
}

.inclusions-hub-header h3 {
  font-family: var(--display, 'Jost', sans-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #4a281b;
}

.inclusions-hub-header p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #705440;
  margin-top: 10px;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.inclusion-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid rgba(74, 40, 27, 0.12);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(74, 40, 27, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inclusion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 40, 27, 0.08);
}

.inc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(183, 104, 62, 0.12);
  color: #b7683e;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.inc-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.inc-text h4 {
  font-family: var(--display, 'Jost', sans-serif);
  font-size: 18px;
  font-weight: 500;
  color: #4a281b;
  margin: 0 0 6px;
}

.inc-text p {
  font-size: 13px;
  line-height: 1.6;
  color: #705440;
  margin: 0;
}

/* ==========================================================================
   FAIXA DE TRANSPARÊNCIA ORÇAMENTÁRIA (.transparency-strip)
   ========================================================================== */
.transparency-strip {
  max-width: 980px;
  margin: 36px auto 0;
  padding: 22px 26px;
  background: rgba(74, 40, 27, 0.04);
  border: 1px solid rgba(74, 40, 27, 0.14);
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.transparency-badge-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  min-width: 170px;
}

.transparency-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b7683e;
}

.transparency-badge-col strong {
  font-family: var(--display, 'Jost', sans-serif);
  font-size: 16px;
  color: #4a281b;
  font-weight: 600;
}

.transparency-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.transparency-item {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1.55;
  color: #705440;
}

.t-bullet {
  color: #b7683e;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.transparency-item strong {
  color: #4a281b;
  font-weight: 600;
}

/* ==========================================================================
   CARROSSEL DE UPGRADES E EXPERIÊNCIAS (TODOS OS 11 CARDS COM FOTO)
   ========================================================================== */
.curated-upgrades {
  margin-top: 64px;
  padding-top: 52px;
  border-top: 1px solid rgba(74, 40, 27, 0.15);
  width: 100%;
  box-sizing: border-box;
}

.curated-upgrades-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

.curated-upgrades-header .carousels-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b7683e;
  margin-bottom: 8px;
}

.curated-upgrades-header h3 {
  font-family: var(--display, 'Jost', sans-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #4a281b;
}

.curated-upgrades-header p {
  font-size: 14px;
  line-height: 1.7;
  color: #705440;
  margin-top: 8px;
  max-width: 600px;
}

.carousel-nav-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(74, 40, 27, 0.2);
  color: #4a281b;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(74, 40, 27, 0.06);
}

.carousel-arrow:hover:not(:disabled) {
  background: #4a281b;
  color: #fffaf3;
  border-color: #4a281b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 40, 27, 0.15);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel-arrow.prev svg {
  transform: rotate(90deg);
  width: 16px;
  height: 16px;
}

.carousel-arrow.next svg {
  transform: rotate(-90deg);
  width: 16px;
  height: 16px;
}

.upgrades-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  margin: -8px -4px -10px;
}

.upgrades-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.upgrades-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.upgrade-carousel-card {
  flex: 0 0 320px;
  width: 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(74, 40, 27, 0.12);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(74, 40, 27, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-sizing: border-box;
}

.upgrade-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(74, 40, 27, 0.12);
}

.upgrade-carousel-card .upgrade-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #27180f;
}

.upgrade-carousel-card .upgrade-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.upgrade-carousel-card:hover .upgrade-media img {
  transform: scale(1.05);
}

.upgrade-carousel-card .upgrade-price-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(74, 40, 27, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fffaf3;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
}

.upgrade-carousel-card .upgrade-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 18px 18px 20px;
}

.upgrade-carousel-card .upgrade-kicker {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b7683e;
  margin-bottom: 6px;
}

.upgrade-carousel-card h4 {
  font-family: var(--display, 'Jost', sans-serif);
  font-size: 17.5px;
  font-weight: 500;
  color: #4a281b;
  line-height: 1.25;
  margin: 0 0 8px;
}

.upgrade-carousel-card p {
  font-size: 12.5px;
  line-height: 1.55;
  color: #705440;
  margin: 0 0 16px;
  flex-grow: 1;
}

.upgrade-carousel-card .upgrade-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #4a281b;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease;
  cursor: pointer;
}

.upgrade-carousel-card .upgrade-link:hover {
  color: #b7683e;
}

.upgrade-carousel-card .upgrade-link .icon {
  width: 13px;
  height: 13px;
}

/* ==========================================================================
   RESPONSIVIDADE DA SEÇÃO DE INVESTIMENTO
   ========================================================================== */
@media (max-width: 800px) {
  .investment {
    padding: 72px 0 64px;
  }

  .investment .section-heading {
    display: block;
  }

  .investment .section-heading > p {
    margin-top: 18px;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
  }

  .transparency-strip {
    flex-direction: column;
    gap: 16px;
    padding: 18px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .transparency-badge-col {
    min-width: 0;
    width: 100%;
  }

  .curated-upgrades-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

@media (max-width: 600px) {
  .curated-upgrades-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .pricing-duo {
    grid-template-columns: 1fr;
    max-width: 440px;
    width: 100%;
    margin: 28px auto 0;
    gap: 20px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .upgrade-carousel-card {
    flex: 0 0 280px;
    width: 280px;
  }
}

/* Foto da Fundadora na seção Sobre */
.about-photo > img {
  filter: none;
  object-position: center 25%;
}

/* Cards da seção Outras formas de se apaixonar (Pacotes) em formato retangular vertical */
/* The aspect ratio alone sets the height. A min-height here would also impose a min-width
   (min-height x 3/4.2), and three of those overflow the page on laptop and tablet widths. */
.package-card {
  min-height: 0;
  aspect-ratio: 3 / 4.2;
  border-radius: 6px;
}

.package-card > img {
  filter: saturate(0.92) brightness(0.96);
  object-position: center 20%;
}

@media (max-width: 800px) {
  /* With aspect-ratio, min-height also forces a min-width (~343px), which pushed the
     three-column grid past the viewport on tablets and scrolled the whole page sideways. */
  .package-card {
    min-height: 480px;
    aspect-ratio: auto;
  }
}

@media (max-width: 580px) {
  .package-card {
    min-height: 460px;
    aspect-ratio: auto;
  }
}


