*{margin:0;padding:0;box-sizing:border-box}

:root{
  --pv-brand:#5C2D82;
  --pv-pop:#52B788;
  --pv-darker:#3A1A56;
  --pv-soft:#F5F0FA;
  --pv-foreground:#333333;
  --pv-neutral:#7A7A7A;
  --pv-stroke:#E0D6EB;
}

body{
  font-family:'Mulish',sans-serif;
  color:var(--pv-foreground);
  line-height:1.72;
  font-weight:400;
  background:#fff;
}

img{max-width:100%;height:auto;display:block;border-radius:6px}

a{color:var(--pv-brand);text-decoration:none;transition:color .25s}
a:hover{color:var(--pv-pop)}

h1,h2,h3,h4{font-family:'Manrope',sans-serif;font-weight:700;line-height:1.25}

.pv-wrap{max-width:1140px;margin:0 auto;padding:0 1.5rem}

.pv-disclaimer{
  background:var(--pv-darker);
  color:#fff;
  font-size:.78rem;
  padding:8px 0;
  text-align:center;
  line-height:1.5;
}
.pv-disclaimer-icon{margin-right:6px;font-size:.9rem}

.pv-header{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  height:60px;
  display:flex;
  align-items:center;
  border-bottom:1px solid var(--pv-stroke);
  transition:box-shadow .3s;
}
.pv-header.scrolled{box-shadow:0 2px 12px rgba(0,0,0,.08)}

.pv-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}

.pv-logo{
  font-family:'Manrope',sans-serif;
  font-weight:900;
  font-size:1.15rem;
  color:var(--pv-brand);
  letter-spacing:-.3px;
}
.pv-logo span{color:var(--pv-pop);font-weight:700}

.pv-nav{display:flex;gap:24px;align-items:center}
.pv-nav-link{
  font-size:.88rem;
  font-weight:500;
  color:var(--pv-foreground);
  transition:color .2s;
}
.pv-nav-link:hover{color:var(--pv-brand)}

.pv-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:4px;
}
.pv-burger span{
  width:24px;
  height:2px;
  background:var(--pv-foreground);
  border-radius:2px;
  transition:transform .3s,opacity .3s;
}
.pv-burger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.pv-burger.active span:nth-child(2){opacity:0}
.pv-burger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

.pv-hero{
  background:linear-gradient(135deg,var(--pv-brand) 0%,var(--pv-darker) 100%);
  color:#fff;
  padding:90px 0 80px;
  text-align:center;
}
.pv-hero-inner{max-width:720px;margin:0 auto}
.pv-hero-title{font-size:2.3rem;font-weight:900;margin-bottom:18px;letter-spacing:-.5px}
.pv-hero-sub{font-size:1.05rem;font-weight:300;opacity:.9;margin-bottom:30px;line-height:1.6}
.pv-hero-cta{
  display:inline-block;
  background:var(--pv-pop);
  color:#fff;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:.95rem;
  padding:13px 28px;
  border-radius:20px;
  transition:background .3s,transform .2s;
}
.pv-hero-cta:hover{background:#3fa876;color:#fff;transform:translateY(-2px)}

.pv-section-title{
  font-size:1.75rem;
  margin-bottom:32px;
  color:var(--pv-darker);
  font-weight:700;
}

.pv-blog{padding:65px 0}

.pv-blog-card{
  display:flex;
  gap:28px;
  margin-bottom:36px;
  border:1px solid var(--pv-stroke);
  border-radius:8px;
  overflow:hidden;
  background:#fff;
  transition:box-shadow .3s;
}
.pv-blog-card:hover{box-shadow:0 4px 20px rgba(92,45,130,.1)}

.pv-blog-thumb{flex:0 0 320px}
.pv-blog-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
}

