:root {
  --primary-color: #4b006e;
  /* Roxo */
  --secondary-color: #7b0fa6;
  --accent-color: #a33ccc;
  --background-color: #f2eaf6;
  --surface-color: #f6f0fa;
  --text-color: #1a1024;
  --muted-color: #6e5e7a;
  --btn-radius: 6px;
  --nav-offset: 84px;
  /* altura aproximada da nav para offset da âncora */
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Container base para seções (garante largura e padding consistentes, inclusive no mobile) */
.section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 16px;
  box-sizing: border-box;
}

/* ===== OVERLAYS (Benefícios / Simular) ===== */
.overlay-panel {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--nav-offset) + 16px) 16px 24px;
  z-index: 1200;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.overlay-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.overlay-panel .overlay-box {
  background: #fff;
  color: var(--text-color);
  width: min(1180px, 100%);
  max-height: calc(100vh - var(--nav-offset) - 40px);
  overflow: auto;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
  padding: 20px;
  position: relative;
}

.overlay-panel#sobre {
  align-items: center;
  padding: 16px;
}

.overlay-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: #fff;
  color: var(--primary-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
  font-size: 20px;
  line-height: 36px;
  cursor: pointer;
}

@media (max-width:560px) {
  .overlay-panel {
    padding: calc(var(--nav-offset) + 8px) 8px 16px
  }

  .overlay-panel .overlay-box {
    padding: 14px
  }
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  /* Grid para centralizar o menu como um “pill” */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}

nav .logo {
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  height: 50px;
  line-height: 0;
  grid-column: 1;
  justify-self: end
}

nav .logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain
}

nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  grid-column: 3;
  justify-self: end
}

/* Links centralizados com estilo “pill” (desktop) */
nav .nav-links {
  grid-column: 2;
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #fff;
  padding: .5rem .75rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12)
}

nav .nav-links a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color .2s, background-color .2s;
  text-decoration: none;
  padding: .35rem .75rem;
  border-radius: 999px
}

/* Link ativo no desktop */
nav .nav-links a.active,
nav .nav-links a[aria-current="page"] {
  color: var(--accent-color);
  background: rgba(163, 60, 204, .12);
}

nav .nav-links a:hover,
nav .nav-links a:focus {
  color: var(--accent-color);
  text-decoration: none
}

/* Botão CTA à direita (desktop) */
.btn-cta {
  grid-column: 3;
  justify-self: end;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 10px;
  padding: .85rem 1.25rem;
  box-shadow: 0 8px 18px rgba(75, 0, 110, .25)
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color))
}

@media (max-width:768px) {

  /* Volta layout para flex e menu lateral */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center
  }

  .btn-cta {
    display: none
  }

  nav .nav-toggle {
    display: block
  }

  nav .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 70%;
    background: var(--primary-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform .3s;
    border-radius: 0;
    box-shadow: none;
  }

  nav .nav-links a {
    color: #fff
  }

  /* Link ativo no menu lateral */
  nav .nav-links a.active,
  nav .nav-links a[aria-current="page"] {
    color: var(--accent-color);
    background: transparent
  }

  nav .nav-links.open {
    transform: translateX(0)
  }
}

/* ===== BALÕES (atalhos) ===== */
.balloon-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .5rem;
  align-items: flex-end;
  /* Espaçamento inicial abaixo da nav fixa */
  margin: 0;
  max-width: none;
  width: auto;
  /* Ficar colado ao topo ao rolar, abaixo da nav */
  position: fixed;
  top: calc(var(--nav-offset) + 8px);
  right: 16px;
  /* Fundo branco em volta do grupo de balões */
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  z-index: 900;
  /* abaixo da nav (1000), acima do conteúdo */
}

.balloon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
  background: #fff;
  color: var(--primary-color);
  border-radius: 999px;
  padding: .5rem .9rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
  animation: balloon-float 3.2s ease-in-out infinite;
}

.balloon i {
  color: var(--accent-color)
}

.balloon:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12)
}

.balloon-nav .balloon:nth-child(2) {
  animation-delay: .25s
}

.balloon-nav .balloon:nth-child(3) {
  animation-delay: .5s
}

@keyframes balloon-float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }

  100% {
    transform: translateY(0)
  }
}

@media (prefers-reduced-motion: reduce) {
  .balloon {
    animation: none;
    transition: none
  }
}

