/* ═══════════════════════════════════════════════════════════
   LP COMPONENTS — para landing pages verticais (trabalhista, etc)
   Reusa variáveis de styles.css (--gold, --black, --light, etc)
   ═══════════════════════════════════════════════════════════ */

/* ─── Container padrão das seções ───────────────── */
.lp-section {
  padding: 6rem 6vw;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-section-alt { background: var(--black2); }

.lp-section-eyebrow {
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.lp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 500;
  color: var(--light);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.lp-section-title em {
  font-style: italic;
  color: var(--gold);
}
.lp-section-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}
.lp-section-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

/* ─── HERO da LP ───────────────────────────────── */
.lp-hero {
  padding: 8rem 6vw 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--border);
  padding: 0.7rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}
.lp-tags-row .lp-tag { margin-bottom: 0; }
.lp-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.lp-tag-sep {
  color: var(--muted);
  margin: 0 0.4rem;
}
.lp-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6.5vw, 4.2rem);
  font-weight: 600;
  color: var(--light);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.lp-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.lp-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 620px;
  margin: 1.8rem 0 2.5rem;
}
.lp-hero-sub strong {
  color: var(--light);
  font-weight: 500;
}
.lp-hero-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 1.4rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.06);
}
.lp-hero-note strong {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── Botão CTA dourado grande (WhatsApp) ──────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 2.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.4s, color 0.4s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.lp-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}
.lp-btn-block {
  display: flex;
  width: 100%;
  max-width: 520px;
}
.lp-btn-dark {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}
.lp-btn-dark:hover {
  background: var(--black2);
  color: var(--gold-lt);
}
.lp-btn-outline {
  background: transparent;
  color: var(--light);
  border-color: var(--border);
}
.lp-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.lp-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ─── Stats (3 colunas) ────────────────────────── */
.lp-hero-divider {
  border: 0;
  height: 1px;
  background: var(--gold);
  margin: 3rem 0 2.5rem;
  max-width: 720px;
}
.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 720px;
}
.lp-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.lp-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Feature cards (diferenciais 01-06) ────────── */
.lp-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lp-feature-card {
  position: relative;
  padding: 2.5rem 2.2rem;
  border: 1px solid var(--border);
  border-bottom: 0;
  background: var(--card-bg);
  overflow: hidden;
}
.lp-feature-card:last-child { border-bottom: 1px solid var(--border); }
.lp-feature-card:nth-child(even) { background: var(--black2); }
.lp-feature-num {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 500;
  color: var(--light);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.lp-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.lp-feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--black);
  stroke: var(--black);
}
.lp-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.lp-feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ─── Mitos (lista com check) ──────────────────── */
.lp-myths {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.lp-myth {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}
.lp-myth-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}
.lp-myth-check svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  stroke: var(--gold);
}
.lp-myth-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--light);
  line-height: 1.75;
}
.lp-myth-text strong {
  color: var(--light);
  font-weight: 600;
}

/* ─── Banner CTA dourado ───────────────────────── */
.lp-cta-banner {
  margin: 4rem auto 0;
  max-width: 1200px;
  background: var(--gold);
  color: var(--black);
  padding: 3rem 2rem;
  text-align: center;
}
.lp-cta-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.lp-cta-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--black);
  margin-bottom: 1.8rem;
  opacity: 0.85;
}

/* ─── Quem Somos (2-cols) ──────────────────────── */
.lp-about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.lp-about-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.lp-about-img {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.lp-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
.lp-about-img img[src*="lutero"] {
  object-position: 72% 22%;
}

/* ── Cards de advogados responsáveis (Lutero + Luiza) ── */
.lp-about-team {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-self: center;
}
.lp-team-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 1.6rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: border-color 0.4s, transform 0.3s, box-shadow 0.4s;
}
.lp-team-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.08);
}
.lp-team-photo {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid var(--border);
  overflow: hidden;
  position: relative;
  background: var(--black2);
}
.lp-team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* enquadramento por advogado (mesmas regras do site principal) */
.lp-team-card:nth-child(1) .lp-team-photo img {
  width: 118%; height: 118%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-54%, -50%);
}
.lp-team-card:nth-child(2) .lp-team-photo img {
  object-position: 50% 22%;
}
.lp-team-info { flex: 1; min-width: 0; }
.lp-team-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.lp-team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--light);
  margin: 0 0 0.3rem;
  line-height: 1.2;
}
.lp-team-spec {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--muted);
}

