.pacote-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #0E332C 0%, var(--verde-escuro) 55%, #2D7A6B 100%);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.pacote-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.pacote-hero__content {
  max-width: 560px;
}

.pacote-hero__media {
  position: relative;
}

.pacote-hero__media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.pacote-hero__titulo,
.pacote-hero__subtitulo {
  color: var(--branco);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.pacote-hero__tagline {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
}

.pacote-hero__lista {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  column-gap: clamp(1.5rem, 3vw, 3rem);
  row-gap: 0.85rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.pacote-hero__lista li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--branco);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.pacote-hero__lista li img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.pacote-hero__cta {
  margin-top: 2.25rem;
}

@media (max-width: 860px) {
  .pacote-hero__inner {
    grid-template-columns: 1fr;
  }

  .pacote-hero__media {
    order: -1;
  }

  .pacote-hero__media img {
    max-height: 320px;
  }

  .pacote-hero__lista {
    grid-template-columns: 1fr;
  }

  .pacote-hero__lista li {
    white-space: normal;
  }

  /* título do hero sobe e sobrepõe parte da foto */
  .pacote-hero__subtitulo {
    position: relative;
    margin-top: -20%;
    z-index: 1;
  }
}

.objecao {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cinza-borda);
}

.objecao h3 {
  color: var(--verde-escuro);
  font-family: var(--font-corpo);
  font-size: 1.05rem;
}

.objecao p {
  margin-top: 0.5rem;
}

/* POPUP DE VALOR */
.valor-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 51, 44, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 1000;
}

.valor-popup-overlay.is-open {
  display: flex;
}

.valor-popup {
  position: relative;
  background: var(--branco);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  max-width: 380px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.valor-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--cinza-texto);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.valor-popup__eyebrow {
  display: block;
  color: var(--cinza-texto);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.valor-popup__preco {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.valor-popup__parcelas,
.valor-popup__valor {
  color: var(--verde-escuro);
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  line-height: 1;
}

.valor-popup__de {
  color: var(--cinza-texto);
  font-size: 1rem;
  font-weight: 400;
}

.valor-popup__moeda {
  font-size: 0.45em;
  font-weight: 600;
  vertical-align: 0.35em;
  margin-right: 0.1em;
}

.valor-popup__olho {
  font-size: 0.35em;
  font-weight: 400;
  color: var(--cinza-texto);
  vertical-align: 0.1em;
  margin-left: 0.1em;
}

.valor-popup__desconto {
  font-size: 0.8rem;
  color: var(--cinza-texto);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

.valor-popup__quiz {
  margin-top: 0.75rem;
  background: transparent;
  color: var(--verde-escuro);
  box-shadow: inset 0 0 0 1.5px var(--cinza-borda);
}

.valor-popup__quiz:hover {
  box-shadow: inset 0 0 0 1.5px var(--verde-escuro);
  background: var(--verde-claro);
}