/* Layout responsivo */
@media (min-width: 768px) {
  .promo-card {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .promo-card.reverse {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== PROMO CARDS ===== */
.promo-cards {
  padding: 2rem 2rem 0
}

.promo-title {
  max-width: 1100px;
  margin: 0 auto 10px;
  text-align: center;
  color: var(--primary-color)
}

.promo-card {
  max-width: 1300px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  transform: translate3d(var(--promo-tx, 0), var(--promo-ty, 0), 0) scale(var(--promo-scale, 1));
  transition: transform .18s ease-out, box-shadow .18s ease-out;
  will-change: transform;
}

.promo-card .promo-text {
  background: var(--primary-color);
  color: #fff;
  padding: 2rem 1.5rem;
  display: grid;
  align-content: center;
  gap: .5rem;
}

.promo-card .promo-text h3,
.promo-card .promo-text .promo-kicker,
.promo-card .promo-text .promo-sub {
  text-align: center;
}

.promo-card .promo-text h3 {
  font-size: 1.6rem;
  letter-spacing: .4px
}

.promo-card .promo-media {
  position: relative
}

.promo-card .promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

@media (prefers-reduced-motion: reduce) {
  .promo-card {
    transition: none
  }
}

/* duas colunas em telas maiores */
@media (min-width: 768px) {
  .promo-card {
    grid-template-columns: 1fr 1fr;
  }

  .promo-card .promo-text {
    order: 1
  }

  .promo-card .promo-media {
    order: 2
  }
}

/* Slider interno */
.media-slider {
  position: relative;
  width: 100%;
  height: 100%
}

.media-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden
}

.media-slide {
  width: 100%;
  height: 100%;
  display: none
}

.media-slide.active {
  display: block
}

.media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #fff;
  color: var(--primary-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: .95
}

.media-prev {
  left: 10px
}

.media-next {
  right: 10px
}

.media-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  gap: 6px;
  justify-content: center
}

.media-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: #d9c8e6;
  cursor: pointer
}

.media-dots button.active {
  background: var(--accent-color)
}

.btn-light {
  background: #fff;
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 999px;
  padding: .6rem 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12)
}

.btn-light:hover {
  background: #f5ebfb
}

@media (max-width:900px) {
  .promo-card {
    grid-template-columns: 1fr
  }

  .promo-card.reverse .promo-text {
    order: 1
  }

  .promo-card.reverse .promo-media {
    order: 2
  }
}

/* Offset da navegação fixa (você já usa var(--nav-offset)) */
.promo-card[id] {
  scroll-margin-top: var(--nav-offset)
}

/* Centralização ao focar via :target em navegadores que suportam */
:target.promo-card {
  scroll-margin-top: calc(50vh - 300px);
}

/* ajuste fino conforme altura média do card */

/* ===== SEÇÕES ===== */
section {
  padding: 4rem 2rem;
  margin-top: 4rem;
  scroll-margin-top: var(--nav-offset)
}

/* Remover espaço extra no início (hero) sem colar na nav */
#hero {
  margin-top: 0
}

section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 1rem
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .90) 0%, rgba(255, 255, 255, .90) 100%),
    url('assets/pattern.png');
  background-size: cover;
  background-position: center;
  padding-top: 0;
  gap: 2rem;
}

.hero>* {
  position: relative;
  z-index: 1
}

.hero-content {
  flex: 1
}

.hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color)
}

.hero-content p {
  color: var(--muted-color);
  margin-bottom: 1.5rem
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center
}

.hero-image img {
  max-width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.hero-slider,
.hero-dots {
  display: none !important
}

.hero-slider {
  display: flex;
  flex-direction: column;
  align-items: center
}

.hero-dots {
  display: flex;
  gap: 6px;
  margin-top: 8px
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d9c8e6;
  cursor: pointer
}

.hero-dots button.active {
  background: var(--accent-color)
}

@media (max-width:768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center
  }

  .hero-image img {
    max-height: 280px
  }
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  border: none;
  border-radius: var(--btn-radius);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-color);
  color: #fff
}

.btn-primary:hover {
  background: var(--secondary-color)
}

/* ===== SOBRE NÓS ===== */
.about {
  max-width: 1100px;
  /* ou outro valor adequado ao seu layout */
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  /* opcional: garante espaçamento lateral em telas pequenas */
  box-sizing: border-box;
}
.about-text,
.features {
  width: 100%;
  box-sizing: border-box;
}


.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--muted-color);
  line-height: 1.6
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  text-align: center
}

.feature i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: .5rem
}

