/* ==========================================================================
   PodBloom  |  PurePod
   Camada de marca + acabamento, por cima do CSS original do Webflow.
   Todas as classes proprias comecam com "pb-". As poucas regras que tocam
   classes originais estao isoladas no bloco "AJUSTES NO TEMA ORIGINAL".

   Principio: a hierarquia marca/produto e MOSTRADA, nunca explicada.
   PodBloom (logo) domina; PurePod aparece como designacao do produto,
   sempre no mesmo formato, no topo, no rodape e no botao fixo.
   ========================================================================== */

:root {
  --pb-navy-deep: #1b2a56;
  --pb-navy: #2b3e79;
  --pb-ink: #1f2a44;
  --pb-muted: #6b7280;
  --pb-faint: #9aa2b1;
  --pb-line: #e8ebf0;
  --pb-surface: #fafbfc;
  --pb-orange: #ff6d00;
  --pb-green: #6cc46c;
  --pb-header-h: 68px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

/* ==========================================================================
   1. BARRA DE ANUNCIO
   ========================================================================== */
.pb-announce {
  background-color: var(--pb-navy-deep);
  background-image: linear-gradient(90deg, #16224a 0%, #22346a 50%, #16224a 100%);
  color: #fff;
}

.pb-announce-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.pb-announce-icon {
  width: 15px;
  height: 15px;
  flex: none;
  opacity: .8;
}

.pb-announce-text {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: Poppins, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: .2px;
  color: #dfe4f2;
  text-align: center;
}

.pb-announce-text b { color: #fff; font-weight: 600; }

.pb-announce-flag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #ffcf7a;
}

.pb-announce-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .35);
  flex: none;
}

/* ==========================================================================
   2. HEADER FIXO
   ========================================================================== */
.pb-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--pb-line);
  transition: box-shadow .22s ease, border-color .22s ease;
}

.pb-header.is-stuck {
  box-shadow: 0 6px 24px rgba(27, 42, 86, .08);
  border-bottom-color: #dfe4ec;
}

.pb-header-inner {
  max-width: 1170px;
  margin: 0 auto;
  min-height: var(--pb-header-h);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* --- Lockup: marca (PodBloom) + produto (PurePod) ----------------------- */
.pb-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  flex: none;
}

.pb-brand-logo {
  width: 150px;
  height: auto;
  display: block;
}

.pb-brand-sep {
  width: 1px;
  height: 34px;
  background-color: var(--pb-line);
  display: block;
  flex: none;
}

.pb-brand-product {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.pb-brand-product-name {
  font-family: Poppins, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -.1px;
  color: var(--pb-ink);
}

.pb-brand-product-sub {
  font-family: Poppins, sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--pb-faint);
}

/* --- Navegacao ---------------------------------------------------------- */
.pb-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.pb-nav-link {
  position: relative;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: #4a5568;
  text-decoration: none;
  padding: 4px 0;
  transition: color .18s ease;
}

.pb-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--pb-orange);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.pb-nav-link:hover { color: var(--pb-ink); }
.pb-nav-link:hover::after { transform: scaleX(1); }

/* --- Botao do header ---------------------------------------------------- */
.pb-header-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  background-color: var(--pb-orange);
  color: #fff;
  border-radius: 40px;
  padding: 11px 26px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: .1px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 109, 0, .28);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.pb-header-cta:hover {
  background-color: #f26400;
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(255, 109, 0, .36);
  color: #fff;
}

.pb-header-cta:active { transform: translateY(0); }

/* ==========================================================================
   3. FAIXA DE GARANTIAS
   ========================================================================== */
.pb-trustbar {
  background-color: #f2f7f4;
  border-top: 1px solid #e2ece7;
  border-bottom: 1px solid #e2ece7;
}

.pb-trustbar-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
}

.pb-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pb-trust-icon {
  width: 26px;
  height: 26px;
  flex: none;
  color: #2f7f4f;
  margin-top: 1px;
}

