
:root{
  --text:#141414;
  --muted:#4f5560;
  --accent1:#19deaf;
  --accent2:#6fffdd;
  --danger:#c81e1e;
  --warn:#ffe600;
  --shadow:0 18px 46px rgba(0,0,0,.14);
  --radius:22px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}
a{color:inherit}

/* ===== BLOCO 01 — HERO (Layout Canva v2) ===== */
.wp-hero{
  position:relative;
  overflow:hidden;
  padding: 0 16px 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.96)),
    url("https://webprosper.com.br/wp-content/uploads/2026/01/header.png") center/cover no-repeat;
}
.wp-hero__wrap{
  max-width: 980px;
  margin: 0 auto;
  padding-top: 0;
}
/* ===== Faixa topo (amarelo full-width + conteúdo centralizado) ===== */
.wp-hero__bar{
  z-index:1;
  position: relative;
  width: 100%;
  margin: 0 0 18px;
  padding: 14px 16px;
  text-align: center;
  font-weight: 950;
  letter-spacing: .03em;
  color: #0b0b0b;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent; /* o amarelo vem do ::before, full-bleed */
}

/* fundo full-bleed sem depender do layout do container */
.wp-hero__bar::before{
  content:"";
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  background: var(--warn);
  z-index:0;
}

/* garante texto acima do fundo full-bleed */
.wp-hero__bar{
  display:flex;
  justify-content:center;
  align-items:center;
}
.wp-hero__bar > *{
  position:relative;
  z-index:1;
}
.wp-hero__barText{
  display:inline-block;
}

/* segurança contra 1px fantasma */
.wp-hero{ overflow-x:hidden; }

@media (min-width: 1024px){
  .wp-hero__bar{
  z-index:1;
    padding: 14px 20px;
  }
}

.wp-hero__bar span{
  color:#0b0b0b;
  font-weight: 900;
}
.wp-hero__bar .wp-hero__gift{
  display:inline-block;
  margin-left:6px;
}
.wp-hero__logo{
  display:flex;
  justify-content:center;
  margin: 18px 0 6px;
}
.wp-hero__logo img{
  width: min(230px, 64vw);
  height:auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.14));
}
.wp-hero__title{
  margin: 10px auto 14px;
  text-align:center;
  font-weight: 950;
  letter-spacing:-.02em;
  line-height: 1.04;
  font-size: clamp(30px, 4.2vw, 54px);
}
.wp-hero__title .red{ color:#c62828; }
.wp-hero__titleMark{ display:inline; padding:0; background:transparent; }
.wp-hero__imageCard{
  width:100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
}
.wp-hero__imageCard img{
  width:100%;
  height:auto;
  display:block;
}
.wp-hero__text{
  margin: 18px auto 18px;
  text-align:center;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 62ch;
}
.wp-hero__cta{
  display:flex;
  justify-content:center;
}
.wp-hero__cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 64px;
  width: min(760px, 100%);
  padding: 18px 22px;
  border-radius: 18px;
  text-decoration:none;
  font-weight: 950;
  font-size: 13px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#0b1a15;
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  box-shadow: 0 22px 54px rgba(0,0,0,.22);
  transition: transform .16s ease, filter .16s ease;
}
.wp-hero__cta a:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.wp-hero__cta a:active{ transform: translateY(0); }
.wp-hero__spacer{ height: 10px; }

/* ===== BLOCO 02 — Reforço rápido da promessa ===== */
.wp-b2{
  padding: 36px 16px 8px;
  background: #fff;
}
.wp-b2__wrap{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3.4vw, 44px);
  align-items:center;
}
.wp-b2__kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight: 900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(20,20,20,.70);
  margin-bottom: 10px;
}
.wp-b2__h2{
  margin:0 0 12px;
  font-weight: 950;
  letter-spacing:-.02em;
  line-height:1.1;
  font-size: clamp(22px, 2.6vw, 34px);
}
.wp-b2__p{
  margin:0 0 14px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 62ch;
}
.wp-b2__mini{
  margin: 0;
  color: rgba(20,20,20,.62);
  font-size: 14px;
  line-height: 1.55;
}
.wp-b2__card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#fff;
}
.wp-b2__card img{
  width:100%;
  height:auto;
  display:block;
}

/* ===== BLOCO 03 — Dor real do público ===== */
.wp-b3{
  padding: 34px 16px 8px;
  background: #fff;
}
.wp-b3__wrap{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(18px, 3.6vw, 46px);
  align-items:center;
}
.wp-b3__card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#fff;
}
.wp-b3__card img{
  width:100%;
  height:auto;
  display:block;
}
.wp-b3__kicker{
  display:inline-flex;
  align-items:center;
  font-weight: 900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(20,20,20,.70);
  margin-bottom: 10px;
}
.wp-b3__h2{
  margin:0 0 12px;
  font-weight: 950;
  letter-spacing:-.02em;
  line-height:1.1;
  font-size: clamp(22px, 2.6vw, 34px);
}
.wp-b3__p{
  margin:0 0 14px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 62ch;
}
.wp-b3__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(20,20,20,.70);
  line-height: 1.7;
}
.wp-b3__list li{ margin: 6px 0; }

/* Separador suave (sem competir) */
.wp-divider{
  height: 1px;
  max-width: 980px;
  margin: 34px auto 0;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.10), transparent);
}

