:root {
  --navy: #0a1628;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --gold: #c9a84c;
  --white: #fff;
  --cream: #f8f5f0;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --text-mid: #3f3f46;
  --text-light: #71717a;
  --teal-bg: rgba(13,148,136,.06);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text-mid); background: var(--white); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }

/* ── HERO ── */
.lp-hero {
  background: var(--navy);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(13,148,136,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,148,136,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.lp-hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(13,148,136,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(13,148,136,.4);
  background: rgba(13,148,136,.1);
  border-radius: 2px;
  padding: 6px 16px;
  margin-bottom: 32px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal-light);
  font-family: var(--font-display);
}
.hero-badge span { width: 6px; height: 6px; background: var(--teal-light); border-radius: 50%; }
.lp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.lp-hero h1 em { font-style: italic; color: var(--teal-light); }
.hero-seo-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid rgba(20,184,166,.35);
  background: rgba(20,184,166,.08);
  border-radius: 2px;
  padding: 5px 14px;
  margin-bottom: 20px !important;
  max-width: unset !important;
}

.lp-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: white;
  padding: .85rem 2rem; border-radius: 52px;
  font-family: var(--font-display); font-size: .82rem;
  font-weight:normal; letter-spacing: .06em; 
  text-decoration: none; transition: background .2s;
  
}
.hero-cta:hover { background: #0b8076; }
.hero-cta svg { fill: white; flex-shrink: 0; }

/* ── SECTIONS ── */
.lp-section { padding: 80px 0; }
.lp-section.alt { background: var(--cream); }
.lp-section.dark { background: var(--navy); }
.section-label {
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-label.light { color: var(--teal-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300; color: var(--navy);
  line-height: 1.2; letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--teal); }
.section-title.light em { color: var(--teal-light); }
.section-sub {
  font-size: .95rem; color: var(--text-light);
  line-height: 1.7; max-width: 540px;
}
.section-sub.light { color: rgba(255,255,255,.55); }

/* ── GRID PILARES ── */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 48px;
}
.pilar {
  background: var(--white);
  padding: 2rem;
}
.pilar-icon {
  width: 40px; height: 40px;
  background: var(--teal-bg);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.pilar h3 {
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 500;
  color: var(--navy); margin-bottom: .5rem;
}
.pilar p { font-size: .83rem; color: var(--text-light); line-height: 1.6; }

/* ── PROCESSO ── */
.processo-steps {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 4px; overflow: hidden;
  margin-top: 48px;
}
.processo-step {
  background: var(--white);
  display: grid; grid-template-columns: 80px 1fr;
  align-items: center; gap: 2rem;
  padding: 2rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 200;
  color: var(--teal); opacity: .25;
  line-height: 1; text-align: center;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 500;
  color: var(--navy); margin-bottom: .35rem;
}
.step-content p { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* ── O QUE INCLUI ── */
.inclui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 48px;
}
@media (max-width: 640px) { .inclui-grid { grid-template-columns: 1fr; } }
.inclui-item {
  display: flex; align-items: flex-start; gap: .75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 1.25rem;
}
.inclui-check {
  width: 22px; height: 22px;
  background: rgba(13,148,136,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .1rem;
}
.inclui-item h4 {
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 500;
  color: var(--white); margin-bottom: .25rem;
}
.inclui-item p { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ── PROJETOS ── */
.projetos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; margin-top: 48px;
}
.projeto-card {
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--teal);
  border-radius: 4px;
  padding: 1.5rem;
  background: var(--white);
}
.projeto-url {
  font-size: .78rem; color: var(--teal); font-weight: 500;
  margin-bottom: .5rem; letter-spacing: .02em;
}
.projeto-url a { color: var(--teal); text-decoration: none; }
.projeto-url a:hover { color: var(--teal-light); text-decoration: underline; }
.projeto-desc { font-size: .83rem; color: var(--text-light); line-height: 1.6; }

/* ── ERROS ── */
.erros-list {
  display: flex; flex-direction: column; gap: .75rem;
  margin-top: 48px;
}
.erro-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #dc2626;
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
}
.erro-x { font-size: 1rem; color: #dc2626; flex-shrink: 0; margin-top: .1rem; }
.erro-item h4 { font-family: var(--font-display); font-size: .88rem; font-weight: 600; color: #dc2626; margin-bottom: .25rem; }
.erro-item p { font-size: .83rem; color: var(--text-mid); line-height: 1.6; }

/* ── CTA FINAL ── */
.lp-cta-final {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  position: relative; overflow: hidden;
}

.lp-cta-final .inner { position: relative; z-index: 2; }
.lp-cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--white);
  line-height: 1.2; letter-spacing: -.02em;
  margin-bottom: 16px;
}
.lp-cta-final h2 em { font-style: italic; color: var(--teal-light); }
.lp-cta-final p { font-size: .95rem; color: rgba(255,255,255,.5); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PILARES WRAPPER ── */
.pilares-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}


/* ── DEPOIMENTOS ── */
.depo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 1.5rem;
}
.stars { display:flex; gap:3px; margin-bottom:.75rem; }
.depo-text { font-size:.85rem; color:var(--text-mid); line-height:1.7; margin-bottom:1rem; font-style:italic; }
.depo-author { display:flex; flex-direction:column; gap:2px; }
.depo-author strong { font-size:.82rem; color:var(--navy); font-family:var(--font-display); font-weight:600; }
.depo-author span { font-size:.75rem; color:var(--text-light); }