.pb-trust-copy { display: flex; flex-direction: column; gap: 2px; }

.pb-trust-title {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  color: #1d3b2a;
}

.pb-trust-sub {
  font-family: Poppins, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 17px;
  color: #5d7268;
}

/* ==========================================================================
   4. LINHA DE SEGURANCA ABAIXO DOS BOTOES
   ========================================================================== */
.pb-cta-note {
  margin-top: 11px;
  display: block;
  max-width: 560px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: var(--pb-muted);
  text-align: center;
}

.pb-cta-note strong { color: var(--pb-ink); font-weight: 600; }

.pb-cta-lock {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 6px;
  opacity: .5;
}

.cta-group.white .pb-cta-note { color: #d7dbe3; }
.cta-group.white .pb-cta-note strong { color: #fff; }
.cta-group.white .pb-cta-lock { filter: invert(1); opacity: .7; }

/* ==========================================================================
   5. ITEM DE FAQ NATIVO (details/summary)
   ========================================================================== */
.pb-faq-item {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.pb-faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 20px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #000;
}

.pb-faq-item > summary::-webkit-details-marker { display: none; }
.pb-faq-item > summary::marker { content: ""; }

.pb-faq-chevron {
  width: 15px;
  height: 15px;
  flex: none;
  transition: transform .2s ease;
}

.pb-faq-item[open] .pb-faq-chevron { transform: rotate(180deg); }

.pb-faq-content { padding: 0 20px 20px; }

.pb-faq-content p {
  margin: 0 0 12px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #000;
}

.pb-faq-content p:last-child { margin-bottom: 0; }

/* ==========================================================================
   6. RODAPE
   ========================================================================== */
.pb-footer {
  background-color: var(--pb-surface);
  border-top: 1px solid var(--pb-line);
}

.pb-footer-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 20px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pb-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.pb-footer-logo {
  width: 168px;
  height: auto;
  display: block;
}

.pb-footer-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--pb-line);
  width: 168px;
}

.pb-footer-product-name {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 17px;
  color: var(--pb-ink);
}

.pb-footer-product-sub {
  font-family: Poppins, sans-serif;
  font-size: 8.5px;
  font-weight: 600;
  line-height: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--pb-faint);
}

.pb-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 26px;
  margin-top: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--pb-line);
  width: 100%;
}

.pb-footer-links a {
  font-family: Poppins, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 18px;
  color: #55607a;
  text-decoration: none;
  transition: color .18s ease;
}

.pb-footer-links a:hover { color: var(--pb-navy); text-decoration: underline; }

.pb-footer-legal {
  margin-top: 22px;
  max-width: 700px;
}

.pb-footer-legal p {
  margin: 0 0 9px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 17px;
  color: #a2a9b6;
  text-align: center;
}

.pb-footer-legal p:first-child {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #b3b9c4;
}

.pb-footer-legal b { color: #8d95a3; font-weight: 600; }

.pb-footer-copy {
  margin: 14px 0 0;
  font-family: Poppins, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 16px;
  color: #7c8494;
  text-align: center;
}

/* ==========================================================================
   7. BOTAO FIXO NO MOBILE
   ========================================================================== */
.pb-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  background-color: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-top: 1px solid var(--pb-line);
  box-shadow: 0 -6px 22px rgba(27, 42, 86, .1);
  transform: translateY(100%);
  transition: transform .26s ease;
  padding-bottom: env(safe-area-inset-bottom);
}

.pb-sticky-cta.is-visible { transform: translateY(0); }

.pb-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
}

.pb-sticky-copy { display: flex; flex-direction: column; gap: 1px; min-width: 0; }

.pb-sticky-name {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--pb-ink);
}

.pb-sticky-sub {
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  color: var(--pb-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pb-sticky-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  background-color: var(--pb-orange);
  color: #fff;
  border-radius: 40px;
  padding: 12px 22px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 109, 0, .3);
}

.pb-sticky-btn:active { transform: translateY(1px); }