.pv-blog-body{
  padding:24px 28px 24px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.pv-blog-date{
  font-size:.78rem;
  color:var(--pv-neutral);
  margin-bottom:8px;
  font-weight:500;
}

.pv-blog-heading{
  font-size:1.2rem;
  font-weight:700;
  color:var(--pv-foreground);
  margin-bottom:10px;
  line-height:1.35;
}

.pv-blog-excerpt{
  font-size:.92rem;
  color:var(--pv-neutral);
  margin-bottom:14px;
  line-height:1.65;
}

.pv-blog-link{
  font-size:.88rem;
  font-weight:500;
  color:var(--pv-brand);
}
.pv-blog-link:hover{color:var(--pv-pop)}

.pv-sobre{padding:65px 0;background:var(--pv-soft)}

.pv-sobre-grid{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:40px;
  align-items:start;
}

.pv-sobre-content p{
  margin-bottom:16px;
  font-size:.95rem;
}

.pv-sobre-sidebar{position:sticky;top:80px}

.pv-sobre-card{
  background:#fff;
  border:1px solid var(--pv-stroke);
  border-radius:8px;
  padding:24px;
}
.pv-sobre-card h3{
  font-size:1rem;
  margin-bottom:16px;
  color:var(--pv-brand);
}
.pv-sobre-card ul{list-style:none}
.pv-sobre-card li{
  font-size:.88rem;
  margin-bottom:10px;
  line-height:1.55;
  color:var(--pv-foreground);
}
.pv-sobre-card li strong{color:var(--pv-darker)}

.pv-faq{padding:65px 0}

.pv-faq-item{
  border:1px solid var(--pv-stroke);
  border-radius:8px;
  margin-bottom:12px;
  overflow:hidden;
  background:#fff;
}

.pv-faq-question{
  padding:16px 20px;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:.95rem;
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--pv-foreground);
  transition:background .2s;
}
.pv-faq-question:hover{background:var(--pv-soft)}
.pv-faq-question::after{
  content:'+';
  font-size:1.3rem;
  font-weight:400;
  color:var(--pv-brand);
  transition:transform .3s;
}
.pv-faq-item[open] .pv-faq-question::after{
  content:'−';
  transform:rotate(180deg);
}
.pv-faq-question::-webkit-details-marker{display:none}

.pv-faq-answer{
  padding:0 20px 18px;
  font-size:.9rem;
  color:var(--pv-neutral);
  line-height:1.7;
}

.pv-contato{padding:65px 0;background:var(--pv-soft)}

.pv-contato-info{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:36px;
}

.pv-contato-card{
  background:#fff;
  border:1px solid var(--pv-stroke);
  border-radius:8px;
  padding:20px;
  text-align:center;
}
.pv-contato-card strong{
  display:block;
  font-family:'Manrope',sans-serif;
  font-size:.9rem;
  color:var(--pv-brand);
  margin-bottom:6px;
}
.pv-contato-card p{font-size:.88rem;color:var(--pv-neutral)}

.pv-form{max-width:680px;margin:0 auto}

.pv-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}

.pv-form-group{margin-bottom:16px}
.pv-form-group label{
  display:block;
  font-size:.85rem;
  font-weight:500;
  margin-bottom:6px;
  color:var(--pv-foreground);
}

.pv-input,.pv-textarea{
  width:100%;
  border:1px solid var(--pv-stroke);
  border-radius:10px;
  padding:11px 15px;
  font-family:'Mulish',sans-serif;
  font-size:.9rem;
  color:var(--pv-foreground);
  background:#fff;
  transition:border-color .2s;
}
.pv-input:focus,.pv-textarea:focus{
  outline:none;
  border-color:var(--pv-brand);
}

.pv-textarea{resize:vertical}

.pv-btn-submit{
  display:block;
  width:100%;
  background:var(--pv-brand);
  color:#fff;
  font-family:'Manrope',sans-serif;
  font-weight:700;
  font-size:.95rem;
  padding:13px 28px;
  border:none;
  border-radius:20px;
  cursor:pointer;
  transition:background .3s;
}
.pv-btn-submit:hover{background:var(--pv-darker)}

.pv-footer{
  background:var(--pv-darker);
  color:#fff;
  padding-top:44px;
  padding-bottom:24px;
}

.pv-footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  margin-bottom:28px;
}

.pv-footer-col h4{
  font-size:.95rem;
  margin-bottom:14px;
  font-weight:700;
}

.pv-footer-col ul{list-style:none}
.pv-footer-col li{margin-bottom:8px}
.pv-footer-col a{color:rgba(255,255,255,.75);font-size:.88rem;transition:color .2s}
.pv-footer-col a:hover{color:var(--pv-pop)}

.pv-footer-cnpj{font-size:.8rem;opacity:.6;margin-top:12px}
.pv-footer-desc{font-size:.78rem;opacity:.5;margin-top:4px}

.pv-footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:16px;
  text-align:center;
  font-size:.8rem;
  opacity:.55;
}

@media(max-width:768px){
  .pv-burger{display:flex}
  .pv-nav{
    display:none;
    position:absolute;
    top:60px;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    padding:20px 1.5rem;
    border-bottom:1px solid var(--pv-stroke);
    box-shadow:0 4px 12px rgba(0,0,0,.06);
  }
  .pv-nav.open{display:flex}

  .pv-hero{padding:60px 0 50px}
  .pv-hero-title{font-size:1.6rem}
  .pv-hero-sub{font-size:.92rem}

  .pv-blog-card{flex-direction:column}
  .pv-blog-thumb{flex:none;height:200px}
  .pv-blog-body{padding:18px 20px}

  .pv-sobre-grid{grid-template-columns:1fr;gap:24px}
  .pv-sobre-sidebar{position:static}

  .pv-contato-info{grid-template-columns:1fr}
  .pv-form-row{grid-template-columns:1fr}

  .pv-footer-grid{grid-template-columns:1fr;gap:24px}
}