/* ── FAQ ── */
.faq-list { display:flex; flex-direction:column; gap:0; }
.faq-item { border-bottom:1px solid var(--gray-200); }
.faq-item:first-child { border-top:1px solid var(--gray-200); }
.faq-q {
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  gap:1rem; padding:1.1rem 0;
  font-family:var(--font-display); font-size:.88rem; font-weight:500;
  color:var(--navy); text-align:left; line-height:1.4;
}
.faq-q:hover { color:var(--teal); }
.faq-q.open { color:var(--teal); }
.faq-icon { font-size:1.2rem; color:var(--teal); flex-shrink:0; transition:transform .2s; font-weight:300; }
.faq-q.open .faq-icon { transform:rotate(45deg); }
.faq-a {
  font-size:.85rem; color:var(--text-light); line-height:1.7;
  padding:0 0 1.1rem; display:none;
}
.faq-a.open { display:block; }
@media (max-width:768px) {
  .faq-grid-inner { grid-template-columns:1fr !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

  /* Hero */
  .lp-hero { padding: 80px 0 60px; }
  .lp-hero h1 { font-size: 2.2rem; }
  .lp-hero p { font-size: .95rem; }
  .hero-cta { width: 100%; justify-content: center; font-size: .78rem; padding: .85rem 1.25rem; }
  /* Seções */
  .lp-section { padding: 56px 0; }
  .section-title { font-size: 1.7rem; }

  /* FAQ grid */
  .faq-grid-wrap { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Pilares — layout 2 colunas → 1 coluna */
  .pilares-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .pilares-grid { grid-template-columns: 1fr; margin-top: 32px; }

  /* Processo */
  .processo-step { grid-template-columns: 1fr; gap: .75rem; padding: 1.5rem; }
  .step-num { display: none; }

  /* O que inclui */
  .inclui-grid { grid-template-columns: 1fr; }

  /* Projetos */
  .projetos-grid { grid-template-columns: 1fr; }

  /* Erros */
  .erro-item { padding: 1rem 1.25rem; }

  /* CTA final */
  .lp-cta-final { padding: 64px 0; }
  .lp-cta-final h2 { font-size: 1.8rem; }
  .cta-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .lp-hero { padding: 72px 0 48px; }
  .lp-hero h1 { font-size: 1.9rem; }
  .hero-badge { font-size: .65rem; }
    .section-title { font-size: 1.5rem; }
  .pilar { padding: 1.5rem; }
  .inclui-item { padding: 1rem; }
}





 /* 2. ESTRUTURA DA SEÇÃO (FUNDO AZUL PROFUNDO) */
.hero {
    width: 100%;
    min-height:auto;
    background-color: #061213; /* Tom azul-escuro das imagens enviadas */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 30px;
    position: relative;
    overflow: hidden;
}


/* 3. CONTEÚDO E TIPOGRAFIA */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
}

/* Badge (Tag Superior) */
.badge {
    display: inline-block;
    color: #3de8a7; /* Verde-água característico */
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(61, 232, 167, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Título Principal (Span convertido em bloco) */
.main-title {
    display: block; /* Garante que o span ocupe a linha toda */
    color: #ffffff;
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

/* Subtítulo */
.sub-title {
    color: #f4f7f6;
    font-size: 2.1rem;
    line-height: 1.3;
    margin-bottom: 35px;
}

/* Destaque Verde nos termos chave */
.sub-title .bold-text {
    color: #3de8a7;
    font-weight: 700 !important; /* Destaque conforme solicitado */
    font-style: italic;
}

/* Descrição de Apoio */
.description {
    color: #a0acb5;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 55px auto;
}

/* 4. BOTÃO CTA (WHATSAPP) */
.cta-button {
    background-color: #1da851;
    color: #fff;
    border: none;
    padding: .75rem 1.25rem .75rem 1rem;
    border-radius: 52px;
    font-size: 1rem;     
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
   
   
}

.cta-button i {
    font-size: 1.5rem;
}

.cta-button:hover {    
    background-color: #2bbd88;
}

/* 5. RESPONSIVIDADE (MOBILE) */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }
    .sub-title {
        font-size: 1.6rem;
    }
    .description {
        font-size: 1rem;
        padding: 0 10px;
    }
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 20px;
    }
}


.features-white-section {
    background-color: #ffffff;
    padding: 100px 20px;   
}

.container-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Coluna de Texto */
.text-column {
    flex: 1;
    text-align: left;
}

.top-label {
    color: #3de8a7;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 300 !important;
    display: block;
    margin-bottom: 20px;
}

.main-headline {
    font-size: 2.8rem;
    line-height: 1.1;
    color: #1a2a2d; /* Cinza azulado muito escuro */
    margin-bottom: 25px;
}

.txt-teal-italic {
    color: #3de8a7;
    font-style: italic;
}

.supporting-text {
    color: #5d6d6e;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Coluna de Cards */
.cards-column {
    flex: 1;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.minimal-card {
    background: #fcfdfd;
    border: 1px solid #edf2f2;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.minimal-card:hover {
    border-color: rgba(61, 232, 167, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(61, 232, 167, 0.1);
    color: #3de8a7;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.card-title {
    font-size: 1.2rem;
    color: #1a2a2d;
    font-weight: 300 !important;
    margin-bottom: 10px;
    display: block;
}

.minimal-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 992px) {
    .container-flex {
        flex-direction: column;
        text-align: center;
    }
    .text-column {
        text-align: center;
    }
    .supporting-text {
        margin: 0 auto;
    }
    .main-headline {
        font-size: 2.2rem;
    }
    .feature-grid {
        margin-top: 40px;
    }
}