/* ==========================================================================
   8. AJUSTES NO TEMA ORIGINAL  (unicas regras que tocam classes do Webflow)
   ========================================================================== */

/* Botoes laranja: sombra e reacao ao passar o mouse */
.cta-button,
.button {
  box-shadow: 0 6px 18px rgba(255, 109, 0, .26);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.cta-button:hover,
.button:hover {
  background-color: #f26400;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 109, 0, .34);
}

.cta-button:active,
.button:active { transform: translateY(0); }

/* Cartoes de depoimento e imagens: cantos e sombra mais suaves */
.faq-item-1, .faq-item-2, .faq-item-3,
.faq-item-4, .faq-item-5, .faq-item-6,
.pb-faq-item {
  box-shadow: 0 1px 2px rgba(27, 42, 86, .05);
}

/* Acessibilidade: foco visivel em tudo que e clicavel */
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--pb-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Corrige a barra de rolagem horizontal de 10px que existia na pagina
   original entre 768px e 991px (o heroi tinha uma coluna fixa de 500px
   dentro de um espaco de 490px). "clip" nao cria contexto de rolagem,
   entao o header fixo continua funcionando. */
html { overflow-x: clip; }

@media screen and (max-width: 991px) {
  .hero-section---desktop .quick-stack > .w-layout-cell,
  .hero-section---desktop .product-bg,
  .hero-section---desktop .slider {
    max-width: 100%;
    min-width: 0;
  }
}

/* ==========================================================================
   9. RESPONSIVO
   ========================================================================== */
@media screen and (max-width: 991px) {
  :root { --pb-header-h: 60px; }

  .pb-nav { display: none; }

  .pb-header-inner { padding: 8px 16px; gap: 12px; }

  .pb-brand-logo { width: 128px; }
  .pb-brand-sep { height: 30px; }
  .pb-brand-lockup { gap: 11px; }
  .pb-brand-product-name { font-size: 15px; line-height: 16px; }
  .pb-brand-product-sub { font-size: 8px; letter-spacing: 1.1px; }

  .pb-header-cta { padding: 9px 20px; font-size: 14px; }

  .pb-trustbar-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 18px;
  }

  .pb-trust-icon { width: 22px; height: 22px; }
  .pb-trust-title { font-size: 13.5px; line-height: 18px; }
  .pb-trust-sub { font-size: 12px; line-height: 16px; }

  /* botao fixo entra em cena */
  .pb-sticky-cta { display: block; }
  body { padding-bottom: 92px; }
}

@media screen and (max-width: 767px) {
  html { scroll-padding-top: 72px; }

  .pb-announce-inner { padding: 8px 14px; gap: 7px; }
  .pb-announce-icon { width: 13px; height: 13px; }
  .pb-announce-text {
    font-size: 11.5px;
    line-height: 16px;
    gap: 1px;
    flex-direction: column;
  }
  .pb-announce-flag { font-size: 9.5px; letter-spacing: .9px; }
  .pb-announce-sep { display: none; }

  .pb-faq-item > summary { font-size: 18px; line-height: 24px; padding: 12px 16px; }
  .pb-faq-content { padding: 0 16px 16px; }
  .pb-faq-content p { font-size: 16px; line-height: 24px; }

  .pb-cta-note { font-size: 12px; line-height: 17px; padding: 0 14px; }

  .pb-footer-inner { padding: 32px 18px 28px; }
  .pb-footer-logo { width: 150px; }
  .pb-footer-product { width: 150px; }
  .pb-footer-links { gap: 8px 18px; margin-top: 22px; padding-bottom: 18px; }
  .pb-footer-links a { font-size: 13px; }
  .pb-footer-legal p { font-size: 10.5px; line-height: 16px; }
  .pb-footer-legal p:first-child { font-size: 9.5px; }
  .pb-footer-copy { font-size: 11px; }
}

