/* ============================================================
   BJ ADVOCACIA — Landing Pages CSS
   ============================================================ */

/* Herda todo o styles.css — este arquivo adiciona estilos LP */

/* LP Hero (sem nav completo) */
.lp-header {
  background: var(--verde);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.lp-header .logo-mark { background: rgba(255,255,255,.12); color: var(--dourado); }
.lp-header .logo-text strong { color: var(--branco); }
.lp-header .logo-text span { color: rgba(255,255,255,.6); }

.lp-hero {
  background: var(--verde);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.lp-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.lp-urgency {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(220,38,38,.18);
  border: 1px solid rgba(220,38,38,.4);
  color: #FCA5A5;
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.lp-urgency .dot-red {
  width: 7px; height: 7px;
  background: #EF4444;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.2; } }

.lp-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  color: var(--branco);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.lp-hero h1 em { font-style:normal; color: var(--dourado); }
.lp-hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 60ch;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}
.lp-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.lp-hero-cta .btn { font-size: 1.05rem; padding: 1rem 2.5rem; }
.lp-hero-cta .micro {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.lp-hero-cta .micro::before { content: '🔒'; font-size: .75rem; }

/* Prova Social */
.lp-social-proof {
  background: var(--preto);
  padding: 1.5rem 0;
}
.sp-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.sp-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.sp-item strong { color: var(--dourado); font-size: 1rem; }

/* LP Sections */
.lp-section {
  padding: 5rem 0;
}
.lp-section.bg-gray { background: var(--cinza-cl); }
.lp-section.bg-dark { background: var(--cinza-esc); }

/* Problema / Dor */
.problema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.problema-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--branco);
  border: 1px solid rgba(220,38,38,.15);
  border-left: 3px solid #EF4444;
  border-radius: var(--radius);
  padding: 1.25rem;
}
.problema-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.problema-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; }
.problema-item p { font-size: .87rem; color: var(--cinza-md); line-height: 1.6; }

/* Solução check */
.solucao-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.solucao-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(26,60,46,.06);
  border: 1px solid rgba(26,60,46,.1);
}
.sol-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--verde);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.solucao-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }
.solucao-item p { font-size: .87rem; color: var(--cinza-md); line-height: 1.6; }

/* CTA Banner */
.lp-cta-banner {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-md) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-banner::before {
  content: '⚖';
  position: absolute;
  font-size: 20rem;
  opacity: .04;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.lp-cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--branco);
  margin-bottom: 1rem;
}
.lp-cta-banner h2 em { font-style: normal; color: var(--dourado); }
.lp-cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 54ch;
  margin-inline: auto;
}
.lp-cta-banner .btn { font-size: 1.1rem; padding: 1.1rem 2.75rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.faq-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--branco);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--preto);
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--trans);
}
.faq-question:hover { background: rgba(26,60,46,.04); }
.faq-question.active { color: var(--verde); background: rgba(26,60,46,.05); }
.faq-toggle { font-size: 1.1rem; line-height: 1; transition: transform .3s; flex-shrink: 0; }
.faq-question.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--cinza-md);
  line-height: 1.75;
}

/* Advogado destaque LP */
.lp-advogado {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--sombra);
  border: 1px solid rgba(0,0,0,.05);
  max-width: 900px;
  margin: 2.5rem auto 0;
}
.lp-adv-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde), var(--verde-md));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
  overflow: hidden;
}
.lp-adv-photo img { width: 100%; height: 100%; object-fit: cover; }
.lp-adv-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .2rem; }
.lp-adv-body .oab { font-size: .75rem; font-weight: 700; color: var(--dourado); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; }
.lp-adv-body p { font-size: .9rem; color: var(--cinza-md); line-height: 1.7; margin-bottom: 1rem; }

/* Depoimentos */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.dep-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--sombra);
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
}
.dep-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .15em; }
.dep-card p { font-size: .9rem; color: var(--cinza-md); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.dep-author { display: flex; align-items: center; gap: .75rem; }
.dep-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde), var(--verde-md));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
}
.dep-author strong { display: block; font-size: .88rem; font-weight: 700; }
.dep-author span { font-size: .78rem; color: var(--cinza-md); }

/* LP Footer (simples) */
.lp-footer {
  background: var(--preto);
  padding: 2rem 0;
  text-align: center;
}
.lp-footer p { color: rgba(255,255,255,.4); font-size: .8rem; line-height: 1.75; }
.lp-footer .oab-line { color: rgba(255,255,255,.25); font-size: .72rem; margin-top: .5rem; }

/* Premium specific */
.premium-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--dourado-cl);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.premium-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pf-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.pf-card .icon { font-size: 1.5rem; margin-bottom: 1rem; color: var(--dourado); }
.sp-card-icon i { font-size: 1.3rem; color: var(--verde); }
.problema-item-icon i { font-size: 1.2rem; color: var(--cinza-md); }
.pf-card h4 { font-size: 1rem; font-weight: 700; color: var(--branco); margin-bottom: .5rem; }
.pf-card p { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* Responsive LP */
@media (max-width: 768px) {
  .problema-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .premium-features { grid-template-columns: 1fr; }
  .lp-advogado { flex-direction: column; text-align: center; }
  .sp-inner { gap: 1.5rem; justify-content: flex-start; }
  .lp-hero h1 { font-size: 1.8rem; }
}
