:root{
  --cp-navy:#061b33;
  --cp-navy-2:#082846;
  --cp-bordeaux:#8a0f2d;
  --cp-bordeaux-dark:#6f0b22;
  --cp-green:#22a83f;
  --cp-text:#071b33;
  --cp-muted:#5c6878;
  --cp-border:#dfe5ec;
  --cp-bg:#f7f8fb;
  --cp-white:#ffffff;
}

body{
  background:#fff;
  color:var(--cp-text);
}

.main-content{
  padding-top:40px !important;
}

.cp-home-hero{
    margin-top:-40px;
}

/* HEADER GLOBAL */
.header-cliente-desktop{
  background:var(--cp-navy);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:14px 0;
  position:relative;
  z-index:50;
}

.header-cliente-desktop .container{
  max-width:1180px;
}

.header-cliente-desktop .d-flex{
  min-height:64px;
  gap:28px;
}

.logo-cpratico{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.logo-cpratico img{
  height:120px !important;
  max-height:120px !important;
  width:auto !important;
  max-width:260px !important;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.menu-cliente{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:nowrap;
  margin-left:auto;
}

.menu-cliente a{
  color:#fff;
  font-size:17px;
  font-weight:600;
  text-decoration:none;
  opacity:.92;
  transition:.2s ease;
  white-space:nowrap;
}

.menu-cliente a:hover,
.menu-cliente a.active{
  color:#fff;
  opacity:1;
}

.menu-cliente .sejaparceiro{
  color:#fff;
}

.header-icons{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

.header-icons a,
.cliente-trigger{
  color:#fff;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
}

.carrinho-icone-box{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.carrinho-badge{
  position:absolute;
  top:-10px;
  right:-12px;
  background:var(--cp-bordeaux);
  color:#fff;
  width:18px;
  height:18px;
  border-radius:50%;
  font-size:11px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cliente-dropdown{
  position:relative;
}

.cliente-trigger{
  background:transparent;
  border:0;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
}

.cliente-menu{
  position:absolute;
  right:0;
  top:calc(100% + 14px);
  width:220px;
  background:#fff;
  border:1px solid var(--cp-border);
  border-radius:14px;
  box-shadow:0 16px 40px rgba(0,0,0,.12);
  padding:10px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.2s ease;
  z-index:100;
}

.cliente-dropdown:hover .cliente-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.cliente-menu a{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--cp-text);
  padding:10px 12px;
  border-radius:10px;
  font-size:14px;
}

.cliente-menu a:hover{
  background:var(--cp-bg);
}

/* MOBILE HEADER */
.header-cliente-mobile{
  background:var(--cp-navy);
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-cliente-mobile .logo-mobile img{
  height:80px;
  width:auto;
  max-width:260px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.menu-e-carrinho-mobile{
  margin-top:10px;
}

.menu-toggle{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.header-icons-mobile a{
  color:#fff;
}

.menu-cliente-mobile{
  display:none;
  flex-direction:column;
  gap:4px;
  margin-top:14px;
  padding:14px;
  background:#fff;
  border-radius:16px;
}

.menu-cliente-mobile.open,
.menu-cliente-mobile.show{
  display:flex;
}

.menu-cliente-mobile a{
  color:var(--cp-text);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:12px;
  border-radius:10px;
}

.menu-cliente-mobile a.active,
.menu-cliente-mobile a:hover{
  background:var(--cp-bg);
  color:var(--cp-bordeaux);
}

/* BOTÕES GLOBAIS */
.btn-cp-whatsapp,
.header-whatsapp-btn{
  background:var(--cp-green);
  color:#fff !important;
  border:0;
  border-radius:999px;
  padding:12px 20px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(34,168,63,.28);
}

.btn-cp-primary{
  background:var(--cp-navy-2);
  color:#fff !important;
  border:1px solid var(--cp-navy-2);
  border-radius:10px;
  padding:12px 22px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.btn-cp-outline{
  background:transparent;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.75);
  border-radius:10px;
  padding:12px 22px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

/* FOOTER GLOBAL */
.footer,
.site-footer{
  background:var(--cp-navy) !important;
  color:#fff;
}

.footer a,
.site-footer a{
  color:#fff;
}

.header-icons .icon,
.header-icons .cliente-nome,
.header-icons .chevron,
.header-icons a,
.header-icons i,
.cliente-trigger,
.cliente-trigger *{
  color:#fff !important;
}

/* =========================
   HOME REDESIGN CPRÁTICO
========================= */

.cp-home-hero{
  min-height:620px;
  background:
    linear-gradient(
      90deg,
      rgba(6,27,51,.95) 0%,
      rgba(6,27,51,.82) 38%,
      rgba(6,27,51,.35) 62%,
      rgba(6,27,51,0) 100%
    ),
    url('../images/home-hero-cpratico.png') center center/cover no-repeat;
  background-color:#061b33;
  color:#fff;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background-position:center center;
  background-size:cover;
}

.cp-hero-content{
  position:relative;
  z-index:2;
  max-width:520px;
  padding:70px 0;
  margin-left:0;
}

.cp-home-hero .container{
  max-width:1180px;
  padding-left:24px;
  padding-right:24px;
}

.cp-hero-grid{
  display:grid;
  grid-template-columns:560px 1fr;
  align-items:center;
  min-height:620px;
}

.cp-hero-content{
  max-width:540px;
  padding:70px 0;
  margin-left:0;
}

.cp-hero-badge{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.45);
  border-radius:999px;
  padding:4px 14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
  margin-bottom:18px;
}

.cp-hero-content h1{
  font-size:62px;
  line-height:.98;
  font-weight:900;
  color:#fff;
  margin:0 0 24px;
  letter-spacing:-2px;
  max-width:520px;
}

.cp-hero-content h1 em{
  display:block;
  color:var(--cp-bordeaux);
  font-style:italic;
  font-weight:900;
  letter-spacing:-1px;
}

.cp-hero-content p{
  max-width:500px;
  font-size:21px;
  line-height:1.45;
  color:rgba(255,255,255,.92);
  margin:0 0 32px;
  text-align:justify;
}

.cp-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:34px;
}

.cp-hero-benefits{
  display:flex;
  flex-wrap:wrap;
  gap:34px;
}

.cp-hero-benefits div{
  display:flex;
  align-items:center;
  gap:12px;
}

.cp-hero-benefits i{
  color:#d9a54a;
  font-size:28px;
}

.cp-hero-benefits span{
  color:#fff;
  font-size:14px;
  font-weight:700;
  line-height:1.25;
}

.cp-hero-image{
  display:none;
}

/* Títulos */
.cp-section-heading{
  text-align:center;
  margin-bottom:38px;
}

.cp-section-heading h2{
  color:var(--cp-text);
  font-size:31px;
  font-weight:900;
  margin:0;
}

.cp-section-heading span,
.cp-title-line{
  display:block;
  width:48px;
  height:3px;
  background:var(--cp-bordeaux);
  border-radius:99px;
  margin:14px auto 0;
}

/* Escolha como começar */
.cp-start-section{
  background:#fff;
  padding:48px 0 34px;
}

.cp-start-section .container,
.cp-featured-services .container,
.cp-how-section .container,
.cp-proof-section .container,
.cp-why-section .container,
.cp-final-cta .container{
  max-width:1100px;
}

.cp-start-grid{
  display:grid;
  grid-template-columns:1fr 54px 1fr;
  align-items:center;
  gap:34px;
}

.cp-start-card{
  min-height:220px;
  border:1px solid var(--cp-border);
  border-radius:12px;
  background:#fff;
  padding:48px 32px 28px;
  text-align:center;
  position:relative;
}

.cp-start-card h3{
  font-size:24px;
  font-weight:900;
  color:var(--cp-text);
  margin:0 0 12px;
}

.cp-start-card p{
  color:var(--cp-text);
  font-size:16px;
  line-height:1.45;
  max-width:330px;
  margin:0 auto 24px;
}

.cp-start-card a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:210px;
  border-radius:6px;
  padding:13px 20px;
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.cp-start-whatsapp{
  border-color:rgba(34,168,63,.35);
}

.cp-start-whatsapp a,
.cp-start-whatsapp .cp-start-icon{
  background:var(--cp-green);
}

.cp-start-site a,
.cp-start-site .cp-start-icon{
  background:var(--cp-navy-2);
}

.cp-start-icon{
  width:68px;
  height:68px;
  border-radius:50%;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  position:absolute;
  top:-34px;
  left:50%;
  transform:translateX(-50%);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.cp-start-or{
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--cp-navy);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:14px;
}

/* Serviços principais */
.cp-featured-services{
  background:#fff;
  padding:34px 0 42px;
}

.cp-featured-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:34px;
}

.cp-featured-card{
  min-height:240px;
  border:1px solid var(--cp-border);
  border-radius:12px;
  background:#fff;
  padding:30px 24px;
  color:var(--cp-text);
  text-decoration:none;
  transition:.2s ease;
}

.cp-featured-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(6,27,51,.1);
}

.cp-featured-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  background:var(--cp-bordeaux);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:24px;
}

.cp-featured-card h3{
  font-size:21px;
  font-weight:900;
  margin:0 0 12px;
}

.cp-featured-card p{
  font-size:15px;
  line-height:1.45;
  color:var(--cp-text);
  margin:0 0 28px;
}

.cp-featured-card strong{
  color:var(--cp-bordeaux);
  font-size:14px;
}

.cp-view-all{
  text-align:center;
  margin-top:22px;
}

.cp-view-all a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:320px;
  border:1px solid var(--cp-navy);
  color:var(--cp-navy);
  border-radius:6px;
  padding:11px 24px;
  text-decoration:none;
  font-weight:800;
}

/* Como funciona */
.cp-how-section{
  background:#f4f6fa;
  padding:42px 0 54px;
}

.cp-how-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  position:relative;
  gap:20px;
}

.cp-how-grid::before{
  content:"";
  position:absolute;
  top:64px;
  left:12%;
  right:12%;
  border-top:1px dashed #b8c2d1;
}

.cp-how-item{
  text-align:center;
  position:relative;
  z-index:2;
}

.cp-how-number{
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--cp-bordeaux);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  margin:0 auto -8px;
  position:relative;
  z-index:3;
}