/* ===== BENEFÍCIOS ===== */
.benefits {
  background: #fff
}

.benefits .subtitle {
  text-align: center;
  color: var(--muted-color);
  max-width: 820px;
  margin: 0 auto 1.25rem;
}

.benefit-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-item {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
  display: grid;
  gap: 8px;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  box-shadow: 0 8px 18px rgba(75, 0, 110, .18);
}

.benefit-item h3 {
  font-size: 1.05rem;
  color: var(--primary-color)
}

.benefit-item p {
  color: var(--muted-color);
  font-size: .95rem
}

.benefit-underline {
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent-color);
  display: inline-block;
  margin-top: 6px
}

.benefit-split {
  max-width: 1180px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
}

.benefit-split h3 {
  color: var(--primary-color);
  margin: 6px 0
}

.benefit-split p {
  color: var(--muted-color)
}

.split-line {
  width: 72px;
  height: 6px;
  border-radius: 3px;
  background: var(--accent-color);
  display: inline-block;
  margin-bottom: 6px
}

.split-illustration img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

@media (max-width:1024px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .benefit-split {
    grid-template-columns: 1fr
  }
}

@media (max-width:560px) {
  .benefit-grid {
    grid-template-columns: 1fr
  }
}

/* ===== SIMULADOR ===== */
.section.simulador {
  background: #fff
}

.simulador-subtitle {
  text-align: center;
  color: var(--muted-color);
  margin-bottom: 1rem
}

.sim-form {
  max-width: 980px;
  margin: 0 auto
}

/* Ajustes finais para a seção Sobre no mobile */
.about {
  position: relative;
  z-index: 1; /* evita sobreposição de elementos fixos/flutuantes */
}

/* Esconde atalhos flutuantes em telas muito estreitas para não cobrirem o conteúdo */
@media (max-width: 560px) {
  .balloon-nav { display: none; }
}

.sim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}

.sim-field {
  display: grid;
  gap: .4rem
}

.sim-field label {
  font-weight: 600;
  color: var(--primary-color)
}

.sim-field input,
.sim-field select {
  padding: .75rem;
  border: 1px solid #e1d8ed;
  border-radius: 10px;
  font: inherit;
}

.sim-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem
}

@media (max-width:1024px) {
  .sim-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .sim-grid {
    grid-template-columns: 1fr
  }
}

/* Select estilizado (Tipo) */
.select-field {
  position: relative
}

.select-field i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
}

.select-field select {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: 2.25rem;
  /* espaço para o ícone */
  padding-right: 2rem;
  /* espaço para a seta */
  height: 44px;
  background: #fff;
  border: 1px solid #e1d8ed;
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600;
  color: var(--text-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e5e7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.select-field select option {
  font-family: 'Poppins', sans-serif
}


/* ===== CONTATO ===== */
.contact {
  background: var(--background-color);
  padding: 4rem 2rem;
  text-align: center
}

.contact h2 {
  color: var(--primary-color);
  margin-bottom: 2rem
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info,
.contact-form {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
  text-align: left;
}

.contact-info p {
  margin: .75rem 0;
  font-size: 1rem
}

.contact-info i {
  margin-right: 8px;
  color: var(--accent-color)
}

/* Formulário roxo */
.contact-form {
  background: var(--primary-color);
  color: #fff
}

.contact-form label {
  color: #fff;
  font-weight: 600
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font: inherit;
  background: #fff;
  color: var(--text-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888
}

.contact-form button {
  margin-top: .75rem;
  align-self: flex-start;
  background: var(--accent-color);
  color: #fff
}

.contact-form button:hover {
  background: var(--secondary-color)
}

@media (max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr
  }

  .contact-info,
  .contact-form {
    text-align: center
  }
}

/* ===== RODAPÉ ===== */
footer {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem
}

/* ===== TESTIMONIALS (Clientes) ===== */
.testimonials {
  margin-top: 1rem
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.testimonial-items {
  position: relative;
  min-height: 120px
}

.testimonial-items blockquote {
  display: none;
  margin: 0;
  color: var(--text-color)
}

.testimonial-items blockquote.active {
  display: block;
  animation: fade .35s ease
}

.testimonial-items footer {
  margin-top: .5rem;
  color: var(--muted-color)
}

.testimonial-dots {
  display: flex;
  gap: 6px;
  margin-top: .5rem;
  justify-content: center
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d9c8e6;
  cursor: pointer
}

.testimonial-dots button.active {
  background: var(--accent-color)
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(4px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ===== WHATSAPP FAB ===== */
.wpp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
  text-decoration: none;
}

.wpp-fab i {
  font-size: 26px;
  line-height: 1
}

.wpp-fab:hover {
  background: #1ebe57
}

.wpp-fab .wpp-hint {
  position: absolute;
  right: 64px;
  bottom: 50%;
  transform: translateY(50%);
  background: #25d366;
  color: #fff;
  padding: .4rem .6rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  font-weight: 600;
  font-size: .9rem
}

.wpp-fab:hover .wpp-hint {
  opacity: 1
}

@media (max-width:560px) {
  .wpp-fab .wpp-hint {
    display: none
  }
}

/* === OVERRIDES DO HERO (deixa igual ao layout roxo que criamos) === */

/* Fundo roxo e grid split */
#hero.hero--split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 100vh;
  gap: clamp(16px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  padding: 0 clamp(16px, 5vw, 56px);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: #fff;
}

/* esconde a marca d’água antiga do .hero::before */
#hero.hero--split::before {
  display: none !important;
}

/* Tipografia e centralização */
#hero .hero-left {
  max-width: 820px;
  margin: 0 auto;
}

#hero .hero-left h1 {
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.15;
  margin: 0 0 .6rem;
}

#hero .hero-left .hero-sub {
  color: #f7eefe;
  opacity: .95;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin: 0 0 1.25rem;
}

/* CTAs e bullets centralizados */
#hero .hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  justify-content: center;
}