/* ===== HERO — Grid (PC estilo 2 colunas) ===== */
.wp-hero__grid{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.wp-hero__left{
  text-align:center;
}
.wp-hero__right{
  display:flex;
  justify-content:center;
}

@media (max-width: 920px){
  .wp-b2__wrap,
  .wp-b3__wrap{
    grid-template-columns: 1fr;
    text-align:center;
  }
  /* BLOCO 03 — MOBILE: texto acima da imagem (sem mexer no desktop) */
  .wp-b3__content{ grid-row: 1; }
  .wp-b3__card{ grid-row: 2; }
  .wp-b2__kicker,
  .wp-b3__kicker{
    justify-content:center;
  }
  .wp-b2__p, .wp-b2__mini,
  .wp-b3__p, .wp-b3__list{
    margin-left:auto;
    margin-right:auto;
    max-width: 62ch;
  }
  .wp-b3__list{
    text-align:left;
    display:inline-block;
  }
}

@media (max-width:480px){
  .wp-hero{ padding: 0 12px 40px; }
  .wp-hero__bar{
  z-index:1; font-size: 14px; }
  .wp-hero__text{ font-size: 16px; }
  .wp-hero__cta a{ border-radius: 20px; }
}

/* ===== HERO — Ajustes de responsividade (PC) ===== */
@media (min-width: 1024px){
  body{ overflow-x:hidden; }

  .wp-hero{
    padding: 0 20px 64px;
  }
  .wp-hero__wrap{
    max-width: 1180px;
    padding-top: 0;
  }

  
  /* grid 2 colunas */
  .wp-hero__grid{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items:center;
    margin-top: 8px;
  }
  .wp-hero__left{
    text-align:left;
  }
  .wp-hero__logo{
    justify-content:flex-start;
    margin: 0 0 10px;
  }
  .wp-hero__logo img{
    width: 200px;
  }
  .wp-hero__title{
    text-align:left;
    margin: 6px 0 14px;
    max-width: 18ch;
    font-size: clamp(42px, 3.1vw, 60px);
    line-height: 1.04;
  }
  .wp-hero__text{
    text-align:left;
    margin: 0 0 18px;
    max-width: 54ch;
    font-size: 17px;
  }
  .wp-hero__cta{
    justify-content:flex-start;
  }
  .wp-hero__cta a{
    width: min(520px, 100%);
    font-size: 13px;
  }

  .wp-hero__right{
    justify-content:flex-end;
  }
  .wp-hero__imageCard{
    max-width: 560px;
    margin: 0;
  }
}

    .wp-b4__videoTitle{
      margin: 0 0 8px;
      font-weight: 900;
      font-size: 18px;
    }
    .wp-b4__videoText{
      margin: 0 0 18px;
      font-size: 15.5px;
      color: rgba(20,20,20,.72);
      line-height: 1.6;
      max-width: 70ch;
      margin-left:auto;
      margin-right:auto;
    }

  
.wp-b6__selo-anvisa{
  margin: 28px auto 0;
  display:flex;
  justify-content:center;
}
.wp-b6__selo-anvisa img{
  max-width: 520px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}

/* B6 — bloco "Especialistas" (demo) */
.wp-b6__specialists{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  text-align: center;
}

.wp-b6__videoCard{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
}
.wp-b6__thumb{ width:100%; height:auto; display:block; }

.wp-b6__play{
  position:absolute;
  inset:0;
  margin:auto;
  width:78px;
  height:78px;
  border-radius:999px;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.65);
  backdrop-filter: blur(2px);
}
.wp-b6__play:before{
  content:"";
  position:absolute;
  top:50%;
  left:52%;
  transform: translate(-50%,-50%);
  width:0; height:0;
  border-left: 18px solid rgba(255,255,255,.95);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.wp-b6__copy{ padding: 4px 2px 0; }

.wp-b6__headline{
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.wp-b6__headline span{ color: var(--velora-accent, #E11D48); }

.wp-b6__quote{
  margin: 0 0 10px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #2a2a2a;
}

.wp-b6__cta{
  margin: 10px 0 12px;
  display:flex;
  width:100%;
  justify-content:center;
}
.wp-b6__ctaBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: min(720px, 100%);
  min-height: 66px;
  padding: 18px 22px;
  border-radius: 18px;
  text-decoration:none;
  font-weight: 950;
  font-size: 13px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#0b1a15;
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  box-shadow: 0 22px 54px rgba(0,0,0,.22);
  transition: transform .16s ease, filter .16s ease;
}
.wp-b6__ctaBtn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.wp-b6__ctaBtn:active{ transform: translateY(0); }

.wp-b6__trust{
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
}

.wp-b6__footnote{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(0,0,0,.55);
  text-align: center;
}

/* mobile — respiro do selo + layout igual Canva */
@media (max-width: 919px){
  .wp-b6__specialists{ margin-top: 28px; gap: 14px; }
  .wp-b6__copy{ text-align:center; }
}

/* desktop — texto à esquerda e thumb à direita */
@media (min-width: 920px){
  .wp-b6__specialists{
    grid-template-columns: 1.05fr .95fr;
    grid-template-areas:
      "copy video"
      "cta  video"
      "trust trust";
    gap: 18px;
    margin-top: 22px;
    text-align: left;
  }
  .wp-b6__copy{ grid-area: copy; }
  .wp-b6__videoCard{ grid-area: video; }
  .wp-b6__cta{ grid-area: cta; justify-content:flex-start; }
  .wp-b6__trust{ grid-area: trust; margin-left:0; margin-right:auto; }
}

/* BLOCO EXTRA — PROVA SOCIAL (RESULTADOS REAIS) */
.wp-proof60{
  margin: 34px auto 0;
  max-width: 1100px;
  padding: 26px 16px 18px;
  background: linear-gradient(180deg,#8b0a12 0%, #6f0710 42%, #5a060e 100%);
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  color:#fff;
  overflow:hidden;
}
.wp-proof60__h3{
  margin: 0 0 8px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(24px, 4.6vw, 40px);
  text-align:center;
}
.wp-proof60__h3 span{
  color:#ffd34d;
}
.wp-proof60__sub{
  margin: 0 0 18px;
  text-align:center;
  opacity:.95;
  font-size: 16px;
  line-height: 1.45;
}
.wp-proof60 .wp-b7__carousel{
  margin-top: 16px;
}
@media (min-width: 980px){
  .wp-proof60 .wp-b7__carousel:before{
    background:linear-gradient(90deg,#7c0911 0%,rgba(124,9,17,0) 100%);
  }
  .wp-proof60 .wp-b7__carousel:after{
    background:linear-gradient(270deg,#7c0911 0%,rgba(124,9,17,0) 100%);
  }
}
.wp-proof60__note{
  margin: 18px auto 0;
  max-width: 820px;
  text-align:center;
  opacity:.95;
  font-size: 13px;
  line-height: 1.5;
}
.wp-proof60__mid{
  margin: 14px auto 0;
  max-width: 860px;
  text-align:center;
  line-height: 1.25;
}
.wp-proof60__mid strong{
  display:block;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 6.2vw, 46px);
  margin-top: 6px;
  color:#ffd34d;
}
.wp-proof60__mid .wp-proof60__tag{
  display:block;
  margin-top: 8px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 15px;
  opacity:.95;
}
.wp-proof60__cta{
  margin: 18px auto 0;
  display:flex;
  justify-content:center;
}
.wp-proof60__cta .wp-b6__ctaBtn{
  width: min(640px, 100%);
}
.wp-proof60__trustimg{
  margin: 18px auto 0;
  display:block;
  width: min(680px, 100%);
  height:auto;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}

/* BLOCO EXTRA — NÚMEROS (PROVA SOCIAL) */
.wp-stats{
  background:#8b0a12;
  border-top:3px solid #ffd400;
  border-bottom:3px solid #ffd400;
  padding:26px 0;
}
.wp-stats .container{
  max-width:1100px;
  margin:0 auto;          /* centraliza o bloco no desktop */
  padding:0 16px;         /* respiro lateral p/ não encostar nas bordas */
}
.wp-stats__grid{
  display:flex;
  gap:28px;
  align-items:center;
  justify-content:space-between;
  text-align:center;
}
.wp-stat{
  flex:1 1 0;
  padding:10px 6px;
}
.wp-stat__num{
  font-family: inherit;
  font-weight: 900;
  letter-spacing: .3px;
  line-height: 1;
  font-size: clamp(44px, 8vw, 72px);
  color:#ffd400;
  margin-bottom:10px;
}
.wp-stat__label{
  font-weight: 500;
  color:#ffffff;
  font-size: 18px;
}
@media (max-width: 720px){
  .wp-stats{padding:22px 0;}
  .wp-stats__grid{
    flex-direction:column;
    gap:22px;
  }
  .wp-stat__label{font-size:17px;}
}

/* ===== BLOCO COMPARATIVO (Por que escolher o Velora) ===== */
.wp-compare{
  padding: 34px 0 28px;
  background: #f3f4f6;
}
.wp-compare .container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}
.wp-compare__head{
  text-align:center;
  margin-bottom: 14px;
}
.wp-compare__kicker{
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: var(--danger);
  font-size: 15px;
}
.wp-compare__title{
  margin: 8px 0 6px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}
.wp-compare__sub{
  margin: 0 auto 0;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 720px;
}
.wp-compare__card{
  margin-top: 18px;
  background:#fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  overflow:hidden;
  border: 1px solid rgba(20,20,20,.08);
}
.wp-compare__grid{
  display:grid;
  grid-template-columns: 1fr;
}
.wp-compare__side{
  padding: 18px 18px 16px;
}
.wp-compare__side + .wp-compare__side{
  border-top: 1px solid rgba(20,20,20,.08);
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.02));
}
.wp-compare__badge{
  display:inline-block;
  font-weight:900;
  letter-spacing:.3px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin: 4px 0 14px;
}
.wp-compare__badge--best{
  color:#0b2b1f;
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
}
.wp-compare__badge--other{
  color:#2b2b2b;
  background: #eceff3;
}
.wp-compare__imgwrap{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,.08);
  padding: 14px;
  margin-bottom: 14px;
}
.wp-compare__imgwrap img{
  width: 100%;
  max-width: 260px;
  height: auto;
  display:block;
}
.wp-compare__label{
  text-align:center;
  font-weight: 950;
  font-size: 18px;
  margin: 6px 0 10px;
  letter-spacing:.2px;
}
.wp-compare__list{
  list-style:none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 8px;
  font-size: 15px;
}
.wp-compare__list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  line-height: 1.25;
}
.wp-compare__icon{
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 18px;
}
.wp-compare__icon--ok{color: var(--accent1);}
.wp-compare__icon--no{color: var(--danger);}
.wp-compare__divider{
  display:none;
}
@media (min-width: 900px){
  .wp-compare__grid{
    grid-template-columns: 1fr 1fr;
  }
  .wp-compare__side + .wp-compare__side{
    border-top: none;
    border-left: 1px solid rgba(20,20,20,.08);
  }
  .wp-compare__divider{
    display:block;
    width:1px;
    background: rgba(20,20,20,.08);
  }
}

  /* Desktop fix: payment strip balanced on PC (mobile stays unchanged) */
  @media (min-width: 992px){
    .payment-box{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 26px;
      padding: 22px 34px;
      flex-wrap: nowrap;
    }
    .payment-box strong{
      flex: 0 0 auto;
      margin: 0;
      white-space: nowrap;
      font-size: 16px;
      line-height: 1.1;
    }
    .payment-box .payment-icons{
      flex: 1 1 auto;
      width: min(720px, 100%);
      max-width: 720px;
      height: 64px !important;
      max-height: 64px;
      margin: 0;
      object-fit: contain;
    }
  }