.cp-how-icon{
  width:86px;
  height:86px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--cp-border);
  color:var(--cp-navy);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  margin:0 auto 16px;
}

.cp-how-icon.whatsapp{
  color:var(--cp-green);
}

.cp-how-item h3{
  font-size:16px;
  font-weight:900;
  margin:0 0 8px;
}

.cp-how-item p{
  font-size:14px;
  color:var(--cp-text);
  margin:0;
}

/* Prova social e vídeo */
.cp-proof-section{
  background:#fff;
  padding:38px 0 24px;
}

.cp-proof-grid{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:34px;
  align-items:stretch;
}

.cp-testimonial-card,
.cp-video-card{
  border:1px solid var(--cp-border);
  border-radius:12px;
  background:#fff;
  padding:28px 32px;
}

.cp-testimonial-card h3,
.cp-video-card h3{
  font-size:22px;
  font-weight:900;
  margin:0;
}

.cp-testimonial-card .cp-title-line{
  margin:12px 0 20px;
}

.cp-quote{
  font-size:76px;
  line-height:.7;
  color:#e1e5ec;
  font-weight:900;
}

.cp-testimonial-card p{
  font-size:17px;
  line-height:1.55;
  color:var(--cp-text);
  margin:0 0 22px;
}

.cp-testimonial-user{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.cp-testimonial-user img{
  width:58px;
  height:58px;
  border-radius:50%;
  object-fit:cover;
  background:#e8edf4;
}

.cp-stars{
  color:#f6b700;
  font-size:15px;
}

.cp-stars span{
  color:var(--cp-text);
  margin-left:8px;
}

.cp-testimonial-card a{
  color:var(--cp-bordeaux);
  text-decoration:none;
  font-weight:800;
}

.cp-video-card{
  background:var(--cp-navy);
  color:#fff;
}

.cp-video-card h3{
  color:#fff;
  margin-bottom:10px;
}

.cp-video-card p{
  color:rgba(255,255,255,.9);
  font-size:15px;
  margin-bottom:18px;
}

.cp-video-box{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  border-radius:10px;
  overflow:hidden;
  background:#000;
}

.cp-video-box iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

/* Por que escolher */
.cp-why-section{
  background:#fff;
  padding:24px 0 34px;
}

.cp-why-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
}