#hero .hero-metrics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 0;
  margin-top: 6px;
  justify-content: center;
  color: #f1e6fa;
  font-weight: 600;
  font-size: .98rem;
}

#hero .hero-ctas .btn-light {
  background: #fff;
  color: var(--primary-color);
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
}

#hero .hero-ctas .btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
}

#hero .hero-ctas .btn-light i,
#hero .hero-ctas .btn-ghost i {
  margin-right: 6px;
}

/* Imagem com moldura/sombra */
#hero .hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

#hero .hero-right img {
  width: min(640px, 100%);
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

/* Responsivo */
@media (max-width:980px) {
  #hero.hero--split {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 20px;
  }

  #hero .hero-right {
    order: -1;
  }
}

/* ===== Barra branca abaixo da hero (chips + CTAs + selos) ===== */
.quick-highlight {
  background: var(--background-color);
  padding: 18px 16px 8px;
}

.qh-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* chips */
.qh-bullets {
  list-style: none;
  display: flex;
  gap: 12px 18px;
  flex-wrap: wrap;
  margin: 0 0 10px;
  padding: 0;
}

.qh-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-color);
  background: #fff;
  border: 1px solid #eedff7;
  border-radius: 999px;
  padding: .45rem .8rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
}

.qh-bullets i {
  color: var(--accent-color);
}

/* CTAs */
.qh-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 4px 0 8px;
}

.qh-ctas .btn-primary {
  background: var(--accent-color);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
}

.qh-ctas .btn-primary:hover {
  background: var(--secondary-color);
}

.qh-ctas .btn-ghost {
  background: #fff;
  color: var(--primary-color);
  border: 1px solid #eadbf4;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
}

.qh-ctas .btn-ghost:hover {
  background: #f7eefc;
}

.qh-ctas i {
  margin-right: 6px;
}

/* selos */
.qh-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted-color);
  font-weight: 600;
  font-size: .95rem;
}

.qh-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* responsivo */
@media (max-width: 560px) {
  .qh-ctas {
    justify-content: flex-start;
  }
}

/* Ajuste final para centralizar Conferir produto */
.btn-light {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  :root {
    --nav-offset: 60px; /* altura real da nav no mobile */
  }
}
/* Garante respiro do conteúdo abaixo da nav no mobile */
@media (max-width: 768px) {
  #hero.hero--split {
    padding-top: calc(var(--nav-offset) + 8px);
  }
}

/* Empurra os balões um pouco mais pra baixo no mobile
   (não ficam colados ao menu hambúrguer) */
@media (max-width: 768px) {
  .balloon-nav {
    top: calc(var(--nav-offset) + 56px);
  }
}
/* Compensa a altura da navbar para qualquer âncora (#id) */
html { 
  scroll-padding-top: var(--nav-offset);
}
/* Empurra os balões um pouco mais para baixo no mobile */
@media (max-width: 768px) {
  .balloon-nav {
    top: calc(var(--nav-offset) + 64px);
  }
}