@media screen and (max-width: 479px) {
  .pb-brand-lockup { gap: 8px; }
  .pb-brand-logo { width: 104px; }
  .pb-brand-sep { height: 26px; }
  .pb-brand-product-name { font-size: 13px; line-height: 14px; }
  .pb-brand-product-sub { font-size: 7px; letter-spacing: .9px; }

  .pb-header-cta { padding: 9px 16px; font-size: 13px; }

  .pb-sticky-inner { padding: 9px 12px; gap: 10px; }
  .pb-sticky-name { font-size: 13px; }
  .pb-sticky-sub { font-size: 10.5px; }
  .pb-sticky-btn { padding: 11px 18px; font-size: 14px; }
}

/* ==========================================================================
   10. PASSAGEM DE UX / TIPOGRAFIA
   Corrige hierarquia, ritmo vertical e legibilidade do tema original.
   Nada de conteudo muda - so tamanho, peso, cor, espaco e alinhamento.
   ========================================================================== */

/* --- 10.1 ROTULOS DE SECAO ------------------------------------------------
   Estavam em 38px, do mesmo tamanho do titulo logo abaixo. Viram sobretitulo. */
.heading---light,
.heading---light.sth {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #8a93a8;
  text-align: center;
  margin-bottom: 14px;
}

/* --- 10.2 TITULOS ---------------------------------------------------------- */
.heading-3,
.heading-9 {
  line-height: 46px;
  letter-spacing: -.6px;
  margin-top: 0;
  margin-bottom: 14px;
}

.heading-3.dark-text { line-height: 46px; }          /* estava 40px/58px */

/* Numero do recurso (01 / 02 / 03): era um titulo de 38px competindo com o
   titulo real. Vira marcador de etapa. */
.div-block-5 .heading-3,
.div-block-5 .heading-3 .bold-text-4 {
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: var(--pb-orange);
  text-align: left;
  margin-bottom: 0;
}

.heading-4 {
  font-size: 26px;
  line-height: 34px;
  letter-spacing: -.3px;
  color: var(--pb-ink);
  margin-top: 10px;
  margin-bottom: 12px;
}

/* --- 10.3 TEXTO CORRIDO ---------------------------------------------------- */
.paragraph-3,
.paragraph-4,
.paragraph-4.compp {
  font-size: 17px;
  line-height: 29px;
  color: #4a5262;
}

/* --- 10.4 ENTRELINHA APERTADA (fonte maior que a linha) --------------------- */
.text-block-26 { line-height: 26px; }                /* era 18px/18px */
.text-block-6  { line-height: 24px; }                /* era 18px/18px */
.text-block-24 { line-height: 27px; }                /* era 20px/20px */

/* Linha de escassez: era 16px/14px em negrito preto, pesava demais */
.text-block-7,
.text-block-10 {
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  color: #6b7280;
}

.text-block-10.whi { color: #c9cfdb; }

/* --- 10.5 CARDS DE DEPOIMENTO ---------------------------------------------
   Antes: texto solto, centralizado, sem fundo, encostando na secao seguinte. */
._3-col-grid {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  align-items: stretch;
  margin-top: 38px;
}

.grid {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #e9edf3;
  border-radius: 16px;
  padding: 0 0 22px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(27, 42, 86, .04), 0 10px 26px rgba(27, 42, 86, .05);
  transition: transform .22s ease, box-shadow .22s ease;
}

.grid:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(27, 42, 86, .05), 0 16px 36px rgba(27, 42, 86, .09);
}

.image-23 {                                          /* foto do cliente */
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eef1f6;
}

.image-24 {                                          /* 5 estrelas */
  width: 100px;
  max-width: 100px;
  margin: 20px 22px 0;
}

.paragraph-6 {
  text-align: left;                                  /* era centralizado */
  font-size: 15.5px;
  line-height: 25px;
  color: #4a5262;
  margin: 12px 22px 0;
}

.paragraph-6 strong {                                /* titulo do depoimento */
  display: block;
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  color: var(--pb-navy);
  margin-bottom: 9px;
}

.paragraph-6 strong br { display: none; }            /* quebra extra do Webflow */