.cp-why-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.cp-why-item i{
  color:var(--cp-bordeaux);
  font-size:36px;
  width:42px;
  flex-shrink:0;
}

.cp-why-item h3{
  font-size:15px;
  font-weight:900;
  margin:0 0 6px;
}

.cp-why-item p{
  margin:0;
  color:var(--cp-text);
  font-size:14px;
  line-height:1.4;
}

/* CTA final */
.cp-final-cta{
  background:#fff;
  padding:10px 0 32px;
}

.cp-final-cta-box{
  background:linear-gradient(90deg, var(--cp-bordeaux-dark), var(--cp-bordeaux));
  color:#fff;
  border-radius:14px;
  padding:28px 34px;
  display:flex;
  align-items:center;
  gap:24px;
}

.cp-final-icon{
  width:68px;
  height:68px;
  border:2px solid rgba(255,255,255,.8);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  flex-shrink:0;
}

.cp-final-text{
  flex:1;
}

.cp-final-text h2{
  color:#fff;
  font-size:28px;
  font-weight:900;
  margin:0 0 6px;
}

.cp-final-text p{
  color:#fff;
  margin:0;
  font-size:17px;
}

.cp-final-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.cp-final-site-btn{
  background:#fff;
  color:var(--cp-navy) !important;
  border-radius:8px;
  padding:13px 24px;
  text-decoration:none;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Responsivo */
@media(max-width:991.98px){
  .cp-home-hero{
    min-height:auto;
    background:
      linear-gradient(90deg, rgba(6,27,51,.96), rgba(6,27,51,.82)),
      url('../images/home-hero-cpratico.png') center/cover no-repeat;
  }

  .cp-hero-grid{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .cp-hero-content{
    padding:64px 0;
    max-width:560px;
  }

  .cp-hero-content h1{
    font-size:48px;
    max-width:500px;
  }

  .cp-start-grid,
  .cp-proof-grid{
    grid-template-columns:1fr;
  }

  .cp-start-or{
    margin:0 auto;
  }

  .cp-featured-grid,
  .cp-how-grid,
  .cp-why-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .cp-how-grid::before{
    display:none;
  }

  .cp-final-cta-box{
    flex-direction:column;
    text-align:center;
  }

  .header-cliente-desktop .d-flex{
    gap:18px;
  }

  .menu-cliente{
    gap:16px;
  }

  .menu-cliente a{
    font-size:12px;
  }

  .logo-cpratico img{
    max-width:150px !important;
  }
}

/* =========================
   AJUSTES FINAIS HERO
========================= */

.cp-home-hero{
  background-position:center right -80px;
}

.cp-hero-grid{
  grid-template-columns:520px 1fr;
}

.cp-hero-content{
  max-width:520px;
  padding:70px 0;
  margin-left:0;
  justify-self:start;
}

.cp-hero-content h1{
  text-align:left;
  max-width:520px;
  margin:0 0 20px;
  line-height:.92;
  letter-spacing:-3px;
}

.cp-hero-content p{
  text-align:justify;
  margin-left:0;
}

.cp-hero-actions{
  justify-content:flex-start;
}

.cp-hero-benefits{
  justify-content:flex-start;
}

/* MENU PERFIL */
.cliente-menu a,
.cliente-menu a i,
.cliente-menu a span{
  color:var(--cp-text) !important;
}



/* RESPONSIVO */
@media(max-width:991.98px){

  .cp-home-hero{
    background-position:center;
  }

  .cp-hero-grid{
    grid-template-columns:1fr;
  }

  .cp-hero-content{
    max-width:560px;
  }

  .cp-hero-content h1{
    max-width:100%;
    letter-spacing:-2px;
  }
}

@media(max-width:767.98px){
  .main-content{
    overflow-x:hidden;
  }
}

@media(max-width:575.98px){
  .cp-hero-content h1{
    font-size:40px;
    max-width:100%;
  }

  .cp-hero-content p{
    font-size:17px;
    max-width:100%;
  }

  .cp-hero-actions,
  .cp-final-actions{
    flex-direction:column;
  }

  .cp-hero-actions a,
  .cp-final-actions a,
  .cp-view-all a,
  .cp-start-card a{
    width:100%;
  }

  .cp-hero-benefits{
    gap:18px;
  }

  .cp-featured-grid,
  .cp-how-grid,
  .cp-why-grid{
    grid-template-columns:1fr;
  }

  .cp-start-card{
    padding:48px 20px 24px;
  }

  .cp-section-heading h2{
    font-size:25px;
  }
}