/* ================================
   VARIÁVEIS GLOBAIS
================================= */

:root{
  --verde: #2fd36b;
  --verde-escuro: #25b65b;
  --preto: #111111;
  --cinza-texto: #444444;
  --cinza-claro: #f4f4f4;
  --branco: #ffffff;

  --max-width: 1200px;
  --max-width-pdf: 760px; /* coluna "folha" do 1.pdf (apenas HOME) */


  /* NOVOS AJUSTES VISUAIS HOME */
  --moldura-verde: 6px;   /* espessura “igual em todos os lados” */
  --gap-verde: 6px;       /* verde no meio entre os cards */
}

/* ================================
   RESET BÁSICO
================================= */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: Arial, sans-serif;
  background: var(--branco);
  color: var(--cinza-texto);
  line-height: 1.6;
}

/* ================================
   CONTAINER PADRÃO
================================= */

.container{
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

/* ================================
   TIPOGRAFIA (GLOBAL)
================================= */

h1, h2, h3{
  font-weight: 800;
  color: var(--preto);
  line-height: 1.2;
}

h1{ font-size: clamp(36px, 5vw, 64px); }
h2{ font-size: clamp(28px, 4vw, 42px); margin-bottom: 20px; }
h3{ font-size: 22px; }

p{
  margin-bottom: 15px;
  font-size: 18px;
}

.text-center{ text-align: center; }

/* ================================
NAVBAR
================================ */

.navbar{
  position: sticky;
  top:0;
  z-index:1000;

 background: var(--verde);
  backdrop-filter: blur(6px);

  padding:14px 0;
}

/* estrutura */

.navbar-inner{
  display:flex;
  align-items:center;
  justify-content:center;
}

/* logo */

.logo a{
  font-size:26px;
  font-weight:900;
  color:var(--preto);
  text-decoration:none;
}


/* menu */

.menu{
  display:flex;
  align-items:center;
  gap:16px;
}

/* links */

.menu a{
  text-decoration:none;
  color:var(--preto);
  font-weight:500;
}

.menu{
  display:flex;
  align-items:center;
  gap:18px;
}

/* CTA */

.cta-edital{
  background:none;
  padding:0;
  border-radius:0;
  color:var(--preto);
  font-weight:500;
}
/* login */

.login-link{
  font-weight:700;
}

/* botão mobile */

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* ================================
MOBILE
================================ */

@media (max-width:900px){

  .menu{
    position:absolute;
    top:100px;
    right:0;

    background:#fff;
    flex-direction:column;
    align-items:flex-start;

    width:220px;
    padding:20px;

    box-shadow:0 10px 20px rgba(0,0,0,0.15);

    display:none;
  }

  .menu a{
    padding:6px 0;
    width:100%;
  }

  .menu-toggle{
    display:block;
  }

  .menu.active{
    display:flex;
  }

}
/* ================================
   BOTÕES (GLOBAL)
================================= */

.btn{
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary{
  background: var(--verde);
  color: var(--preto);
}

.btn-primary:hover{ background: var(--verde-escuro); }

.btn-outline{
  border: 2px solid var(--preto);
  color: var(--preto);
  background: transparent;
}

.btn-outline:hover{
  background: var(--preto);
  color: var(--branco);
}

/* Botões pílula usados no index.php */
.btn-pill{
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  border: none;
  transition: 0.2s ease;
}

.btn-pill-primary,
.btn-pill-outline{
  background: var(--verde);
  color: #ffffff;
}

.btn-pill-primary:hover,
.btn-pill-outline:hover{
  background: var(--verde-escuro);
}

/* ================================
   SEÇÕES (GLOBAL)
================================= */

.section{ padding: 80px 0; }
.section-light{ background: var(--cinza-claro); }

.section-green{
  background: var(--verde);
  color: var(--preto);
}

.section-green h2{ color: var(--preto); }

/* ================================
   CARDS (GLOBAL)
================================= */

.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card{
  background: var(--branco);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.section-green .card{ background: var(--branco); }

/* ================================
   LISTAS (GLOBAL)
================================= */

.list{ margin-top: 20px; }
.list li{ margin-bottom: 10px; }

/* ================================
   PLANOS (GLOBAL)
================================= */

.plan-card{
  background: var(--branco);
  padding: 40px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.plan-price{
  font-size: 36px;
  font-weight: 900;
  margin: 20px 0;
}

/* ================================
   FAQ (GLOBAL)
================================= */

body.faq-page{
  background: var(--verde);
}

.faq-section{
  padding: 14px 0 18px;
}

.faq-wrap{
  width: min(1120px, 92%);
  margin: 0 auto;
  background: #e9e9e9;
  padding: 34px 40px 40px;
  border-radius: 10px;
  box-sizing: border-box;
}

.faq-header{
  text-align: center;
  margin-bottom: 28px;
}

.faq-title-main{
  margin: 0 0 6px;
  text-align: center;
  color: #4f4f4f;
  font-size: 1.95rem;
  line-height: 1.02;
  font-weight: 700;
}

.faq-subtitle-main{
  margin: 0 0 10px;
  text-align: center;
  color: #5a5a5a;
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 400;
}

.faq-list{
  max-width: 860px;
  margin: 0 auto;
}

.faq-panel{
  border-bottom: 2px solid var(--verde);
}

.faq-trigger{
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px 0 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
}

.faq-question{
  color: #4a4a4a;
  font-size: 1.28rem;
  line-height: 1.22;
  font-weight: 800;
  margin: 0;
  flex: 1;
}

.faq-icon{
  color: var(--verde);
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  flex: 0 0 auto;
  margin-top: 4px;
  transition: transform .2s ease;
}

.faq-panel.is-open .faq-icon{
  transform: rotate(180deg);
}

.faq-content{
  display: none;
  padding: 0 12px 18px 0;
}

.faq-panel.is-open .faq-content{
  display: block;
}

.faq-answer{
  color: #5a5a5a;
  font-size: 1.08rem;
  line-height: 1.55;
  text-align: justify;
}

.faq-answer p{
  margin: 0 0 12px;
  color: #5a5a5a;
  font-size: 1.08rem;
  line-height: 1.55;
  text-align: justify;
}

.faq-answer p:last-child{
  margin-bottom: 0;
}

.faq-answer ul{
  margin: 0 0 12px 22px;
  padding: 0;
}

.faq-answer li{
  margin: 0 0 8px;
  color: #5a5a5a;
  font-size: 1.08rem;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 768px){

  .faq-wrap{
    width: min(1120px, 94%);
    padding: 24px 20px 28px;
  }

  .faq-title-main{
    font-size: 1.45rem;
  }

  .faq-subtitle-main{
    font-size: 0.98rem;
  }

  .faq-question{
    font-size: 1.04rem;
  }

  .faq-answer,
  .faq-answer p,
  .faq-answer li{
    font-size: 0.98rem;
  }

  .faq-trigger{
    padding: 16px 0 14px;
  }
}

/* ================================
   FORMULÁRIOS (GLOBAL)
================================= */

.form-group{ margin-bottom: 20px; }

input, select, textarea{
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

input:focus, select:focus, textarea:focus{
  outline: none;
  border-color: var(--verde);
}

/* ================================
   FOOTER
================================= */

.footer{
  background: var(--verde);
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
}

.footer a{
  color: var(--preto);
  margin: 0 10px;
  text-decoration: none;
}

.footer a:hover{ text-decoration: underline; }

.footer div:first-child{ margin-bottom: 12px; }

/* =========================================================
   HOME (INDEX.PHP) — BASEADO NO 1.pdf (VERSÃO TELA)
========================================================= */

/* Coluna tipo 1.pdf somente na HOME */
.topbar-site .container,
.hero-home .container,
.how--pdf .container,
.stats .container,
.compare .container,
.cta-final .container{
  width: min(var(--max-width-pdf), 94%);
}

/* Barra verde + logo */
.topbar-site{
  background: var(--verde);
  padding: 16px 0;
}

/* Aumentar logo CaptSe (PDF pág. 1) */
.logo-topo{
  height: 74px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* HERO */
.hero-home{
  background: #ededed;
  padding: 26px 0 18px;
  text-align: center;
}

/* Alinhar textos pelo centro (inclusive box verde) */
.hero-home,
.hero-home *{
  text-align: center;
}

.hero-title{
  margin: 10px auto 12px;
  line-height: 1.10;
  color: #555;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 700;
}

.hero-icon{
  margin: 6px 0 8px;
}

.hero-icon img{
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-subtitle{
  max-width: 980px;
  margin: 0 auto 12px;
  font-size: 15px;
  color: #6a6a6a;
  font-weight: 600;
  line-height: 1.35;
}

/* Botões (pílula) */
.hero-actions--pdf{
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

/* ================================
   2 QUADROS (cinza + preto) com MOLDURA VERDE ÚNICA
   (PDF pág. 1: verde em volta e no meio)
================================= */

.hero-cards-wrap{ margin-top: 6px; }

/* Esta classe exige a pequena mudança no HTML (hero-cards-frame) */
.hero-cards-frame{
  background: var(--verde);
  padding: var(--moldura-verde);
  border-radius: 10px;
}

.hero-cards-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-verde); /* verde aparece no meio */
  align-items: stretch;
}

/* Card base (sem borda, pois a moldura é do frame) */
.hero-card{
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.hero-card-inner{
  padding: 18px 16px 14px;
}

.hero-card-title{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.12;
  margin: 4px 0 12px;
  text-align: center;
}

/* Card cinza */
.hero-card--gray{
  background: #5a5a5a;
  color: #fff;
}

.hero-card--gray .hero-card-title{ color: #fff; }

/* bullets: aumentar corpo (PDF pág. 1) */
.hero-bullets{
  list-style: none;
  padding: 0;
  margin: 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-bullets li{
  font-size: 15px;
  margin: 7px 0;
  font-weight: 600;
  position: relative;
  padding-left: 14px;
  color: #fff;
  line-height: 1.25;
}

.hero-bullets li::before{
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  opacity: .95;
}

.hero-card-bottom{
  margin-top: 14px;
  font-size: 15px; /* aumentar corpo */
  line-height: 1.15;
  font-weight: 900;
  color: #fff;
  text-align: center;
}

/* Card preto */
.hero-card--black{
  background: #0c0c0c;
  color: #fff;
}

.hero-card-title--white{ color: #fff; }

.hero-card-text{
  font-size: 15px;     /* aumentar corpo (PDF pág. 1) */
  line-height: 1.38;
  margin: 10px 0;
  color: #e8e8e8;
  font-weight: 650;
  text-align: center;  /* centralizar textos (PDF) */
}

.hero-card-text strong{
  color: #fff;
  font-weight: 900;
}

/* box verde: centralizado */
.hero-card-highlight{
  margin-top: 12px;
  background: var(--verde);
  color: #111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  padding: 12px 12px;
  border-radius: 6px;
  text-align: center;
}

/* ================================
   QUADROS 3 e 4 (mão + entrega)
   (PDF pág. 2: não “duas caixas brancas”, textos centralizados)
================================= */

.hero-bottom-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
  margin-top: 14px;
}

/* manter “moldura” verde */
.hero-hand,
.hero-deliver{
  border: var(--moldura-verde) solid var(--verde);
  border-radius: 10px;
  background: #fff;
  padding: 18px 16px 16px;
  text-align: center;
}

.hero-hand-icon{
  width: 160px; /* ajuste fino via CSS (se quiser maior/menor) */
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.hero-hand-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.30;
  color: #4f4f4f;
  font-weight: 800;
  text-align: center;
}

.hero-deliver-title{
  color: var(--verde);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 12px;
  font-size: 22px; /* título mais destacado */
  text-align: center;
}

.hero-deliver-list{
  display: grid;
  gap: 10px;
  font-size: 15px;
  line-height: 1.35;
  color: #4a4a4a;
  font-weight: 800;
  text-align: center;
}

/* Linha verde */
.divider-green{
  height: 8px;
  background: var(--verde);
  width: 100%;
}

/* COMO FUNCIONA (PDF pág. 2: textos centralizados) */
.how--pdf{
  background: #f0f0f0;
  padding: 52px 0;
  text-align: center;
}

.how-title{
  margin-bottom: 18px;
  text-align: center;
}

/* agora a lista fica centralizada */
.steps--pdf{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  color: #333;
}
/* Centraliza cada linha do texto dentro do bloco "Como funciona" */
.steps--pdf .step-text{
  text-align: center;
  width: 100%;
}

/* (opcional) garante que o conjunto badge + texto fique centralizado */
.steps--pdf .step--pdf{
  justify-content: center;
}

.step--pdf{
  display: flex;
  gap: 12px;
  margin: 14px 0;
  align-items: flex-start;
  justify-content: center;
}

.badge--pdf{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--verde);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
  margin-top: 2px;
}

.step-text{
  text-align: center;
  max-width: 520px;
}

/* ================================
   SEÇÃO +R$ 6 milhões (PDF pág. 3)
   - título maior e central
   - lâmpada menor
   - textos centralizados
================================= */

.stats{
  background: #0c0c0c;
  color: #fff;
  padding: 70px 0;
}

.stats .wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.stats-left{
  text-align: center;
}

.stats h2{
  color: var(--verde);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.0;
  font-size: clamp(48px, 4.2vw, 48px); /* título maior */
  text-align: center;
}

.stats h2 span{
  display: block;
  color: var(--verde);
  font-weight: 900;
}

.stats img{
  width: 240px; /* lâmpada menor (PDF pág. 3) */
  height: auto;
  display: block;
  margin: 0 auto;
}

.stats .bullets{
  font-size: 15px;
  line-height: 1.7;
  color: #d9d9d9;
  font-weight: 700;
  text-align: center; /* centralizado (PDF) */
}

.stats .bullets strong{
  color: var(--verde);
  font-weight: 900;
}

/* ================================
   COMPARATIVO (PDF pág. 3)
   - tabela sem fundo branco, só linhas verdes
   - (HTML: adicionar coluna "Fazer sozinho")
================================= */

.compare{
  padding: 55px 0;
  background: #f6f6f6;
  text-align: center;
}

.table-compare{
  width: min(980px, 96%);
  margin: 22px auto 0;
  border-collapse: collapse;
  background: transparent;       /* remove fundo branco */
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.table-compare th,
.table-compare td{
  border: 2px solid var(--verde); /* apenas linhas verdes */
  padding: 14px 12px;
  font-weight: 600;
  color: #333;
  background: transparent;        /* sem fundo */
  text-align: center;
}

.table-compare th{
  font-weight: 600;
}

/* CTA FINAL — faixa cinza full width */

.cta-final{
  background:#e9e9e9;       /* cinza mais neutro */
  padding:28px 0 24px;      /* menos altura */
  text-align:center;
  width:100%;               /* garante largura total */
}

.cta-final .container{
  max-width:980px;
  margin:0 auto;
}

.cta-final-box{
  background:transparent;   /* remove o bloco verde */
  padding:0;
  border-radius:0;
}

/* tipografia mais leve */

.cta-final h2{
  margin:0;
  color:#555;               /* cinza médio */
  font-weight:650;          /* fonte mais fina */
  line-height:1.25;
  letter-spacing:0.3px;
  font-size:28px;
}

/* responsivo */

@media(max-width:768px){

  .cta-final{
    padding:22px 0;
  }

  .cta-final h2{
    font-size:22px;
  }

}

/* FORÇA FOOTER A APARECER (override de conflitos) */
footer.footer{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  position: relative !important;
  z-index: 10 !important;

  height: auto !important;
  min-height: 60px;
  overflow: visible !important;

  background: var(--verde) !important;
  padding: 22px 0 !important;
  margin: 0 !important;
}

/* garante que o conteúdo do footer não “suma” */
footer.footer .container{
  display: block !important;
}

/* links visíveis */
footer.footer a{
  color: #111 !important;
  text-decoration: none;
  font-weight: 700;
  margin: 0 10px;
}

footer.footer a:hover{
  text-decoration: underline;
}
/* =========================================================
   QUEM SOMOS
========================================================= */

.quem-somos-page{
 background:var(--verde);
 padding:20px 0 30px;
}


.quem-somos-hero{
  padding:0 0 24px;
}

.quem-somos-wrap{
  width:100%;
  max-width:1100px;
  margin:0 auto;
}

/* ================================
   QUADROS BASE
================================= */

.qs-card{
  background:#e9e9e9;
  border-radius:10px;
  padding:22px 18px;
  margin-bottom:18px;
  box-sizing:border-box;
}

.qs-center{
  text-align:center;
}

/* ================================
   BLOCO TOPO
================================= */

.qs-hero-card{
  width:100%;
  padding:14px 34px 24px;
}

.qs-title{
  text-align:center;
  color:#4f4f4f;
  font-size:1.95rem;
  line-height:1.02;
  font-weight:700;
  margin:0 0 18px;
}

.qs-title strong{
  font-weight:800;
  color:#4f4f4f;
}

.qs-hero-content{
  display:grid;
  grid-template-columns:280px 1fr;
  align-items:center;
  gap:26px;
}

.qs-hero-icon{
  display:flex;
  justify-content:center;
  align-items:center;
}

.qs-hero-icon img{
  width:170px;
  max-width:100%;
  height:auto;
  display:block;
}

.qs-hero-text{
  max-width:520px;
}

.qs-hero-text p{
  margin:0 0 12px;
  color:#5a5a5a;
  font-size:1.18rem;
  line-height:1.24;
  text-align:left;
}

.qs-hero-text p:last-child{
  margin-bottom:0;
}

.qs-hero-text strong{
  font-weight:800;
  color:#4a4a4a;
}

/* ================================
   DOIS QUADROS NO BLOCO VERDE
================================= */

.qs-grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:0;
  width:100%;
}

.qs-info-card{
  min-height:430px;
  padding:34px 28px 26px;
  width:100%;
}

.qs-card-title{
  text-align:center;
  color:#4f4f4f;
  font-size:1.55rem;
  line-height:1.02;
  font-weight:400;
  margin:0 0 20px;
}

.qs-card-title strong{
  font-weight:800;
  color:#4f4f4f;
}

.qs-info-card p{
  margin:0 0 12px;
  color:#5a5a5a;
  font-size:1.16rem;
  line-height:1.24;
  text-align:center;
}

.qs-info-card p:last-child{
  margin-bottom:0;
}

.qs-info-card strong{
  font-weight:800;
  color:#4a4a4a;
}

/* ================================
   FAIXA VERDE DOS LOGOS
================================= */

.qs-logos-bar{
  background:var(--verde);
  padding:14px 10px 18px;
  margin-bottom:14px;
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}

.qs-logo-item{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.qs-logo-item img{
  width:100%;
  max-width:690px;
  height:auto;
  display:block;
}

/* ================================
   RECONHECIMENTO
================================= */

.qs-reconhecimento-card{
 padding:30px 22px 34px;
}

.qs-center-text{
  max-width:520px;
  margin:0 auto;
  color:#5a5a5a;
  font-size:1.2rem;   
  line-height:1.32;
  text-align:center;
}

.qs-center-text strong{
  font-weight:800;
  color:#4a4a4a;
}
/* =========================================================
   BLOCO ODS
========================================================= */

.qs-ods-card{
  padding:22px 18px 20px;
}

.qs-ods-content{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:28px;
  align-items:center;
}

.qs-ods-image{
  display:flex;
  justify-content:center;
  align-items:center;
}

.qs-ods-image img{
  width:100%;
  max-width:360px;
  height:auto;
  display:block;
}

.qs-ods-list{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.qs-ods-intro{
  margin:0 0 14px;
  color:#4f4f4f;
  font-size:1.35rem;   /* dobrado para teste */
  line-height:1.12;
  text-align:left;
}

.qs-ods-intro strong{
  font-weight:800;
}

.qs-ods-wrap{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.qs-ods-row{
  display:grid;
  grid-template-columns:86px 1fr;
  gap:14px;
  align-items:center;
}

.qs-ods-icon img{
  width:86px;
  height:auto;
  display:block;
}

.qs-ods-text-item{
  color:#5a5a5a;
  font-size:1.32rem;   /* dobrado para teste */
  line-height:1.15;
  text-align:left;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 900px){
  .qs-ods-content{
    grid-template-columns:1fr;
    gap:20px;
  }

  .qs-ods-image{
    order:1;
  }

  .qs-ods-list{
    order:2;
  }

  .qs-ods-image img{
    max-width:280px;
  }

  .qs-ods-intro{
    font-size:1.1rem;
    text-align:left;
  }

  .qs-ods-text-item{
    font-size:1.02rem;
  }

  .qs-ods-row{
    grid-template-columns:72px 1fr;
  }

  .qs-ods-icon img{
    width:72px;
  }
}

/* ================================
   COMPROMISSO
================================= */

.qs-compromisso-card{
  padding:30px 22px 34px;
}

.qs-check-grid{
  max-width:520px;
  margin:16px auto 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 34px;   /* antes 14px 28px */
}

.qs-check-item{
  display:flex;
  align-items:flex-start;
  gap:8px;
}

.qs-check{
  color:var(--verde);
  font-size:1.8rem;
  line-height:1;
  font-weight:800;
  margin-top:-4px;
  flex:0 0 auto;
}



.qs-check-item span:last-child{
  color:#5a5a5a;
  font-size:1.26rem;
  line-height:1.25;
  text-align:left;
}

/* ================================
   RESPONSIVO
================================= */

@media (max-width: 768px){

  .quem-somos-wrap{
    max-width:94%;
  }

  .qs-hero-content,
  .qs-grid-2,
  .qs-ods-content,
  .qs-check-grid{
    grid-template-columns:1fr;
  }

  .qs-hero-text,
  .qs-ods-list{
    max-width:100%;
    margin:0 auto;
  }

  .qs-hero-text p{
    text-align:center;
  }

  .qs-ods-list{
    max-width:320px;
  }

  .qs-ods-image img{
    max-width:220px;
  }

  .qs-check-grid{
    max-width:320px;
  }

  .qs-title{
    font-size:1.35rem;
  }

  .qs-card-title{
    font-size:1.25rem;
  }

  .qs-hero-text p,
  .qs-info-card p{
    font-size:1rem;
  }
}

@media (max-width: 480px){

  .qs-title,
  .qs-card-title{
    font-size:1rem;
  }

  .qs-hero-icon img{
    width:115px;
  }

  .qs-ods-image img{
    max-width:190px;
  }

  .qs-hero-text p,
  .qs-info-card p,
  .qs-center-text,
  .qs-ods-intro,
  .qs-ods-text-item,
  .qs-check-item span:last-child{
    font-size:0.82rem;
  }

  .qs-ods-wrap{
    grid-template-columns:62px 1fr;
    gap:10px;
  }

  .qs-ods-single-image img{
    width:62px;
  }
}html{
  scroll-behavior:smooth;
}

/* =========================================================
   POLÍTICA DE PRIVACIDADE
========================================================= */

.politica-page{
  background: var(--verde);
}

.politica-section{
  padding: 14px 0 18px;
}

.politica-wrap{
  width: min(1120px, 92%);
  margin: 0 auto;
}

.politica-card{
  background: #e9e9e9;
  border-radius: 10px;
  padding: 34px 40px 40px;
  box-sizing: border-box;
}

.politica-title{
  margin: 0 0 6px;
  text-align: center;
  color: #4f4f4f;
  font-size: 1.95rem;
  line-height: 1.02;
  font-weight: 700;
}

.politica-update{
  margin: 0 0 22px;
  text-align: right;
  color: #6a6a6a;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 400;
}

.politica-content{
  color: #5a5a5a;
}

.politica-content p{
  margin: 0 0 14px;
  color: #5a5a5a;
  font-size: 1.08rem;
  line-height: 1.38;
  text-align: left;
}

.politica-content h2{
  margin: 20px 0 10px;
  color: #4f4f4f;
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 600;
}

.politica-content ul{
  margin: 0 0 14px 24px;
  padding: 0;
}

.politica-content li{
  margin: 0 0 8px;
  color: #5a5a5a;
  font-size: 1.05rem;
  line-height: 1.36;
}

.politica-content strong{
  font-weight: 600;
  color: #4a4a4a;
}

.politica-divider{
  border: 0;
  border-top: 1px solid #cfcfcf;
  margin: 18px 0;
}

.politica-contact-label{
  margin-top: 12px;
  text-align: center;
}

.politica-contact-label a{
  color: #4a4a4a;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-block;
}

.politica-contact-label a:hover{
  text-decoration: underline;
}

}@media (max-width: 768px){

  .politica-wrap{
    width: min(1120px, 94%);
  }

  .politica-card{
    padding: 24px 20px 28px;
  }

  .politica-title{
    font-size: 1.45rem;
  }

  .politica-update{
    font-size: 0.76rem;
    margin-bottom: 18px;
  }

  .politica-content p,
  .politica-content li{
    font-size: 0.98rem;
  }

  .politica-content h2{
    font-size: 1.08rem;
  }
}

/* =========================================================
   CONTATO
========================================================= */

.contato-page{
  background: var(--verde);
}

.contato-section{
  padding: 14px 0 18px;
}

.contato-wrap{
  width: min(1120px, 92%);
  margin: 0 auto;
}

.contato-card{
  background: #e9e9e9;
  border-radius: 10px;
  padding: 34px 40px 40px;
  box-sizing: border-box;
  text-align: center;
}

.contato-title{
  margin: 0 0 10px;
  color: #4f4f4f;
  font-size: 1.95rem;
  line-height: 1.02;
  font-weight: 700;
}

.contato-title span{
  color: var(--verde);
}

.contato-text{
  margin: 0 auto 26px;
  color: #5a5a5a;
  font-size: 1.08rem;
  line-height: 1.38;
  max-width: 620px;
}

.contato-qrcode{
  width: 320px;
  max-width: 100%;
  display: block;
  margin: 0 auto 18px;
}

.contato-instrucao{
  margin: 0;
  color: #5a5a5a;
  font-size: 1.02rem;
  line-height: 1.3;
}

@media (max-width: 768px){

  .contato-wrap{
    width: min(1120px, 94%);
  }

  .contato-card{
    padding: 24px 20px 28px;
  }

  .contato-title{
    font-size: 1.45rem;
  }

  .contato-text{
    font-size: 0.98rem;
  }

}
/* ================================
   BLOCO LOGIN
================================= */

.login-bar{
  background: #ededed; /* mesmo cinza da página */
  padding: 10px 0;
}

.login-bar-inner{
  display: flex;
  justify-content: flex-end;
}

/* botão verde */

.btn-login-site{
  background: var(--verde);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

.btn-login-site:hover{
  background: var(--verde-escuro);
}

/* =========================================================
   BARRA DE LOGOS
========================================================= */

.qs-logos-bar{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:42px;
  width:100%;
  max-width:690px;
  margin:0 auto 22px;
  padding:18px 22px;
  background:rgba(0,0,0,.06);
  border-radius:10px;
  box-sizing:border-box;

  flex-wrap:nowrap; /* DESKTOP: mantém lado a lado */
}

.qs-logo-item{
  display:flex;
  align-items:center;
  justify-content:center;
  width:260px;       /* largura fixa para todas */
  height:140px;       /* altura fixa */
}

.qs-logo-item img{
  max-width:140px;
  max-height:55px;
  width:auto;
  height:auto;
  object-fit:contain;
}

.qs-logo-item img:hover{
  filter:grayscale(0%);
  opacity:1;
  transform:translateY(-1px);
}

/* ================================
   TABLET
================================= */

@media (max-width: 768px){
  .qs-logos-bar{
    gap:26px;
    padding:16px 14px;
    max-width:520px;
  }

  .qs-logo-item{
    flex:1 1 calc(50% - 26px);
  }

  .qs-logo-item img{
    max-width:130px;
    max-height:46px;
    margin:0 auto;
  }
}

/* ================================
   CELULAR
================================= */

@media (max-width: 480px){
  .qs-logos-bar{
    gap:18px;
    padding:14px 12px;
    max-width:280px;
  }

  .qs-logo-item{
    flex:1 1 100%;
  }

  .qs-logo-item img{
    max-width:150px;
    max-height:42px;
  }
}

/* ========================================
PLANOS
======================================== */

.planos-section{
  background:#efefef;
  padding:30px 20px 50px;
}

.planos-container{
  max-width:1300px;
  margin:0 auto;
}

.planos-header{
  text-align:center;
  margin-bottom:28px;
}

.planos-header h1{
  margin:0;
  font-size:32px;
  font-weight:800;
  color:#555;
}

.planos-subtitle{
  font-size:30px;
  color:#555;
  font-weight:500;
  margin-top:-4px;
}

/* GRID */

.planos-grid{
  display:flex;
  justify-content:center;
  gap:40px;
  max-width:1100px;
  margin:0 auto;
}

/* ESQUERDA */

.plano-left{
  width:540px;
}

.plano-box{
  border:2px solid #2fd36b;
  border-radius:10px;
  overflow:hidden;
}

.plano-box-header{
  padding:14px 20px;
  border-bottom:2px solid #2fd36b;
  font-size:26px;
  font-weight:800;
  color:#2fd36b;
  text-transform:uppercase;
}

.plano-box-content{
  padding:20px;
  color:#555;
}

.plano-preco-1{
  font-size:26px;
  font-weight:800;
}

.plano-preco-2{
  font-size:23px;
  margin-bottom:10px;
}

.plano-ou{
  font-size:18px;
  font-weight:800;
  color:#2fd36b;
  margin-bottom:8px;
}

.plano-preco-3{
  font-size:25px;
  font-weight:800;
}

.plano-preco-4{
  font-size:22px;
  margin-bottom:14px;
}

.plano-lista{
  padding-left:22px;
  font-size:16px;
  line-height:1.2;
}

/* BOTÕES */

.plano-btn-area{
  margin-top:14px;
}

.btn-planos{
  display:inline-block;
  background:#2fd36b;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:18px;
  padding:12px 28px;
  border-radius:999px;
}

/* DIREITA */

.plano-right{
  width:360px;
}

.plano-bloco{
  margin-bottom:34px;
}

.plano-titulo{
  font-size:24px;
  font-weight:800;
  color:#2fd36b;
  text-transform:uppercase;
  margin-bottom:8px;
}

.plano-subtitulo{
  font-size:22px;
  font-weight:800;
  color:#555;
  margin-bottom:6px;
}

.plano-texto{
  font-size:16px;
  color:#555;
  margin-bottom:14px;
  max-width:310px;
}

/* ========================================
MOBILE
======================================== */

@media (max-width:900px){

.planos-grid{
  flex-direction:column;
  align-items:center;
}

.plano-left{
  width:100%;
  max-width:520px;
}

.plano-right{
  width:100%;
  max-width:520px;
}

.planos-header h1{
  font-size:26px;
}

.planos-subtitle{
  font-size:24px;
}

}
/* =========================================================
   PLANOS
========================================================= */

.planos-section{
  background:#31d267;
  padding:22px 16px 34px;
  box-sizing:border-box;
}

.planos-shell{
  width:100%;
  max-width:1100px;   /* antes estava 1320px */
  margin:0 auto;
  background:#efefef;
  border-radius:18px;
  padding:26px 32px 34px;
  box-sizing:border-box;
}

.planos-container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
}

.planos-header{
  text-align:center;
  margin-bottom:30px;
}

.planos-title{
  margin:0;
  color:#555;
  font-size:32px;
  line-height:1.02;
  font-weight:800;
}

.planos-subtitle{
  margin-top:-2px;
  color:#555;
  font-size:31px;
  line-height:1.02;
  font-weight:500;
}

.planos-grid{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:36px;
}

.planos-col-left{
  flex:0 1 540px;
  min-width:0;
}

.planos-col-right{
  flex:0 1 360px;
  min-width:0;
  padding-top:8px;
}

/* ================================
   CARD PRINCIPAL
================================= */

.plano-card{
  border:2px solid #2fd36b;
  border-radius:14px;
  background:transparent;
  overflow:hidden;
  box-sizing:border-box;
}

.plano-card-head{
  padding:14px 20px 12px;
  border-bottom:2px solid #2fd36b;
}

.plano-card-tag{
  display:block;
  font-size:25px;
  line-height:1;
  font-weight:800;
  color:#2fd36b;
  text-transform:uppercase;
}

.plano-card-body{
  padding:20px 20px 18px;
  color:#555;
}

.plano-preco-principal{
  font-size:28px;
  line-height:1.02;
  font-weight:800;
  color:#555;
  margin-bottom:2px;
}

.plano-preco-apoio{
  font-size:23px;
  line-height:1.05;
  font-weight:500;
  color:#555;
  margin-bottom:12px;
}

.plano-ou{
  font-size:19px;
  line-height:1.05;
  font-weight:800;
  color:#2fd36b;
  margin-bottom:8px;
  text-transform:lowercase;
}

.plano-preco-secundario{
  font-size:26px;
  line-height:1.05;
  font-weight:800;
  color:#555;
  margin-bottom:2px;
}

.plano-desconto{
  font-size:22px;
  line-height:1.05;
  font-weight:500;
  color:#555;
  margin-bottom:16px;
}

.plano-lista{
  margin:0;
  padding-left:22px;
  color:#555;
  font-size:16px;
  line-height:1.3;
}

.plano-lista li{
  margin-bottom:3px;
}

/* ================================
   COLUNA DIREITA
================================= */

.plano-info-card{
  margin-bottom:34px;
}

.plano-info-card:last-child{
  margin-bottom:0;
}

.plano-info-title{
  font-size:24px;
  line-height:.96;
  font-weight:800;
  color:#2fd36b;
  text-transform:uppercase;
  margin-bottom:10px;
}

.plano-info-subtitle{
  font-size:23px;
  line-height:.98;
  font-weight:800;
  color:#555;
  margin-bottom:8px;
  max-width:320px;
}

.plano-info-text{
  font-size:16px;
  line-height:1.15;
  color:#555;
  max-width:310px;
  margin-bottom:16px;
}

/* ================================
   BOTÕES
================================= */

.plano-cta-wrap{
  padding-top:14px;
}

.btn-planos-site{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  text-align:center;
  background:#2fd36b;
  color:#fff;
  text-decoration:none;
  font-size:18px;
  line-height:1;
  font-weight:800;
  padding:13px 26px;
  border-radius:999px;
  box-sizing:border-box;
  transition:transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.btn-planos-site:hover{
  transform:translateY(-1px);
  opacity:.96;
}

.btn-planos-site-sm{
  min-width:190px;
  font-size:17px;
  padding:12px 18px;
}

/* ================================
   TABLET
================================= */

@media (max-width: 1024px){

  .planos-shell{
    padding:22px 20px 28px;
  }

  .planos-grid{
    gap:28px;
  }

  .planos-col-left{
    flex-basis:520px;
  }

  .planos-col-right{
    flex-basis:330px;
  }

  .planos-title{
    font-size:29px;
  }

  .planos-subtitle{
    font-size:28px;
  }
}

/* ================================
   MOBILE
================================= */

@media (max-width: 860px){

  .planos-section{
    padding:18px 12px 28px;
  }

  .planos-shell{
    padding:18px 14px 22px;
    border-radius:16px;
  }

  .planos-container{
    max-width:100%;
  }

  .planos-header{
    margin-bottom:22px;
  }

  .planos-title{
    font-size:26px;
    line-height:1.05;
  }

  .planos-subtitle{
    font-size:24px;
    line-height:1.05;
    margin-top:2px;
  }

  .planos-grid{
    flex-direction:column;
    align-items:stretch;
    gap:26px;
    max-width:100%;
  }

  .planos-col-left,
  .planos-col-right{
    flex:none;
    width:100%;
    max-width:100%;
    padding-top:0;
  }

  .plano-card{
    width:100%;
  }

  .plano-card-head{
    padding:14px 16px 12px;
  }

  .plano-card-body{
    padding:18px 16px 16px;
  }

  .plano-card-tag{
    font-size:22px;
  }

  .plano-preco-principal{
    font-size:24px;
  }

  .plano-preco-apoio{
    font-size:20px;
  }

  .plano-ou{
    font-size:18px;
  }

  .plano-preco-secundario{
    font-size:23px;
  }

  .plano-desconto{
    font-size:20px;
  }

  .plano-lista{
    font-size:15px;
    line-height:1.34;
    padding-left:20px;
  }

  .plano-cta-wrap{
    padding-top:12px;
  }

  .btn-planos-site,
  .btn-planos-site-sm{
    width:100%;
    min-width:0;
    font-size:17px;
    padding:13px 16px;
  }

  .plano-info-card{
    margin-bottom:26px;
    padding:0;
  }

  .plano-info-title{
    font-size:22px;
    line-height:1;
    margin-bottom:8px;
  }

  .plano-info-subtitle{
    font-size:21px;
    line-height:1.02;
    max-width:100%;
    margin-bottom:8px;
  }

  .plano-info-text{
    font-size:15px;
    line-height:1.28;
    max-width:100%;
    margin-bottom:14px;
  }
}

/* ================================
   CELULAR PEQUENO
================================= */

@media (max-width: 480px){

  .planos-section{
    padding:14px 10px 24px;
  }

  .planos-shell{
    padding:16px 12px 20px;
    border-radius:14px;
  }

  .planos-title{
    font-size:23px;
  }

  .planos-subtitle{
    font-size:21px;
  }

  .plano-card-tag{
    font-size:20px;
  }

  .plano-preco-principal{
    font-size:22px;
  }

  .plano-preco-apoio{
    font-size:18px;
  }

  .plano-preco-secundario{
    font-size:21px;
  }

  .plano-desconto{
    font-size:18px;
  }

  .plano-lista{
    font-size:14px;
  }

  .plano-info-title{
    font-size:20px;
  }

  .plano-info-subtitle{
    font-size:19px;
  }

  .plano-info-text{
    font-size:14px;
  }
}

/* =========================================================
   RESPONSIVO HOME (INDEX)
========================================================= */

@media (max-width: 768px){

  /* QUADROS CINZA + PRETO */
  .hero-cards-grid{
    grid-template-columns: 1fr;
  }

  /* QUADROS MÃO + ENTREGA */
  .hero-bottom-grid{
    grid-template-columns: 1fr;
  }

  /* espaçamento melhor no mobile */
  .hero-bottom-grid{
    gap:14px;
  }

  /* imagens mais proporcionais */
  .hero-hand-icon{
    width:120px;
  }

  .hero-icon img{
    width:95px;
  }

  .stats .wrap{
    grid-template-columns:1fr;
    gap:30px;
  }

}
.resumo-compatibilidade-editais {
    margin-top: 18px;
    padding: 14px 16px;
    background: #f7f7f7;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #222;
}
/* =========================================================
   PÁGINA: PRÓXIMO PASSO
========================================================= */

.pagina-proximo-passo{
  background: #dcdcdc;
}

.pp-main{
  width: 100%;
  overflow-x: hidden;
}

.pp-wrap{
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 22px;
  box-sizing: border-box;
}

/* TOPO */
.pp-topo{
  background: #dcdcdc;
  padding: 26px 0 0;
}

.pp-hero{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 28px;
}

.pp-hero-texto h1{
  margin: 0;
  color: #000;
  font-size: 30px;
  line-height: 0.93;
  font-weight: 900;
  letter-spacing: -0.8px;
  max-width: 360px;
}

.pp-hero-video{
  display: flex;
  justify-content: center;
  align-items: center;
}

.pp-video-moldura{
  width: 100%;
  max-width: 390px;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.pp-video-moldura iframe{
  width: 100%;
  height: 100%;
  display: block;
}

/* IMAGEM */
.pp-imagem-reuniao{
  width: 100%;
  line-height: 0;
}

.pp-imagem-reuniao img{
  width: 100%;
  display: block;
  object-fit: cover;
}

/* FAIXA PRETA */
.pp-faixa-preta{
  width: 100%;
  background: #000;
  padding: 16px 28px 18px;
  box-sizing: border-box;
}

.pp-faixa-preta p{
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.pp-faixa-preta span{
  color: #31d266;
  font-weight: 800;
}

/* PROBLEMA E SOLUÇÃO */
.pp-blocos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding: 38px 70px 46px;
  box-sizing: border-box;
}

.pp-bloco h2{
  margin: 0 0 10px;
  color: #000;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.pp-bloco-problema h2{
  text-decoration-color: #ff2b2b;
}

.pp-bloco-solucao h2{
  text-decoration-color: #31d266;
}

.pp-bloco h3{
  margin: 0 0 12px;
  color: #111;
  font-size: 17px;
  line-height: 0.95;
  font-weight: 400;
  max-width: 380px;
}

.pp-bloco h3 strong{
  font-weight: 900;
}

.pp-bloco p{
  margin: 0;
  color: #111;
  font-size: 17px;
  line-height: 1.08;
  font-weight: 400;
  max-width: 470px;
}

.pp-bloco p strong{
  font-weight: 900;
}

.pp-solucao-intro{
  margin-bottom: 8px !important;
  font-size: 17px !important;
  line-height: 1.08 !important;
  font-weight: 400 !important;
}

.pp-lista-solucao{
  max-width: 500px;
}

.pp-lista-solucao div{
  margin: 0;
  color: #111;
  font-size: 17px;
  line-height: 1.08;
  font-weight: 400;
}

.pp-lista-solucao strong{
  font-weight: 900;
}

/* COMO FUNCIONA */
.pp-como-funciona{
  background: #31d266;
  padding: 48px 0 40px;
}

.pp-titulo-secao{
  margin: 0 0 34px;
  color: #000;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.pp-etapas{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pp-linha-etapa{
  display: grid;
  grid-template-columns: 54px 300px 54px 300px;
  justify-content: center;
  align-items: center;
  column-gap: 42px;
  row-gap: 22px;
}

.pp-check{
  width: 50px;
  height: 36px;
  border: 4px solid #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-sizing: border-box;
}

.pp-check.ativo span{
  color: #000;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.pp-card-etapa{
  width: 300px;
  background: #fff;
  box-sizing: border-box;
}

.pp-card-topo{
  background: #000;
  color: #31d266;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  padding: 14px 10px;
  text-transform: uppercase;
}

.pp-card-corpo{
  min-height: 150px;
  padding: 22px 18px;
  box-sizing: border-box;
  color: #111;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-area-botao{
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pp-botao-planos{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 620px;
  max-width: 100%;
  height: 46px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  border-radius: 12px;
  letter-spacing: 0.4px;
}

/* RESPONSIVO */
@media (max-width: 1100px){

  .pp-wrap{
    max-width: 980px;
  }

  .pp-blocos{
    gap: 50px;
    padding: 34px 30px 40px;
  }

  .pp-linha-etapa{
    grid-template-columns: 54px 260px 54px 260px;
    column-gap: 26px;
  }

  .pp-card-etapa{
    width: 260px;
  }

  .pp-card-topo{
    font-size: 16px;
  }

  .pp-card-corpo{
    font-size: 19px;
    min-height: 138px;
  }
}

@media (max-width: 900px){

  .pp-hero{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pp-hero-texto h1{
    max-width: 100%;
    text-align: center;
    font-size: 34px;
    line-height: 1;
  }

  .pp-video-moldura{
    max-width: 100%;
  }

  .pp-faixa-preta p{
    font-size: 22px;
    line-height: 1.05;
  }

  .pp-blocos{
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 30px 20px 36px;
  }

  .pp-bloco h2{
    font-size: 22px;
  }

  .pp-bloco h3{
    font-size: 24px;
    line-height: 1.04;
    max-width: 100%;
  }

  .pp-bloco p,
  .pp-solucao-intro,
  .pp-bloco li{
    font-size: 18px !important;
    line-height: 1.28 !important;
    max-width: 100%;
  }

  .pp-bloco ul{
    max-width: 100%;
  }

  .pp-titulo-secao{
    text-align: center;
    font-size: 40px;
  }

  .pp-linha-etapa{
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pp-card-etapa{
    width: 100%;
    max-width: 420px;
  }

  .pp-card-topo{
    font-size: 18px;
  }

  .pp-card-corpo{
    font-size: 20px;
    line-height: 1.2;
    min-height: auto;
  }
}

@media (max-width: 640px){

  .pp-wrap{
    padding: 0 14px;
  }

  .pp-topo{
    padding-top: 18px;
  }

  .pp-hero-texto h1{
    font-size: 28px;
  }

  .pp-faixa-preta{
    padding: 14px 18px 16px;
  }

  .pp-faixa-preta p{
    font-size: 18px;
    line-height: 1.15;
  }

  .pp-br-desktop{
    display: none;
  }

  .pp-bloco h2{
    font-size: 20px;
  }

  .pp-bloco h3{
    font-size: 22px;
  }

  .pp-bloco p,
  .pp-solucao-intro,
  .pp-bloco li{
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .pp-titulo-secao{
    font-size: 32px;
  }

  .pp-check{
    width: 46px;
    height: 34px;
  }

  .pp-card-topo{
    font-size: 16px;
  }

  .pp-card-corpo{
    font-size: 17px;
    padding: 18px 14px;
  }

  .pp-botao-planos{
    width: 100%;
    height: 44px;
    font-size: 15px;
  }
}