.text-block-16 {                                     /* assinatura */
  margin: auto 22px 0;
  padding-top: 15px;
  border-top: 1px solid #eef1f6;
  font-size: 13.5px;
  line-height: 20px;
  font-weight: 600;
  color: #55607a;
}

.text-block-16 > .text-span-3 {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: #2f9e5f;
  vertical-align: 1px;
}

/* --- 10.6 RITMO E LINHAS DE DIVISAO ---------------------------------------
   As secoes brancas encostavam umas nas outras sem respiro nem separacao. */
#overview,
#features,
._3-steps,
#reviews,
.guarantee {
  border-top: 1px solid #edf0f5;
}

#features > .w-container { padding-top: 62px; padding-bottom: 62px; }
#reviews  > .w-container { padding-top: 62px; padding-bottom: 54px; }
._3-steps > .w-container { padding-top: 58px; padding-bottom: 58px; }
#overview > .w-container { padding-top: 58px; padding-bottom: 58px; }

.drone-feature { margin-top: 52px; }                 /* era 30px */
.div-block-5   { padding: 0 34px 20px; }

/* --- 10.7 BOTOES -----------------------------------------------------------
   30px era grande demais e apertado nas laterais. */
.cta-button {
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -.2px;
  padding: 16px 46px;
}

.cta-group { margin-top: 34px; margin-bottom: 26px; }

/* --- 10.8 RESPONSIVO DA PASSAGEM DE UX ------------------------------------- */
@media screen and (max-width: 991px) {
  .heading---light,
  .heading---light.sth { font-size: 11.5px; letter-spacing: 1.5px; margin-bottom: 10px; }

  .heading-3, .heading-9, .heading-3.dark-text { line-height: 38px; }
  .heading-4 { font-size: 22px; line-height: 29px; }

  .paragraph-3, .paragraph-4, .paragraph-4.compp { font-size: 16px; line-height: 26px; }

  #features > .w-container,
  #reviews  > .w-container,
  ._3-steps > .w-container,
  #overview > .w-container { padding-top: 44px; padding-bottom: 44px; }

  .drone-feature { margin-top: 36px; }
  .div-block-5 { padding: 0 22px 18px; }

  ._3-col-grid { grid-column-gap: 20px; grid-row-gap: 20px; margin-top: 28px; }

  .cta-button { font-size: 20px; line-height: 26px; padding: 14px 32px; }
  .cta-group { margin-top: 26px; margin-bottom: 20px; }
}

@media screen and (max-width: 767px) {
  .heading-3, .heading-9, .heading-3.dark-text { line-height: 34px; }
  .paragraph-6 { font-size: 15px; line-height: 24px; margin: 12px 18px 0; }
  .paragraph-6 strong { font-size: 16.5px; line-height: 23px; }
  .image-24 { margin: 18px 18px 0; }
  .text-block-16 { margin: auto 18px 0; }
  .cta-button { font-size: 18px; line-height: 24px; padding: 14px 26px; }
}

/* --- 10.9 CORRECOES DA PASSAGEM DE UX -------------------------------------- */

/* No mobile o bloco de texto do recurso encostava na imagem e o numero
   (01/02/03) ficava escondido atras dela. */
@media screen and (max-width: 991px) {
  .div-block-5 { padding: 22px 22px 22px; }
}

/* Cantos arredondados consistentes nas imagens de conteudo, no mesmo
   idioma visual dos cards de depoimento. */
.img-wrap1,
.img-wrap2,
.img-wrap3 {
  border-radius: 14px;
  overflow: hidden;
}

.image-18.steps {
  border-radius: 14px;
  display: block;
}

.step-wrap { padding-bottom: 6px; }

.hr { margin-bottom: 4px; }

/* ==========================================================================
   11. HEROI  -  ORGANIZACAO NO PADRAO DA LP 3.3
   Antes: texto centralizado, H1 preto gigante, subtitulo laranja em negrito,
   linha de avaliacao grande quebrando em duas. Tres pesos brigando entre si.
   Agora: tudo alinhado a esquerda, um unico azul-marinho em tres tons
   (cheio / 72% / 12%), tamanhos contidos e uma linha separando o texto
   dos beneficios. Vale para desktop e mobile.
   ========================================================================== */

