/* ============================================================
   Marcus Mendonça Advocacia — Recuperação de Contas
   Paleta: azul-marinho profundo + dourado (sobriedade jurídica)
   ============================================================ */

:root {
  /* Azul da identidade visual da logo (#002237) */
  --navy-900: #001622;
  --navy-800: #002337;
  --navy-700: #06344d;
  --gold-500: #c9a227;
  --gold-400: #ddb83f;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5b;
  --ink: #1d2733;
  --ink-soft: #47536a;
  --paper: #ffffff;
  --paper-gray: #f4f6fa;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 21, 38, 0.10);
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, Segoe UI, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.container--narrow { width: min(760px, 92%); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, .45);
}

.btn--lg { padding: 20px 44px; font-size: 1.125rem; }

.btn__icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(201, 162, 39, .18), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
  padding: 72px 0 88px;
  text-align: center;
}

.hero__logo {
  width: min(300px, 64%);
  margin: 0 auto 44px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.2;
  max-width: 820px;
  margin-inline: auto;
}

.hero__title strong { color: var(--gold-400); }

.hero__subtitle {
  max-width: 680px;
  margin: 24px auto 36px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, .85);
}

.hero__platforms {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}

.hero__platforms li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .04);
}

.hero__platforms svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Seções ---------- */
.section { padding: 80px 0; }

.section--gray { background: var(--paper-gray); }

.section--dark {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.25;
}

.section__title--left { text-align: left; }

.section--dark .section__title em { color: var(--gold-400); font-style: normal; }

.section__highlight {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 1.2rem;
  padding: 24px 28px;
  border-left: 4px solid var(--gold-500);
  background: rgba(255, 255, 255, .06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.section__cta { text-align: center; margin-top: 44px; }

.cta-note {
  margin-top: 14px;
  font-size: .85rem;
  text-align: center;
  opacity: .65;
}

/* ---------- Cards ---------- */
.cards { display: grid; gap: 24px; }

.cards--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.card__icon { font-size: 2rem; margin-bottom: 14px; }

.card h3 { margin-bottom: 10px; font-size: 1.15rem; }

.card p, .card li { color: var(--ink-soft); font-size: .98rem; }

.card--list ul { padding-left: 20px; display: grid; gap: 8px; margin-top: 12px; }

/* ---------- Passo a passo ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  background: var(--paper-gray);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 8px; font-size: 1.1rem; }

.step p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Sobre ---------- */
.about {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.about__photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.about__photo--placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__photo--placeholder::after {
  content: "Foto do advogado";
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
}

.about__name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--navy-800);
  margin-bottom: 16px;
}

.about__text p { margin-bottom: 16px; color: var(--ink-soft); }

.about__badges {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 52px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold-500);
  transition: transform .2s ease;
}

.faq[open] summary::after { content: "–"; }

.faq p { padding: 0 24px 20px; color: var(--ink-soft); }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }

.cta-final h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  margin-bottom: 16px;
}

.cta-final p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* ---------- Rodapé ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .7);
  text-align: center;
  padding: 48px 0;
  font-size: .9rem;
}

.footer__logo {
  width: 200px;
  margin: 0 auto 16px;
}

.footer__legal {
  max-width: 640px;
  margin: 16px auto;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

.footer__copy { margin-top: 8px; font-size: .8rem; }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .5);
  z-index: 50;
  transition: transform .15s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg { width: 32px; height: 32px; }

/* ---------- Responsivo ---------- */
@media (max-width: 820px) {
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__photo { max-width: 320px; margin-inline: auto; }
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 68px; }
}
