:root{
  --navy: #003366;
  --blue: #4A90E2;
  --mint: #A8D5BA;
  --white: #ffffff;

  --background-color: linear-gradient(to right, #f5faff, #e7f0f9);

  --text: rgba(0,0,0,.80);
  --muted: rgba(0,0,0,.62);
  --shadow: 0 22px 70px rgba(0,0,0,.14);
}

.cb{
  background: var(--background-color);
  min-height: 100vh;
  padding-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
}

.cb-wrap{
  max-width: 980px;
}

/* HERO */
.cb-hero{
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* glow azul (canto superior direito) */
.cb-hero::before{
  content:"";
  position:absolute;
  inset:-120px -180px auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(74,144,226,.22), rgba(74,144,226,0) 60%);
  filter: blur(10px);
  pointer-events:none;
  z-index: 0;
}

/* glow menta central inferior (controlado pra não “vazar”) */
.cb-hero::after{
  content:"";
  position:absolute;
  left: 50%;
  bottom: -140px;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(168,213,186,.14), rgba(168,213,186,0) 62%);
  filter: blur(14px);
  pointer-events:none;
  z-index: 0;
}

/* Texto do hero sempre acima do glow */
.cb-hero .container,
.cb-hero .cb-wrap{
  position: relative;
  z-index: 1;
}

.cb-h1{
  font-weight: 900;
  line-height: 1.10;
  font-size: clamp(28px, 3.4vw, 52px);
  color: var(--navy);
  margin-bottom: 12px;
}

.cb-h1--simple{
  text-align: center;
}

.cb-h1--accent{
  color: var(--blue);
}

.cb-lead{
  font-size: 1.10rem;
  max-width: 70ch;
  color: rgba(0,0,0,.73);
  margin-bottom: 18px;
}

.cb-lead--simple{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 78ch;
}

.cb-cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}

.cb-cta--center{
  justify-content: center;
}

.cb-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
  will-change: transform;
}

.cb-btn:active{ transform: translateY(1px); }

.cb-btn--primary{
  background: linear-gradient(135deg, var(--navy), #0b4a8c);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
}

.cb-btn--primary:hover{ opacity: .95; }

.cb-btn--secondary{
  background: rgba(255,255,255,.88);
  color: var(--navy);
  border: 2px solid rgba(0,51,102,.18);
}

.cb-btn--secondary:hover{
  box-shadow: 0 18px 46px rgba(0,0,0,.10);
}

.cb-btn--wide{ width: 100%; }

.cb-promise{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0,51,102,.14);
   box-shadow: none; /* REMOVE */
  margin-top: 10px;
}

.cb-promise--simple{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cb-promise__icon{
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: rgba(74,144,226,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--navy);
  font-size: 1.25rem;
}

.cb-promise__text strong{
  display:block;
  color: var(--navy);
  font-weight: 900;
}

.cb-promise__text span{
  display:block;
  color: var(--muted);
  font-size: .95rem;
}

/* SEÇÕES */
.cb-section{
  padding: 52px 0;
}

.cb-h2{
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 8px;
}

.cb-sub{
  color: rgba(0,0,0,.72);
  margin: 0 0 14px;
}

/* Timeline */
.cb-timeline{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}

.cb-step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
}

.cb-step__badge{
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #2a6fb8);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.cb-step__box{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 26px;
  padding: 16px;
  box-shadow: 0 18px 58px rgba(0,0,0,.10);
}

.cb-step__box h3{
  margin: 0 0 6px;
  color: var(--navy);
  font-weight: 900;
}

.cb-step__box p{
  margin: 0;
  color: rgba(0,0,0,.74);
}

.cb-step--hot .cb-step__badge{
  background: linear-gradient(135deg, #ffb703, #fb8500);
}

.cb-step--hot .cb-step__box{
  border: 2px solid rgba(255, 170, 0, .32);
  background: linear-gradient(180deg, rgba(255, 214, 102, .22), rgba(255,255,255,.95));
}

.cb-muted{
  display:block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .95rem;
}

/* FAQ */
#duvidas{
  background: transparent !important;
}

.cb-faq{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.cb-faq__box{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 26px;
  padding: 16px 18px;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}

.cb-faq__q{
  margin: 0 0 6px;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.05rem;
}

.cb-faq__a{
  margin: 0;
  color: rgba(0,0,0,.74);
  line-height: 1.55;
}

/* FINAL */
.cb-final{
  padding: 56px 0 0;
}

.cb-final__box{
  background: linear-gradient(135deg, var(--navy), #0b4a8c);
  border-radius: 30px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
}

.cb-final__h2{
  color: var(--white);
  font-weight: 900;
  margin-bottom: 8px;
}

.cb-final__p{
  color: rgba(255,255,255,.86);
  margin-bottom: 14px;
}

.cb-miniNote{
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

/* ✅ RESPONSIVO: telas menores (<= 728px) */
@media (max-width: 728px){
  .cb-wrap{
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .cb-hero{
    padding: 48px 0 28px;
  }

  .cb-h1--simple,
  .cb-lead--simple{
    text-align: left;
  }

  .cb-cta{
    flex-direction: column;
    align-items: stretch;
  }

  .cb-btn{
    width: 100%;
  }

  .cb-promise{
    grid-template-columns: 40px 1fr;
  }

  .cb-promise__icon{
    width: 40px;
    height: 40px;
    border-radius: 16px;
  }

  .cb-step{
    grid-template-columns: 40px 1fr;
  }

  .cb-step__badge{
    width: 40px;
    height: 40px;
    border-radius: 16px;
  }
}


/* Banner principal do HERO */
.cb-hero-banner{
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: 32px;

  background: linear-gradient(
    180deg,
    #ffffff,
    #f7fbff
  );

  border: 1px solid rgba(0,51,102,.15);
  box-shadow: none; /* REMOVE SOMBRA */

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}


/* Título centralizado dentro do banner */
.cb-hero-banner .cb-h1{
  text-align: center;
  margin: 0;
}

/* CTA centralizado */
.cb-hero-banner .cb-cta{
  justify-content: center;
}

/* Card das 24h integrado ao banner */
.cb-hero-banner .cb-promise{
  margin-top: 4px;
}

/* Responsivo – telas menores */
@media (max-width: 728px){
  .cb-hero-banner{
    padding: 26px 18px;
    border-radius: 26px;
  }

  .cb-hero-banner .cb-h1{
    text-align: left;
  }

  .cb-hero-banner .cb-cta{
    flex-direction: column;
    width: 100%;
  }

  .cb-hero-banner .cb-btn{
    width: 100%;
  }
}