/* --- 11.1 Alinhamento a esquerda em todo o bloco de texto ---------------- */
.hero-section---desktop .cell-2,
.hero-section---mobile .container-3,
.hero-section---desktop .cell-2 > *,
.hero-section---mobile .container-3 > * {
  text-align: left;
}

/* --- 11.2 Linha de avaliacao (estava 16px negrito preto, em duas linhas) -- */
.text-block-4,
.text-block-8,
.text-block-11,
.text-block-4 .bold-text-11,
.text-block-8 .bold-text-10,
.text-block-11 .bold-text-9 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--pb-navy);
  text-align: left;
}

.text-block-11 br { display: none; }        /* quebra forcada do Webflow */

/* --- 11.3 Titulo (estava preto, centralizado, grande demais) ------------- */
.heading,
.heading-2,
.heading strong,
.heading-2 strong {
  font-size: 42px;
  line-height: 51px;
  font-weight: 800;
  letter-spacing: -.9px;
  color: var(--pb-navy);
  text-align: left;
}

.heading,
.heading-2 { margin: 14px 0 0; }

/* --- 11.4 Subtitulo (estava laranja, negrito, 20px - gritava) ------------ */
.text-block-25,
.text-block-25 strong {
  font-size: 16.5px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(43, 62, 121, .72);
  text-align: left;
}

.text-block-25 { margin-top: 12px; }

/* linha fina separando o texto dos beneficios */
.text-block-25::after {
  content: "";
  display: block;
  height: 1px;
  background-color: rgba(43, 62, 121, .13);
  margin-top: 22px;
}

/* --- 11.5 Beneficios ----------------------------------------------------- */
.hero---bullets {
  grid-row-gap: 13px;
  margin-top: 20px;
}

.hero---bullets .bullet---item {
  align-items: flex-start;
  grid-column-gap: 12px;
}

.hero---bullets .bullet {
  width: 21px;
  min-width: 21px;
  margin-top: 1px;
}

.text-block-26 {
  font-size: 15px;
  line-height: 23px;
  font-weight: 600;
  color: var(--pb-navy);
  text-align: left;
  margin-left: 0;
}

/* --- 11.6 Botao e linha de escassez alinhados a esquerda ----------------- */
.hero-section---desktop .cta-group,
.hero-section---mobile .cta-group {
  align-items: flex-start;
  text-align: left;
  margin-top: 26px;
}

.hero-section---desktop .pb-cta-note,
.hero-section---mobile .pb-cta-note { text-align: left; }

.hero-section---desktop .scarcity-group---dark,
.hero-section---mobile .scarcity-group---dark { justify-content: flex-start; }

/* --- 11.7 Responsivo ----------------------------------------------------- */
@media screen and (max-width: 991px) {
  .heading, .heading-2, .heading strong, .heading-2 strong {
    font-size: 32px;
    line-height: 41px;
    letter-spacing: -.7px;
  }
  .text-block-25, .text-block-25 strong { font-size: 16px; line-height: 25px; }
  .text-block-25::after { margin-top: 18px; }
  .hero---bullets { margin-top: 16px; grid-row-gap: 11px; }
}

@media screen and (max-width: 767px) {
  .heading, .heading-2, .heading strong, .heading-2 strong {
    font-size: 27px;
    line-height: 36px;
    letter-spacing: -.5px;
  }
  .text-block-4, .text-block-8, .text-block-11,
  .text-block-4 .bold-text-11, .text-block-8 .bold-text-10,
  .text-block-11 .bold-text-9 { font-size: 12.5px; line-height: 19px; }

  .text-block-25, .text-block-25 strong { font-size: 15.5px; line-height: 24px; }
  .text-block-26 { font-size: 14.5px; line-height: 22px; }
  .hero---bullets .bullet { width: 19px; min-width: 19px; }
}