.payment-box strong{
      margin-right: 0;
      white-space: nowrap;
    }
    .payment-box .payment-icons{
      flex: 0 0 auto;
      width: 560px;
      max-width: 560px;
      height: 40px !important;
      max-height: 40px;
      margin: 0;
      object-fit: contain;
    }
  }

/* =========================================================
   PARTE 1 — ARQUITETURA DE DESKTOP (BASE)
   - Não altera mobile
   - Reduz "mobile esticado" no PC
   ========================================================= */
@media (min-width: 1024px){

  /* 1) Container padrão (evita larguras diferentes em cada bloco) */
  .wp-hero__wrap,
  .wp-b2__wrap,
  .wp-b3__wrap,
  .wp-b4__wrap,
  .wp-b6__wrap,
  .wp-photo__wrap,
  .wp-reviews__container,
  .wp-b7__wrap,
  .wp-proof60,
  .wp-stats .container,
  .wp-compare .container{
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* 2) Ritmo/altura geral (menos scroll sem mexer em conteúdo) */
  .wp-b2,
  .wp-b3{
    padding-top: 28px !important;
    padding-bottom: 8px !important;
  }
  .wp-b4,
  .wp-b6{
    padding-top: 32px !important;
    padding-bottom: 8px !important;
  }
  .wp-photo{
    padding-top: 34px !important;
    padding-bottom: 8px !important;
  }
  .wp-divider{
    margin-top: 24px !important;
    max-width: 1200px !important;
  }

  /* 3) HERO mais compacto no desktop (mantém 2 colunas) */
  .wp-hero{
    padding-bottom: 56px !important;
  }
  .wp-hero__title{
    max-width: 20ch !important;
  }
  .wp-hero__imageCard{
    max-width: 520px !important;
  }

  /* 4) Seção vermelha (prova) — reduzir altura sem perder impacto */
  .wp-proof60{
    padding: 32px 24px 28px !important;
  }
  .wp-proof60__h3{
    font-size: 34px !important;
  }
  .wp-proof60__mid strong{
    font-size: 38px !important;
  }

  /* 5) Faixa de números — menos altura */
  .wp-stats{
    padding: 22px 0 !important;
  }

  /* 6) Carrosséis — limitar tamanho dos cards no PC */
  .wp-b7__item img{
    max-width: 320px !important;
    max-height: 460px !important;
  }

  /* 7) Foto impacto — card menor para reduzir scroll */
  .wp-photo__card{
    width: min(820px, 100%) !important;
  }

  /* =========================================================
     PARTE 2 — RITMO VISUAL & LIMPEZA (DESKTOP)
     - Menos cansaço visual
     - Menos repetição gritando
     - Seções "vermelhas" mais compactas
     ========================================================= */

  /* A) Ajuste global de ritmo (menos respiro vertical no PC) */
  .wp-b6,
  .wp-b7,
  .wp-reviews,
  .wp-specialists,
  .wp-offer,
  .wp-faq{
    padding-top: 28px !important;
    padding-bottom: 22px !important;
  }

  /* B) Prova vermelha (wp-proof60) continua forte, mas mais curta */
  .wp-proof60{
    padding: 26px 22px 22px !important;
    border-radius: 18px !important;
  }
  .wp-proof60__h3{
    font-size: 30px !important;
    margin-bottom: 8px !important;
  }
  .wp-proof60__sub{
    margin-bottom: 14px !important;
  }
  .wp-proof60 .wp-b7__item img{
    max-width: 300px !important;
    max-height: 430px !important;
  }

  /* C) Prova visual (WhatsApp) vira APOIO no desktop: menor, mais “limpo” */
  .wp-b7{
    padding-top: 22px !important;
    padding-bottom: 8px !important;
  }
  .wp-b7__head{
    margin-bottom: 14px !important;
  }
  .wp-b7__h2{
    font-size: 28px !important;
    line-height: 1.1 !important;
  }
  /* limitar altura aparente sem remover conteúdo: o carrossel é horizontal */
  .wp-b7 .wp-b7__carousel{
    padding: 10px 0 6px !important;
    mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
  }
  .wp-b7 .wp-b7__item img{
    max-width: 280px !important;
    max-height: 420px !important;
  }

  /* D) Reviews: mais “revista”, menos parede */
  .wp-reviews{
    padding-top: 26px !important;
    padding-bottom: 18px !important;
    --wp-perView: 3 !important;
    --wp-gap: 16px !important;
  }
  .wp-reviews__header{
    margin-bottom: 12px !important;
  }
  .wp-reviewCard{
    padding: 16px 16px 12px !important;
  }
  .wp-reviewCard__text{
    font-size: 13.5px !important;
    line-height: 1.32 !important;
  }

  /* E) Seções longas em texto: limite de largura + respiro menor */
  .wp-b6__wrap > p{
    margin-bottom: 18px !important;
  }
  .wp-b6__text{
    max-width: 34ch !important;
  }

  /* F) Oferta mantém destaque, mas sem “altura morta” */
  .wp-offer{
    padding-top: 34px !important;
    padding-bottom: 26px !important;
  }
  .wp-offer__grid{
    gap: 16px !important;
  }

}