.lp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 2.5rem;
}
.lp-pill {
  border: 1px solid var(--border);
  padding: 0.7rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
}

/* ─── Depoimentos ──────────────────────────────── */
.lp-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--border);
  background: var(--card-bg);
  margin: 0 auto 3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--light);
}
.lp-google-badge .stars {
  color: var(--gold);
  letter-spacing: 0.1em;
}
.lp-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.lp-testimonial {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.lp-testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.lp-testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}
.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.lp-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
}
.lp-testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--light);
}
.lp-testimonial-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: var(--muted);
}

/* ─── Como Funciona (4 steps) ──────────────────── */
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.lp-step {
  background: var(--card-bg);
  padding: 2.5rem 1.8rem;
  text-align: center;
}
.lp-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.lp-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.8rem;
}
.lp-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── FAQ (accordion via <details>) ────────────── */
.lp-faq {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
.lp-faq details {
  border-top: 1px solid var(--border);
  padding: 0;
}
.lp-faq details:last-child {
  border-bottom: 1px solid var(--border);
}
.lp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--light);
  transition: color 0.3s;
}
.lp-faq summary:hover { color: var(--gold); }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  position: relative;
  transition: transform 0.3s, background 0.3s;
}
.lp-faq-icon::before,
.lp-faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%; left: 50%;
  transition: opacity 0.3s, transform 0.3s;
}
.lp-faq-icon::before {
  width: 12px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.lp-faq-icon::after {
  width: 1.5px; height: 12px;
  transform: translate(-50%, -50%);
}
.lp-faq details[open] .lp-faq-icon::after { opacity: 0; }
.lp-faq-answer {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  padding: 0 0 1.8rem;
  max-width: 760px;
}
.lp-faq-disclaimer {
  margin-top: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  opacity: 0.75;
  text-align: center;
}

/* ─── CTA Final ────────────────────────────────── */
.lp-final-cta {
  text-align: center;
  padding: 6rem 6vw;
  max-width: 900px;
  margin: 0 auto;
}
.lp-final-cta .lp-section-title {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 700px;
}
.lp-final-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.lp-final-cta .lp-btn {
  margin-top: 2.5rem;
}

/* ─── LP Footer (4 colunas) ────────────────────── */
.lp-footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding: 4.5rem 6vw 2rem;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.lp-footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.lp-footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 0.2rem;
}
.lp-footer-brand em { font-style: italic; color: var(--gold); }
.lp-footer-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.lp-footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.lp-footer-social {
  display: flex;
  gap: 0.8rem;
}
.lp-footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.lp-footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lp-footer-social svg { width: 18px; height: 18px; }
.lp-footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.lp-footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}
.lp-footer-col a:hover { color: var(--gold); }
.lp-footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.5;
}
.lp-footer-contact-item svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--gold);
  margin-top: 0.15rem;
}
.lp-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.8rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Responsive ───────────────────────────────── */
@media (min-width: 768px) {
  .lp-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .lp-feature-card {
    border-bottom: 1px solid var(--border);
    border-right: 0;
  }
  .lp-feature-card:nth-child(odd) { border-right: 0; }
  .lp-feature-card:nth-child(2n) { border-left: 0; }
  .lp-testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .lp-section { padding: 4rem 6vw; }
  .lp-hero { padding: 6rem 6vw 3rem; }
  .lp-about-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 600px) {
  .lp-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .lp-steps-grid { grid-template-columns: 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr; }
  .lp-feature-num { font-size: 3rem; }
  .lp-btn { padding: 1rem 1.6rem; font-size: 0.78rem; }
}