/* ==========================================================================
   12. BOTAO E BLOCO DE COMPRA  -  PADRAO DA LP 3.3
   Era uma pilula laranja de 25px com o texto em caixa mista e uma nota
   solta embaixo. Agora: retangulo de canto 10px, texto em CAIXA ALTA
   extrabold espacado, icone de carrinho, e abaixo a linha de garantia em
   maiusculas + as bandeiras de pagamento.
   ========================================================================== */

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  max-width: 440px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 10px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(255, 109, 0, .26);
}

/* icone de carrinho, embutido em CSS (sem arquivo extra) */
.cta-button::before {
  content: "";
  width: 21px;
  height: 21px;
  flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9.5' cy='20' r='1.4'/%3E%3Ccircle cx='18' cy='20' r='1.4'/%3E%3Cpath d='M2.5 3h2.6l2.4 11.2a1.6 1.6 0 0 0 1.6 1.3h8.6a1.6 1.6 0 0 0 1.6-1.3L21 7H6'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* botao do header segue a mesma linguagem */
.pb-header-cta {
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
}

/* botao fixo do mobile idem */
.pb-sticky-btn {
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
  padding: 13px 20px;
}

/* --- Linha de garantia (era 13px cinza, agora maiuscula azul-marinho) ---- */
.pb-cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 440px;
  width: 100%;
  margin-top: 15px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: var(--pb-navy);
  text-align: left;
}

.pb-cta-note strong { color: inherit; font-weight: 800; }

.pb-cta-check {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--pb-navy);
}

/* nos blocos centralizados, o conjunto continua centralizado */
.cta-group .pb-cta-note { justify-content: center; text-align: center; }
.hero-section---desktop .cta-group .pb-cta-note,
.hero-section---mobile .cta-group .pb-cta-note { justify-content: flex-start; text-align: left; }

.cta-group.white .pb-cta-note { color: #fff; }
.cta-group.white .pb-cta-check { color: #fff; }
.cta-group.white .pb-cta-check path { stroke: #1b2a56; }

/* --- Bandeiras de pagamento ---------------------------------------------- */
.pb-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 440px;
  width: 100%;
  margin-top: 13px;
}

.pb-payments img {
  width: 30px;
  height: 20px;
  object-fit: contain;
  display: block;
  border-radius: 3px;
}

.hero-section---desktop .pb-payments,
.hero-section---mobile .pb-payments { justify-content: flex-start; }

.cta-group.white .pb-payments img {
  background-color: #fff;
  padding: 1px;
  box-sizing: content-box;
}

/* --- Responsivo ----------------------------------------------------------- */
@media screen and (max-width: 991px) {
  .cta-button {
    min-height: 52px;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 0 22px;
  }
  .cta-button::before { width: 19px; height: 19px; }
  .pb-cta-note { font-size: 11.5px; letter-spacing: .8px; margin-top: 13px; }
  .pb-payments img { width: 28px; height: 19px; }
}

@media screen and (max-width: 479px) {
  .cta-button { min-height: 50px; font-size: 13.5px; letter-spacing: .9px; gap: 9px; }
  .cta-button::before { width: 17px; height: 17px; }
  /* a linha se ajusta a largura da tela para caber sempre em uma linha */
  .pb-cta-note { font-size: clamp(8.6px, 2.5vw, 11px); letter-spacing: .35px; gap: 6px; }
  .pb-cta-check { width: 14px; height: 14px; }
  .pb-payments { gap: 6px; }
  .pb-payments img { width: 26px; height: 18px; }
}

/* --- 12.1 Botao do header mais discreto no celular ----------------------- */
@media screen and (max-width: 767px) {
  .pb-header-cta { font-size: 11.5px; letter-spacing: .8px; padding: 10px 17px; }
}

@media screen and (max-width: 479px) {
  .pb-header-cta { font-size: 10.5px; letter-spacing: .6px; padding: 9px 13px; }
}
