/* demo-site-advocacia.css — clonado do mockup de referência "Legal Partners" fornecido pelo usuário
   Conceito: escritório corporativo tradicional — navy profundo + dourado, hero fotográfico full-bleed,
   grid de áreas de atuação com ícone, seção "Our Firm" com estatísticas + foto, grid de advogados,
   depoimentos de clientes, footer navy. */

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

:root {
  --navy: #16233f;
  --navy-deep: #0e1830;
  --gold: #c9a227;
  --gold-deep: #a8841c;
  --ink: #1c2433;
  --muted: #5c6270;
  --paper: #ffffff;
  --paper-alt: #f3f4f6;
  --line: #e3e5ea;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.icon-svg { display: inline-block; vertical-align: middle; fill: none; }

/* WhatsApp FAB */
.wpp-fab { position: fixed; bottom: 26px; right: 26px; z-index: 9999; width: 56px; height: 56px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(201,162,39,.4); }
.wpp-fab svg { fill: var(--navy-deep); width: 26px; height: 26px; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); letter-spacing: -.2px; }
.logo span { color: var(--gold-deep); }
.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a { font-size: .84rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .04em; }
.main-nav a:hover { color: var(--gold-deep); }
.badge-ia { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; color: var(--navy); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .75rem; text-transform: uppercase; letter-spacing: .04em; }
.badge-ia::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #2f9e5c; }
.btn-header { font-size: .78rem; font-weight: 700; color: var(--navy); background: var(--gold); padding: .7rem 1.4rem; text-transform: uppercase; letter-spacing: .04em; }
.btn-header:hover { background: var(--gold-deep); color: #fff; }

/* HERO — foto full-bleed com overlay à esquerda */
.hero-adv { position: relative; min-height: 78vh; display: flex; align-items: center; background-size: cover; background-position: center; }
.hero-adv::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,24,48,.92) 0%, rgba(14,24,48,.72) 40%, rgba(14,24,48,.25) 75%, rgba(14,24,48,.1) 100%); }
.hero-adv .container { position: relative; z-index: 2; }
.hero-adv .hero-inner { max-width: 620px; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.hero-adv h1 { font-family: var(--serif); font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 700; line-height: 1.14; color: #fff; margin-bottom: 1.2rem; text-transform: uppercase; }
.hero-adv p { font-size: 1.05rem; color: rgba(255,255,255,.82); max-width: 480px; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 700; padding: .9rem 1.8rem; border: 1.5px solid transparent; cursor: pointer; transition: all .2s ease; text-transform: uppercase; letter-spacing: .05em; }
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn-ghost-white { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* SECTION BASE */
.section { padding: 5rem 0; }
.section--alt { background: var(--paper-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.75rem; }
.section-head .eyebrow { color: var(--gold-deep); }
.section-head h2 { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); line-height: 1.24; text-transform: uppercase; }

/* PRACTICE AREAS — grid 6 cards com ícone + link Explore */
.practice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.practice-card { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 2rem 1.6rem; text-align: center; transition: box-shadow .2s ease, transform .2s ease; }
.practice-card:hover { box-shadow: 0 12px 30px rgba(22,35,63,.1); transform: translateY(-3px); }
.practice-card .icon { width: 56px; height: 56px; border-radius: 50%; background: var(--paper-alt); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; color: var(--navy); }
.practice-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.practice-card p { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.practice-card .explore { font-size: .76rem; font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .06em; }

/* OUR FIRM — estatísticas + foto */
.firm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.firm-stats { display: flex; gap: 2.2rem; margin-top: 1.6rem; }
.firm-stats .stat strong { display: block; font-family: var(--serif); font-size: 2.1rem; color: var(--gold-deep); }
.firm-stats .stat span { font-size: .82rem; color: var(--muted); }
.firm-photo { border-radius: 2px; overflow: hidden; box-shadow: 0 20px 50px rgba(22,35,63,.18); }
.firm-photo img { width: 100%; height: 320px; object-fit: cover; }

/* MEET OUR ATTORNEYS */
.attorneys-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.6rem; }
.attorney-card { text-align: center; }
.attorney-card .photo { border-radius: 4px; overflow: hidden; margin-bottom: 1.1rem; }
.attorney-card .photo img { width: 100%; height: 260px; object-fit: cover; }
.attorney-card h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.attorney-card span { display: block; font-size: .82rem; color: var(--muted); }
.attorney-card .role { color: var(--gold-deep); font-weight: 600; margin-bottom: .15rem; }

/* CLIENT TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; }
.testimonial-adv { background: #fff; border: 1px solid var(--line); padding: 1.9rem; text-align: center; }
.testimonial-adv .quote-mark { font-family: var(--serif); font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: .8rem; }
.testimonial-adv p { font-size: .92rem; color: var(--ink); font-style: italic; margin-bottom: 1.3rem; }
.testimonial-adv .client { font-size: .78rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; }

/* FOOTER */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 3.5rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; align-items: start; }
.footer-col .logo { color: #fff; }
.footer-col .logo span { color: var(--gold); }
.footer-col p { font-size: .85rem; line-height: 1.8; margin-top: .3rem; }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: .9rem; }
.footer-col a { display: block; font-size: .85rem; padding: .3rem 0; color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--gold); }
.footer-contact { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .9rem; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.social-icons { display: flex; gap: .7rem; }
.social-icons a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; }
.social-icons a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .78rem; color: rgba(255,255,255,.4); }

@media (max-width: 900px) {
  .firm-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 3.2rem 0; }
  .hero-adv { min-height: 70vh; padding: 3rem 0; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .firm-stats { flex-wrap: wrap; gap: 1.3rem; }
}