/* ===== PARTE 3 — Conversão no PC ===== */
.wp-ctaSub{
  display:block;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform:none;
  opacity: .78;
  margin-top: 6px;
  font-weight: 800;
}
.wp-hero__bullets{
  margin: 12px 0 14px;
  padding: 0;
  list-style:none;
  display:none; /* só PC */
  gap: 10px;
}
.wp-hero__bullets li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color: rgba(20,20,20,.78);
  line-height: 1.45;
  font-size: 15px;
}
.wp-hero__bullets li:before{
  content:"✓";
  flex:0 0 auto;
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background: rgba(25,222,175,.18);
  color: #0b3d32;
  font-weight: 950;
  margin-top: 1px;
}
.wp-hero__microproof{
  display:none; /* só PC */
  gap: 14px;
  margin: 12px 0 16px;
}
.wp-mp{
  flex: 1 1 0;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(20,20,20,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.wp-mp__top{
  display:block;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 22px;
}
.wp-mp__bot{
  display:block;
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
  font-weight: 900;
}

/* Desktop: hero mais “vendedor” sem mexer no mobile */
@media (min-width: 1024px){
  .wp-hero__title{ max-width: 20ch; }
  .wp-hero__text{ max-width: 58ch; }
  .wp-hero__bullets{ display:grid; }
  .wp-hero__microproof{ display:flex; }
  .wp-hero__cta a{
    min-height: 70px;
    width: min(560px, 100%);
  }
}

/* Oferta (cards) — destaque real do mais vendido no desktop */
.wp-b8__grid{ position:relative; }
.wp-b8__card{ position:relative; cursor:pointer; }
.wp-b8__card.is-selected{
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(0,0,0,.22) !important;
  outline: 3px solid rgba(25,222,175,.70);
}
.wp-b8__badge{
  position:absolute;
  top: 12px;
  left: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  color:#0b2b1f;
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}
@media (min-width: 980px){
  .wp-b8{ padding-top: 26px !important; }
  .wp-b8__grid{ grid-template-columns: repeat(4, 1fr) !important; gap: 18px !important; }
  .wp-b8__card{ transition: transform .16s ease, box-shadow .16s ease, outline-color .16s ease; }
  .wp-b8__card:hover{ transform: translateY(-2px); }
  .wp-b8__actions{
    margin-top: 18px;
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:center;
  }
  .wp-b8__primaryBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height: 64px;
    padding: 16px 22px;
    border-radius: 18px;
    text-decoration:none;
    font-weight: 950;
    font-size: 13px;
    letter-spacing:.10em;
    text-transform:uppercase;
    color:#0b1a15;
    background: linear-gradient(90deg, var(--accent2), var(--accent1));
    box-shadow: 0 22px 54px rgba(0,0,0,.22);
    border:0;
  }
  .wp-b8__hint{
    font-size: 12px;
    opacity: .7;
    font-weight: 800;
    letter-spacing: .04em;
  }
}
/* mobile: não muda */

/* ===== PROTEÇÃO LEVE (IMAGENS) — evita salvar/arrastar por ação básica ===== */
img{
  -webkit-user-select:none;
  user-select:none;
  -webkit-user-drag:none;
  -webkit-touch-callout:none;
}

/* ===== FIX FINAL (PROVA SOCIAL) — remove scrollbar + bloco vermelho sólido ===== */
.wp-proof60{
  background: #7c0911 !important; /* vermelho sólido */
}
.wp-proof60 .wp-b7__carousel{
  overflow: hidden !important;              /* remove barra e scroll manual */
  -webkit-overflow-scrolling: auto !important;
  scroll-snap-type: none !important;
  scrollbar-width: none;                     /* Firefox */
}
.wp-proof60 .wp-b7__carousel::-webkit-scrollbar{
  width: 0 !important;
  height: 0 !important;
}
.wp-proof60 .wp-b7__carousel:before,
.wp-proof60 .wp-b7__carousel:after{
  content: none !important;
  display: none !important;
}
.wp-proof60 .wp-b7__item{
  background: transparent;
}


/* BOTÃO VOLTAR WEBPROSPER */
.wp-back-button{
 position:fixed;
 bottom:24px;
 left:24px;
 display:flex;
 align-items:center;
 gap:12px;
 padding:12px 18px;
 background:linear-gradient(135deg,#0E2A33,#0B3A40);
 border-radius:999px;
 text-decoration:none;
 font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
 font-size:15px;
 font-weight:500;
 color:#EAF6F6;
 box-shadow:0 12px 30px rgba(0,0,0,.25);
 z-index:9999;
 transition:.2s ease;
}
.wp-back-button:hover{
 transform:translateY(-2px);
 box-shadow:0 16px 36px rgba(0,0,0,.3);
}
.wp-back-button img{
 width:35px;
 height:auto;
}
@media(max-width:480px){
 .wp-back-button{padding:11px 16px;font-size:14px}
 .wp-back-button img{width:32px}
}


/* ===== FIX: Barra de urgência fixa no topo (sem mexer no layout) ===== */
:root{ --wp-topbar-h: 56px; }

.wp-hero__bar{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  margin: 0 !important;
  border-radius: 0 !important;
  z-index: 10050 !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.14) !important;
}

/* garante fundo full-bleed funcionando também no fixed */
.wp-hero__bar::before{
  left: 50% !important;
  width: 100vw !important;
  transform: translateX(-50%) !important;
}

/* cria espaço para não cobrir o topo do HERO */
.wp-hero__wrap{
  padding-top: calc(var(--wp-topbar-h) + 14px) !important;
}

/* ajusta altura real da barra (consistente em todas as telas) */
.wp-hero__bar{
  min-height: var(--wp-topbar-h) !important;
}

/* mobile: um pouco mais compacta */
@media (max-width:480px){
  :root{ --wp-topbar-h: 52px; }
  .wp-hero__bar{ padding: 12px 14px !important; }
}

/* desktop: mantém leitura e respiro */
@media (min-width:1024px){
  .wp-hero__bar{ padding: 14px 20px !important; }
}




/* BOTÃO VOLTAR WEBPROSPER */
/* ÍCONE WP +35% */
/* BOTÃO WHATSAPP – SEM BORDA BRANCA */
.wp-whatsapp{
 position:fixed;
 bottom:22px;
 right:22px;
 width:64px;
 height:64px;
 z-index:9999;
 background:none;
 box-shadow:none;
 transition:.2s ease;
}
.wp-whatsapp img{
 width:100%;
 height:100%;
 border-radius:0;
 box-shadow:none;
 background:none;
}
.wp-whatsapp:hover{
 transform:translateY(-3px);
}

/* MOBILE */
@media(max-width:480px){
.wp-whatsapp{width:58px;height:58px}
}



/* =========================
   WP REVEAL — Stage 1 (structural)
   - clean, subtle, portfolio-safe
   ========================= */

:root{
  --wp-reveal-distance: 14px;
  --wp-reveal-duration: 520ms;
  --wp-reveal-ease: cubic-bezier(.2,.75,.2,1);
}

/* base state */
.wp-reveal{
  opacity: 0;
  transform: translate3d(0,var(--wp-reveal-distance),0);
  transition:
    opacity var(--wp-reveal-duration) var(--wp-reveal-ease),
    transform var(--wp-reveal-duration) var(--wp-reveal-ease);
  will-change: opacity, transform;
}

.wp-reveal[data-reveal="fade"]{
  transform: none;
}

.wp-reveal.is-inview{
  opacity: 1;
  transform: none;
}

/* stagger (optional) */
.wp-reveal[data-delay]{
  transition-delay: var(--wp-delay, 0ms);
}

/* Accessibility: respects user preference */
@media (prefers-reduced-motion: reduce){
  .wp-reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   Hover lift (PC only)
   ========================= */
@media (hover:hover) and (pointer:fine){
  .wp-hoverlift{
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
    will-change: transform;
  }
  .wp-hoverlift:hover{
    transform: translateY(-4px);
  }

  /* buttons: smaller lift */
  .wp-hoverlift.wp-hoverlift--btn:hover{
    transform: translateY(-2px);
    filter: brightness(1.02);
  }
}



/* =========================
   WP STAGE 2 (highlight)
   - CTA glow (PC only)
   - Count-up numbers (1x)
   ========================= */

/* CTA glow: only the main hero CTA, and only on devices with hover */
@media (hover:hover) and (pointer:fine){
  .wp-ctaMain{
    transition: transform 160ms ease, filter 160ms ease, box-shadow 220ms ease;
    will-change: transform, box-shadow, filter;
  }
  .wp-ctaMain:hover{
    box-shadow:
      0 22px 54px rgba(0,0,0,.22),
      0 0 0 4px rgba(25,222,175,.18),
      0 0 30px rgba(25,222,175,.38);
    filter: brightness(1.03);
  }
}


/* Offer selection micro-pop (only when selected) */
@keyframes wpPopSel{
  0%{ transform: translateY(-2px) scale(1); }
  55%{ transform: translateY(-2px) scale(1.015); }
  100%{ transform: translateY(-2px) scale(1); }
}
.wp-b8__card.is-selected{
  animation: wpPopSel 220ms cubic-bezier(.2,.8,.2,1);
}

/* Play button pulse (very subtle, hover devices only) */
@media (hover:hover) and (pointer:fine){
  @keyframes wpPlayPulse{
    0%, 100%{ transform: scale(1); opacity: 1; }
    50%{ transform: scale(1.06); opacity: .96; }
  }
  .wp-b6__play{
    animation: wpPlayPulse 1.9s ease-in-out infinite;
  }
  /* B4 play is pseudo-based; animate the white circle */
  .wp-b4__play::before{
    animation: wpPlayPulse 1.9s ease-in-out infinite;
  }
}
@media (prefers-reduced-motion: reduce){
  .wp-b6__play,
  .wp-b4__play::before{
    animation: none !important;
  }
}




    .wp-b4{
      padding: 36px 16px 8px;
      background:#fff;
    }
    .wp-b4__wrap{
      max-width: 980px;
      margin: 0 auto;
      text-align:center;
    }
    .wp-b4__h2{
      margin:0 0 26px;
      font-weight:950;
      letter-spacing:-.02em;
      font-size: clamp(22px, 2.6vw, 34px);
    }
    .wp-b4__grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .wp-b4__item{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:12px;
    }
    .wp-b4__item img{
      width:54px;
      height:auto;
    }
    .wp-b4__item span{
      font-size:14px;
      line-height:1.4;
      color:rgba(20,20,20,.8);
      max-width:18ch;
    }
    @media(max-width:900px){
      .wp-b4__grid{
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media(max-width:480px){
      .wp-b4__grid{
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }
      .wp-b4__item span{
        font-size:12px;
        line-height:1.3;
      }
      .wp-b4__item img{
        width:44px;
      }
      .wp-b4__item.is-desktop-only{
        display:none;
      }
    }
  
    .wp-b4__video{
      max-width: 980px;
      margin: 0 auto;
      display:flex;
      justify-content:center;
    }
    .wp-b4__videoLink{
      position:relative;
      display:block;
      width: min(980px, 100%);
      border-radius: 22px;
      overflow:hidden;
      box-shadow: var(--shadow);
      background:#fff;
      text-decoration:none;
    }
    .wp-b4__videoLink img{
      width:100%;
      height:auto;
      display:block;
    }
    .wp-b4__play{
      position:absolute;
      inset:0;
      display:grid;
      place-items:center;
      background: radial-gradient(circle at 50% 50%, rgba(0,0,0,.10), rgba(0,0,0,.28));
    }
    .wp-b4__play::before{
      content:"";
      width:72px;
      height:72px;
      border-radius: 999px;
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 46px rgba(0,0,0,.18);
    }
    .wp-b4__play::after{
      content:"";
      position:absolute;
      width:0;
      height:0;
      border-left: 18px solid rgba(20,20,20,.90);
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      transform: translateX(4px);
    }
    .wp-b4__videoLink:hover .wp-b4__play{
      background: radial-gradient(circle at 50% 50%, rgba(0,0,0,.06), rgba(0,0,0,.22));
    }
    @media(max-width:480px){
      .wp-b4__play::before{ width:60px; height:60px; }
      .wp-b4__play::after{ border-left-width:16px; border-top-width:11px; border-bottom-width:11px; }
    }

  


    .wp-b6{
      padding: 40px 16px 10px;
      background:#fff;
    }
    .wp-b6__wrap{
      max-width: 980px;
      margin: 0 auto;
      text-align:center;
    }
    .wp-b6__h2{
      margin:0 0 22px;
      font-weight:950;
      letter-spacing:-.02em;
      font-size: clamp(22px, 2.6vw, 34px);
    }
    .wp-b6__carousel{
      position:relative;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .wp-b6__item{
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px 18px;
      background:#fff;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:14px;
    }
    .wp-b6__item img{
      width:64px;
      height:auto;
    }
    .wp-b6__title{
      font-weight:900;
      font-size:16px;
    }
    .wp-b6__text{
      font-size:14.5px;
      color: rgba(20,20,20,.75);
      line-height:1.55;
      max-width: 30ch;
    }
    @media (max-width: 900px){
      .wp-b6__carousel{
        grid-template-columns: 1fr;
      }
    }
    


    .wp-photo{
      padding: 42px 16px 8px;
      background:#fff;
    }
    .wp-photo__wrap{
      max-width: 980px;
      margin: 0 auto;
      display:flex;
      justify-content:center;
    }
    .wp-photo__card{
      width: min(920px, 100%);
      border-radius: 26px;
      overflow:hidden;
      box-shadow: 0 18px 46px rgba(0,0,0,.16);
      background:#fff;
    }
    .wp-photo__card img{
      width:100%;
      height:auto;
      display:block;
    }

    .wp-photo__head{
      max-width: 820px;
      margin: 0 auto 16px;
      text-align:center;
    }
    .wp-photo__title{
      margin: 0 0 8px;
      font-weight: 950;
      letter-spacing: -.02em;
      line-height: 1.12;
      font-size: clamp(20px, 2.

2vw, 30px);
    }
    .wp-photo__text{
      margin: 0 auto;
      max-width: 70ch;
      color: rgba(20,20,20,.72);
      line-height: 1.6;
      font-size: 15.5px;
    }

  


    .wp-b7{
      padding: 40px 16px 10px;
      background:#fff;
      overflow:hidden;
    }
    .wp-b7__wrap{
      max-width: 1100px;
      margin: 0 auto;
      text-align:center;
    }
    .wp-b7__h2{
      margin:0 0 18px;
      font-weight:950;
      letter-spacing:-.02em;
      font-size: clamp(22px, 2.6vw, 34px);
    }

    .wp-b7__carousel{
      position:relative;
      overflow-x:auto;
      overflow-y:hidden;
      -webkit-overflow-scrolling:touch;
      scroll-snap-type:x mandatory;
      border-radius:22px;
      padding:6px 0;
    }

    @media (min-width: 980px){
      .wp-b7__carousel:before,
      .wp-b7__carousel:after{
        content:"";
        position:absolute;
        top:0; bottom:0;
        width:120px;
        z-index:2;
        pointer-events:none;
      }
      .wp-b7__carousel:before{
        left:0;
        background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,0) 100%);
      }
      .wp-b7__carousel:after{
        right:0;
        background:linear-gradient(270deg,#fff 0%,rgba(255,255,255,0) 100%);
      }
    }

    .wp-b7__track{
      display:flex;
      gap:16px;
      width:max-content;
      animation: wpB7Scroll 38s linear infinite;
    }

    .wp-b7__item{
      flex:0 0 auto;
      scroll-snap-align: start;
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 18px 46px rgba(0,0,0,.14);
      background:#fff;
    }

    .wp-b7__item img{
      width:auto;
      height:auto;
      max-width:432px;
      max-height:624px;
      object-fit:contain;
      display:block;
      user-select:none;
      pointer-events:none;
    }

    @keyframes wpB7Scroll{
      from{ transform:translateX(0); }
      to{ transform:translateX(-50%); }
    }

    @media (max-width: 720px){
      .wp-b7__item img{
        max-width:300px;
        max-height:480px;
      }
    }
  


    .wp-experts{padding:48px 16px 10px;background:#fff;}
    .wp-experts__wrap{max-width:980px;margin:0 auto;}
    .wp-experts__h2{margin:0 0 14px;font-weight:950;letter-spacing:-.02em;line-height:1.12;font-size:clamp(26px,3.2vw,44px);}
    .wp-experts__h2 .wp-experts__accent{color:#e6465a;}
    .wp-experts__h2 .wp-experts__rest{color:rgba(20,20,20,.65);font-weight:900;}
    .wp-experts__p{margin:0 0 18px;color:rgba(20,20,20,.78);font-size:15.8px;line-height:1.7;max-width:72ch;}
    .wp-experts__card{position:relative;border-radius:22px;overflow:hidden;box-shadow:0 18px 46px rgba(0,0,0,.14);background:#fff;}
    .wp-experts__card:after{content:"";position:absolute;top:0;right:0;width:7px;height:100%;background:linear-gradient(180deg,#ff6b7a,#e6465a);}
    .wp-experts__img{width:100%;height:auto;display:block;}
    @media (max-width:520px){
      .wp-experts{padding-top:42px;}
      .wp-experts__p{font-size:15.5px;}
    }
  


.wp-reviews {
    --wp-text: #0f0f0f;
    --wp-muted: #6b6b6b;
    --wp-card: #f3f3f3;
    --wp-divider: #111;
    --wp-shadow: 0 10px 30px rgba(0,0,0,.06);
    --wp-gap: 18px;
    --wp-perView: 1;
    width: 100%;
    padding: 64px 16px 40px;
    background: #fff;
    color: var(--wp-text);
  }

  .wp-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .wp-reviews__title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: .2px;
    font-size: clamp(30px, 4vw, 46px);
    margin: 0 0 14px;
  }

  .wp-reviews__divider {
    width: 120px;
    height: 2px;
    background: var(--wp-divider);
    margin: 0 auto 26px;
    opacity: .85;
  }

  .wp-reviews__rating {
    display: grid;
    gap: 10px;
    justify-items: center;
    margin-bottom: 26px;
  }

  .wp-reviews__ratingLabel {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 18px;
  }

  .wp-reviews__stars {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
  }

  .wp-reviews__star {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
  }

  .wp-reviews__basedOn {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: var(--wp-text);
  }

    .wp-reviews__viewport {
    position: relative;
    overflow: hidden;
    padding: 6px 0 10px;
  }

  .wp-reviews__track {
    display: flex;
    gap: var(--wp-gap);
    will-change: transform;
    transform: translate3d(0,0,0);
    align-items: stretch;
  }

  .wp-reviewCard {
    background: var(--wp-card);
    border-radius: 14px;
    padding: 18px 18px 14px;
    box-shadow: var(--wp-shadow);
    text-align: left;
    flex: 0 0 calc((100% - (var(--wp-gap) * (var(--wp-perView) - 1))) / var(--wp-perView));
    max-width: 640px;
  }

  .wp-reviewCard__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
  }

  .wp-reviewCard__profile {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .wp-reviewCard__avatar{width:46px;height:46px;border-radius:999px;overflow:hidden;object-fit:cover;flex:0 0 46px;}

  .wp-reviewCard__avatar--letter {
    display: grid;
    place-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: lowercase;
    color: #fff;
    background: #6a1bb0;
  }

  .wp-reviewCard__meta {
    min-width: 0;
  }

  .wp-reviewCard__name {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 260px;
  }

  .wp-reviewCard__time {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: var(--wp-muted);
  }

    .wp-reviewCard__starsRow {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 8px 0 10px;
  }

  .wp-reviewCard__starsRow img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
  }

  .wp-reviewCard__verified {
    width: 16px !important;
    height: 16px !important;
    margin-left: 3px;
  }

  .wp-reviewCard__text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.35;
    margin: 0 0 10px;
    color: var(--wp-text);
  }

  .wp-reviewCard__more {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #7a7a7a;
  }

  @media (min-width: 1024px) {
    .wp-reviews { padding: 84px 16px 56px; }
  }

  .wp-reviews__disclaimer{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: var(--wp-muted);
    margin-top: 10px;
    line-height: 1.35;
    max-width: 820px;
  }
  .wp-reviews__disclaimer strong{ color: var(--wp-text); }

  /* Avatar por letra (estilo Google-like, mas neutro) */
  .wp-avatarLetter{
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    flex: 0 0 46px;
    user-select: none;
  }
  .wp-avatarLetter--purple{ background: #7E57C2; }
  .wp-avatarLetter--blue{ background: #42A5F5; }
  .wp-avatarLetter--green{ background: #66BB6A; }
  .wp-avatarLetter--brown{ background: #8D6E63; }
  .wp-avatarLetter--teal{ background: #26A69A; }
  .wp-avatarLetter--indigo{ background: #5C6BC0; }

  /* Cards mais arredondados (inspirado, não cópia) */
  .wp-reviewCard{
    border-radius: 18px !important;
  }

  .wp-reviewCard__avatar img{width:100%;height:100%;object-fit:cover;border-radius:999px;display:block;}



    .wp-b8{
      padding: 46px 16px 24px;
      background:#fff;
    }
    .wp-b8__wrap{
      max-width: 1100px;
      margin: 0 auto;
      text-align:center;
    }
    .wp-b8__h2{
      margin:0 0 26px;
      font-weight:950;
      letter-spacing:-.02em;
      font-size: clamp(24px, 3vw, 38px);
    }
    .wp-b8__grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      align-items:stretch;
    }
    .wp-b8__card{
      border-radius: 22px;
      overflow:hidden;
      box-shadow: 0 18px 46px rgba(0,0,0,.14);
      background:#fff;
      display:flex;
      flex-direction:column;
    }
    .wp-b8__card img{
      width:100%;
      height:auto;
      display:block;
    }
    .wp-b8__cta{
      margin-top: 26px;
      display:flex;
      justify-content:center;
    }
    .wp-b8__cta a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height: 64px;
      width: min(760px, 100%);
      padding: 18px 22px;
      border-radius: 18px;
      text-decoration:none;
      font-weight: 950;
      font-size: 13px;
      letter-spacing:.10em;
      text-transform:uppercase;
      color:#0b1a15;
      background: linear-gradient(90deg, #6fffdd, #19deaf);
      box-shadow: 0 22px 54px rgba(0,0,0,.22);
    }
    @media(max-width: 980px){
      .wp-b8__grid{
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media(max-width: 520px){
      .wp-b8__grid{
        grid-template-columns: 1fr;
      }
    }

    /* ===== AJUSTE PC — cards de oferta ocupando quase toda a largura (sem mexer no mobile) ===== */
    @media (min-width: 1024px){
      .wp-b8{ padding: 56px 24px 34px; }
      .wp-b8__wrap{
        max-width: min(1680px, 96vw);
      }
      .wp-b8__grid{
        gap: 26px;
      }
      .wp-b8__card{
        border-radius: 26px;
      }
    }

    /* telas muito grandes: empurra ainda mais (mantém 4 colunas) */
    @media (min-width: 1440px){
      .wp-b8__wrap{ max-width: min(1760px, 96vw); }
      .wp-b8__grid{ gap: 30px; }
    }




    .wp-b9{
      padding: 46px 16px 18px;
      background:#fff;
    }
    .wp-b9__wrap{
      max-width: 980px;
      margin: 0 auto;
      display:flex;
      gap: 22px;
      align-items:center;
      justify-content:center;
    }
    .wp-b9__card{
      width:100%;
      border-radius: 22px;
      box-shadow: 0 18px 46px rgba(0,0,0,.14);
      background:#fff;
      padding: 28px 26px;
      display:flex;
      gap: 28px;
      align-items:flex-start;
    }
    .wp-b9__icon{
      flex: 0 0 auto;
      display:flex;
      align-items:flex-start;
      justify-content:center;
      background: transparent;
    }
    .wp-b9__icon img{
      width: 265px;
      max-width: 265px;
      height:auto;
      display:block;
    }
    .wp-b9__h2{
      margin:0 0 6px;
      font-weight: 950;
      letter-spacing:-.02em;
      font-size: clamp(20px, 2.4vw, 30px);
      line-height:1.12;
    }
    .wp-b9__p{
      margin:0;
      color: rgba(20,20,20,.72);
      font-size: 15.5px;
      line-height: 1.6;
      max-width: 70ch;
    }
    .wp-b9__p strong{ color:#141414; }
    @media (max-width: 720px){
      .wp-b9__wrap{ flex-direction:column; }
      .wp-b9__card{ flex-direction:column; text-align:center; }
      .wp-b9__p{ max-width: 62ch; }
    }

@media (max-width: 720px){
  .wp-b9__icon{
    width:100%;
    justify-content:center;
  }
  .wp-b9__icon img{
    margin: 0 auto;
  }
}

  


.wp-faq.wp-faq-bonito{
  padding: 0 !important;
  background: transparent !important;
}
.wp-faq-bonito{
  --blue:#263570;
  --teal:#19deaf;
  --bg:#f5f5f6;
  --cardTop:#f1f1f1;
  --cardBottom:#ffffff;
  --border:rgba(38,53,112,.18);
  --text:#1f2430;
  --muted:#5d667a;
  --shadow:0 16px 40px rgba(0,0,0,.10);
  --shadowHover:0 22px 52px rgba(0,0,0,.14);
  --radius:18px;
}

.wp-faq-bonito *{box-sizing:border-box}
.wp-faq-bonito{
  margin:0;
  font-family:Poppins, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(900px 450px at 50% -120px, rgba(25,222,175,.14), transparent 55%),
    linear-gradient(180deg,#f3f3f4 0%, #ffffff 55%, #ffffff 100%);
  color:var(--text);
}

.wp-faq-bonito .section{
  max-width:1100px;
  margin:0 auto;
  padding:86px 20px 110px;
}

.wp-faq-bonito .title{
  text-align:center;
  font-family:Raleway, Arial, sans-serif;
  font-weight:800;
  font-size:48px;
  letter-spacing:-.8px;
  color:var(--blue);
  margin:0 0 14px;
}

.wp-faq-bonito .subtitle{
  text-align:center;
  margin:0 0 50px;
  color:rgba(38,53,112,.70);
  font-size:16px;
  line-height:1.6;
}

.wp-faq-bonito .faq{
  max-width:920px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* Card */
.wp-faq-bonito .faq-item{
  background:linear-gradient(180deg,var(--cardTop) 0%, var(--cardBottom) 65%);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 0 0 rgba(0,0,0,0);
  transform:translateY(0);
  transition:box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

/* Hover (desktop) */
@media (hover:hover){
  .wp-faq-bonito .faq-item:hover{
    box-shadow:var(--shadow);
    transform:translateY(-1px);
    border-color:rgba(38,53,112,.26);
  }
}

/* Active accent */
.wp-faq-bonito .faq-item.active{
  border-color:rgba(25,222,175,.55);
  box-shadow:0 18px 46px rgba(0,0,0,.12);
}

/* Question row */
.wp-faq-bonito .faq-question{
  cursor:pointer;
  padding:22px 24px;
  font-weight:650;
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.wp-faq-bonito .q-text{
  font-size:16px;
  line-height:1.35;
}

.wp-faq-bonito .icon{
  width:34px;
  height:34px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;

  background:rgba(38,53,112,.04);
  border:1px solid rgba(38,53,112,.22);

  transition:transform .35s ease, background .25s ease, border-color .25s ease;
}

.wp-faq-bonito .icon:before{
  content:"";
  width:9px;
  height:9px;
  border-right:2px solid rgba(17,17,17,.92);
  border-bottom:2px solid rgba(17,17,17,.92);
  transform:rotate(45deg);
  margin-top:-2px;
}

.wp-faq-bonito .faq-item.active .icon{
  background:linear-gradient(180deg, rgba(111,255,221,.85) 0%, rgba(25,222,175,.92) 100%);
  border-color:rgba(25,222,175,.75);
  transform:rotate(180deg);
}

.wp-faq-bonito .faq-item.active .icon:before{
  border-right-color:rgba(38,53,112,.95);
  border-bottom-color:rgba(38,53,112,.95);
}

/* Answer animation */
.wp-faq-bonito .faq-answer{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .45s ease, opacity .25s ease;
}

.wp-faq-bonito .faq-item.active .faq-answer{
  opacity:1;
}

.wp-faq-bonito .faq-answer .inner{
  padding:0 24px 22px;
  color:var(--muted);
  line-height:1.75;
  font-size:15px;
}

.wp-faq-bonito .faq-answer .inner p{ margin:0 0 10px; }
.wp-faq-bonito .faq-answer .inner p:last-child{ margin-bottom:0; }
.wp-faq-bonito .faq-answer .inner strong{ color:rgba(38,53,112,.92); }

/* Small separators inside card (subtle) */
.wp-faq-bonito .faq-divider{
  height:1px;
  width:100%;
  background:linear-gradient(90deg, transparent 0%, rgba(38,53,112,.12) 25%, rgba(38,53,112,.12) 75%, transparent 100%);
}

/* Mobile */
@media(max-width:768px){
  .wp-faq-bonito .section{ padding:64px 18px 88px; }
  .wp-faq-bonito .title{
    font-size:40px;
    line-height:1.05;
    margin-bottom:12px;
  }
  .wp-faq-bonito .subtitle{
    margin-bottom:34px;
    font-size:15px;
  }
  .wp-faq-bonito .faq{ gap:12px; }
  .wp-faq-bonito .faq-question{ padding:18px 16px; }
  .wp-faq-bonito .q-text{ font-size:15px; }
  .wp-faq-bonito .faq-answer .inner{ padding:0 16px 18px; font-size:14px; }
  .wp-faq-bonito .icon{ width:32px; height:32px; }
}

/* Extra small */
@media(max-width:432px){
  .wp-faq-bonito .title{ font-size:36px; }
}



.footer{
    --bg:#2f2f2f;
    --text:#ffffff;
    --muted:#ddd;
    --muted2:#aaa;
    --accent:#ff0000; /* vermelho */
    --border:#ffffff;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
  }

  /* Base (escopado no rodapé) */
  .footer {
    background: var(--bg);
    padding: 60px 20px 50px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Defensivo contra CSS global da LP */
  .footer * { box-sizing: border-box; }
  .footer ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
  .footer li { list-style: none !important; margin: 0; padding: 0; }
  .footer a { color: inherit; }

  /* Top grid */
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
  }

  .footer-logo{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
  }

  .footer h4 {
    font-size: 16px;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: .3px;
  }

  .footer ul li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.35;
  }

  /* LINKS USÁVEIS + HOVER ROSA */
  .footer a.footer-link {
    color: var(--muted);
    text-decoration: none;
    transition: color .15s ease, opacity .15s ease;
  }
  .footer a.footer-link:hover,
  .footer a.footer-link:focus,
  .footer a.footer-link:active{
    color: var(--accent);
  }

  .footer-muted {
    color: var(--muted);
    font-size: 14px;
  }

  /* Botões */
  .footer-buttons a {
    display: block;
    width: 100%;
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: .4px;
    transition: opacity .15s ease, transform .15s ease;
  }
  .footer-buttons a:hover { opacity: .92; transform: translateY(-1px); }

  /* Selos */
  .security-box{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }
  .security-box img {
    height: 42px;
    width: auto;
    display: block;
  }

  /* Caixa pagamentos */
  .payment-box {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 45px;
    font-size: 14px;
  }

  .payment-box strong {
    margin-right: 10px;
    color: #fff;
    font-weight: 800;
  }

  .payment-box img {
    height: 30px;
    width: auto;
    display: block;
  }

  
  .payment-box .payment-icons{
    height: auto !important;
    width: min(640px, 100%);
    max-width: 100%;
    flex: 0 0 100%;
    margin: 2px auto 0;
  }

  /* Grid de pagamentos (responsivo) */
  .payment-grid{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
  }
  .pay-chip{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 12px;
    padding: 10px 14px;
    background: rgba(0,0,0,.12);
  }
  .pay-chip img{
    height: 34px;
    width: auto;
    display: block;
  }

  @media (max-width: 520px){
    .payment-grid{ gap: 10px; }
    .pay-chip{ padding: 8px 12px; border-radius: 10px; }
    .pay-chip img{ height: 30px; }
  }

.footer-copy {
    text-align: center;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 22px;
    font-weight: 800;
    letter-spacing: .3px;
  }

  .footer-text {
    text-align: center;
    font-size: 12px;
    color: var(--muted2);
    line-height: 1.7;
    max-width: 950px;
    margin: 0 auto 45px;
  }

  /* BLOCO "DESENVOLVIDO POR" AO LADO DO LOGO */
  .developer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0.9;
  }
  .developer .dev-text{
    text-align: left;      /* alinhado à esquerda */
    font-size: 11px;
    color: #cfcfcf;
    line-height: 1.05;
    letter-spacing: .2px;
    text-transform: uppercase;
  }
  .developer img {
    max-width: 70px;
    height: auto;
    display: block;
  }

  /* ===== MOBILE (deixa igual ao design da print) ===== */
  @media (max-width: 820px) {
    .footer { padding: 42px 18px 42px; }

    .footer-top{
      grid-template-columns: 1fr;
      gap: 26px;
      margin-bottom: 34px;
      text-align: center;
    }

    .footer-logo{
      justify-content: center;
    }
    .footer-logo img{ max-width: 210px; }

    .footer h4{
      font-size: 18px;
      margin-bottom: 14px;
    }

    .footer ul li{
      font-size: 15px;
      margin-bottom: 12px;
    }

    .footer-buttons{
      max-width: 340px;
      margin: 16px auto 0;
    }
    .footer-buttons a{
      padding: 14px 16px;
      border-radius: 8px;
    }

    .security-box{
      justify-content: center;
    }
    .security-box img{
      height: 44px;
    }

    .payment-box{
      padding: 22px 18px;
      gap: 14px;
      border-radius: 22px;
    }
    .payment-box strong{
      display: block;
      width: 100%;
      margin: 0 0 10px 0;
      text-align: center;
      font-size: 15px;
    }
    /* PAGAMENTOS – MOBILE (responsivo, como na print) */
.payment-box{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.payment-box strong{
  width: 100%;
  text-align: center;
  margin: 0 0 12px 0;
}
.payment-grid{
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 12px;
  justify-items: center;
  align-items: center;
}
.pay-chip{
  width: 100%;
  max-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(0,0,0,.10);
}
.pay-chip img{
  height: 32px;
  width: auto;
  display: block;
}

/* Ajuda a formar 3 em cima / 4 em baixo em telas bem estreitas */
@media (max-width: 390px){
  .payment-grid{ grid-template-columns: repeat(3, 1fr); }
  .pay-chip{ padding: 9px 10px; }
  .pay-chip img{ height: 30px; }
}
.footer-text{
      font-size: 12.5px;
      margin-bottom: 34px;
      padding: 0 4px;
    }

    .developer{
      flex-direction: column;
      gap: 10px;
    }
    .developer .dev-text{
      text-align: center;
    }
    .developer img{
      max-width: 86px;
    }
  }
  


/* =========================================================
   PARTE 4 — FECHAMENTO & CONFIANÇA (DESKTOP)
   - FAQ mais largo/legível
   - Garantia mais limpa e compacta
   - Rodapé com cara de confirmação (menos “lixão”)
   ========================================================= */
@media (min-width: 1024px){

  /* FAQ: mais largura + tipografia mais confortável */
  .wp-faq{ padding-top: 34px !important; padding-bottom: 26px !important; }
  .wp-faq__wrap{ max-width: 1100px !important; }
  .wp-faq__head{ margin-bottom: 26px !important; }
  .wp-faq__head h2{ font-size: 34px !important; line-height: 1.1 !important; }
  .wp-faq__item{ border-radius: 18px !important; }
  .wp-faq__btn{
    padding: 20px 22px !important;
    font-size: 17px !important;
  }
  .wp-faq__btn span{ font-size: 17px !important; }
  .wp-faq__panel{
    font-size: 16px !important;
    line-height: 1.65 !important;
    padding: 0 22px 18px !important;
  }

  /* Garantia: menos espalhada, mais “card” */
  .wp-b9{ padding-top: 34px !important; padding-bottom: 24px !important; }
  .wp-b9__wrap{ max-width: 1100px !important; }
  .wp-b9__card{
    padding: 24px 28px !important;
    gap: 22px !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.10) !important;
    align-items: center !important;
  }
  .wp-b9__icon img{
    width: 230px !important;
    max-width: 230px !important;
  }

  /* Rodapé: menos altura e mais “acabamento” */
  .footer{ padding: 44px 20px 38px !important; }
  .footer-top{ gap: 28px !important; margin-bottom: 34px !important; }
  .payment-box{ padding: 22px !important; border-radius: 16px !important; }
  .security-box img{ height: 40px !important; }
  .footer-copy{ margin-top: 22px !important; }
  .footer-text{ max-width: 980px; margin-left:auto; margin-right:auto; opacity: .92; }
}
