/* ============================================================
   Citrangulo & de Marco — Home (deliverable)
   Tokens from colors_and_type.css. 3 visual directions via [data-theme].
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); color: var(--fg-1); background: var(--page-bg, #fff); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { cursor: pointer; text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ---------- THEME TOKENS ---------- */
/* A · Gradiente (moderno) — default */
.page {
  --page-bg: #fff;
  --hero-bg: var(--gradient-brand);
  --hero-fg: #fff;
  --hero-sub: rgba(255,255,255,.85);
  --hero-eyebrow: rgba(255,255,255,.78);
  --hero-wm: url('../assets/logo-mark-white.png'); /* @kind other */
  --hero-wm-op: .05; /* @kind other */
  --hero-logo: url('../assets/logo-horizontal-navy.png'); /* @kind other */
  --hero-stat-border: rgba(255,255,255,.2);
  --hb1-bg: #fff; --hb1-fg: var(--navy); --hb1-bg-h: var(--navy-50);
  --hb2-bg: rgba(255,255,255,.08); --hb2-fg: #fff; --hb2-bd: rgba(255,255,255,.45); --hb2-bg-h: rgba(255,255,255,.16);
  --card-bg: #fff; --card-bd: transparent; --card-sh-h: var(--shadow-md); --card-r: var(--radius-lg);
  --card-sh: var(--shadow-sm); /* @kind shadow */
  --alt-bg: var(--paper-1);
  --eyebrow-c: var(--purple);
  --rule-display: none; /* @kind other */
  --foot-bg: var(--navy-900);
}
/* B · Clássico (institucional, sóbrio) */
.page[data-theme="classico"] {
  --page-bg: #fff;
  --hero-bg: var(--navy-900);
  --hero-fg: #fff;
  --hero-sub: rgba(255,255,255,.78);
  --hero-eyebrow: var(--purple-300);
  --hero-wm: url('../assets/logo-mark-white.png'); /* @kind other */
  --hero-wm-op: .04; /* @kind other */
  --hero-stat-border: rgba(255,255,255,.18);
  --hb1-bg: #fff; --hb1-fg: var(--navy-900); --hb1-bg-h: #ece7df;
  --hb2-bg: transparent; --hb2-fg: #fff; --hb2-bd: rgba(255,255,255,.5); --hb2-bg-h: rgba(255,255,255,.1);
  --card-bg: #fff; --card-bd: var(--line); --card-sh-h: var(--shadow-sm); --card-r: var(--radius-xs);
  --card-sh: none; /* @kind shadow */
  --alt-bg: #f6f4ef;            /* warm ivory for a traditional feel */
  --eyebrow-c: var(--navy-700);
  --rule-display: block; /* @kind other */
  --foot-bg: var(--navy-900);
}
/* C · Claro (editorial, clean) */
.page[data-theme="claro"] {
  --page-bg: #fff;
  --hero-bg: var(--paper-2);
  --hero-fg: var(--ink);
  --hero-sub: var(--fg-2);
  --hero-eyebrow: var(--purple);
  --hero-wm: url('../assets/logo-mark-watermark.png'); /* @kind other */
  --hero-wm-op: .9; /* @kind other */
  --hero-stat-border: var(--slate-200);
  --hb1-bg: var(--navy); --hb1-fg: #fff; --hb1-bg-h: var(--navy-800);
  --hb2-bg: transparent; --hb2-fg: var(--navy); --hb2-bd: var(--line-strong); --hb2-bg-h: var(--navy-50);
  --card-bg: #fff; --card-bd: var(--line); --card-sh-h: var(--shadow-md); --card-r: var(--radius-md);
  --card-sh: var(--shadow-xs); /* @kind shadow */
  --alt-bg: #fff;
  --eyebrow-c: var(--purple);
  --rule-display: none; /* @kind other */
  --foot-bg: var(--navy-900);
}

/* ---------- shared helpers ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.eyebrow { font-family: var(--font-eyebrow); font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: var(--tracking-eyebrow); color: var(--eyebrow-c); display: inline-flex; align-items: center; gap: 11px; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; opacity: .85; }
.section-title { font-family: var(--font-serif); font-weight: 600; color: var(--ink); font-size: clamp(28px, 4vw, 44px); line-height: 1.12; letter-spacing: -.01em; margin: 16px 0 0; text-wrap: balance; }
.section-sub { font-size: 17px; line-height: 1.6; color: var(--fg-2); margin: 14px 0 0; max-width: 560px; }
.lead { font-size: 17px; line-height: 1.7; color: var(--fg-2); }
.rule { display: var(--rule-display); width: 54px; height: 2px; background: var(--purple); margin: 18px 0 0; }
.rule.center { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-sans); font-weight: 600; font-size: 15px; padding: 13px 24px; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: pointer; transition: all .15s cubic-bezier(.4,0,.2,1); white-space: nowrap; }
.btn-sm { padding: 9px 17px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-800); }
.btn-primary:active { transform: translateY(1px); }
.btn-whatsapp { background: var(--purple); color: #fff; box-shadow: var(--shadow-brand); }
.btn-whatsapp:hover { background: var(--purple-800); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--navy-50); border-color: var(--navy-300); }
/* botões claros — usados sobre o degradê / fundos escuros (faixas de CTA, herói) */
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--navy-50); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); border-color: #fff; }
/* leve "levantar" no hover para reforçar que são clicáveis */
.btn-primary:hover, .btn-whatsapp:hover, .btn-light:hover, .btn-ghost-light:hover { transform: translateY(-1.5px); box-shadow: var(--shadow-md); }
.btn-light:active, .btn-ghost-light:active, .btn-whatsapp:active { transform: translateY(0); box-shadow: none; }
/* foco visível por teclado (acessibilidade) */
a:focus-visible, button:focus-visible, .btn:focus-visible, .area-card:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius-sm); }
/* hero buttons adapt per theme */
.hero-btn-1 { background: var(--hb1-bg); color: var(--hb1-fg); }
.hero-btn-1:hover { background: var(--hb1-bg-h); }
.hero-btn-2 { background: var(--hb2-bg); color: var(--hb2-fg); border-color: var(--hb2-bd); }
.hero-btn-2:hover { background: var(--hb2-bg-h); }

/* ============================================================ HEADER */
.site-header { position: sticky; top: 0; z-index: 50; transition: background .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.88); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.header-inner { display: flex; align-items: center; gap: 28px; padding-top: 15px; padding-bottom: 15px; }
.brand img { height: 38px; width: auto; }
.brand .brand-light { display: none; }
/* on themes with dark hero, show white logo until scrolled */
.page[data-theme] .site-header:not(.is-scrolled) .brand-dark { }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--slate-700); transition: color .15s; }
.nav-links a:hover { color: var(--purple); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; color: var(--navy); padding: 4px; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; padding: 8px 28px 20px; background: #fff; border-bottom: 1px solid var(--line); }
.mobile-menu a { padding: 13px 4px; font-weight: 500; color: var(--slate-700); border-bottom: 1px solid var(--slate-100); }
.mobile-menu .btn { margin-top: 14px; }
.mobile-menu a.btn-primary, .mobile-menu .btn-primary { color: #fff; border-bottom: none; padding: 10px 20px; }
/* header text colour when over a dark hero & not scrolled */
.page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .nav-links a { color: rgba(255,255,255,.9); }
.page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .menu-toggle { color: #fff; }
.page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .brand-dark { display: none; }
.page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .brand-light { display: block; }
.page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .header-actions .btn-primary { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .header-actions .btn-primary:hover { background: rgba(255,255,255,.22); }

/* ============================================================ HERO */
.hero { position: relative; overflow: hidden; background: var(--hero-bg); color: var(--hero-fg); margin-top: -69px; padding-top: 69px; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; }
.page:not([data-theme]) .hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(2,18,46,.34) 0%, rgba(2,18,46,.14) 42%, rgba(2,18,46,.40) 100%); }
.hero-texture { display: none; }
.page[data-theme="claro"] .hero-texture { background-size: 150px; }
.page[data-theme="claro"] .hero::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(248,249,250,.4), rgba(255,255,255,.85)); }
.hero-inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: clamp(90px,14vh,150px) 28px clamp(70px,10vh,120px); text-align: center; width: 100%; }
.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--hero-fg); opacity: .72; font-family: var(--font-eyebrow); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; cursor: pointer; transition: opacity .2s; background: none; border: none; }
.hero-scroll:hover { opacity: 1; }
.hero-scroll .mouse { width: 22px; height: 34px; border: 1.5px solid currentColor; border-radius: 12px; position: relative; }
.hero-scroll .mouse::after { content: ''; position: absolute; top: 6px; left: 50%; width: 3px; height: 6px; border-radius: 2px; background: currentColor; transform: translateX(-50%); animation: heroScroll 1.6s ease-in-out infinite; }
@keyframes heroScroll { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 9px); } }
.tagline-eyebrow { font-family: var(--font-eyebrow); font-weight: 400; font-size: 13px; text-transform: uppercase; letter-spacing: .34em; color: var(--hero-eyebrow); }
.hero-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(34px,5.6vw,62px); line-height: 1.08; letter-spacing: -.015em; margin: 22px 0 0; text-wrap: balance; }
.hero-lead { font-size: clamp(16px,2vw,19px); line-height: 1.65; color: var(--hero-sub); max-width: 650px; margin: 22px auto 0; }
.hero-cta { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* Entrada do hero — fade + slide-up encadeado, com destaque no título */
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-inner > .tagline-eyebrow,
.hero-inner > .hero-title,
.hero-inner > .hero-lead,
.hero-inner > .hero-cta { opacity: 0; animation: heroRise .9s cubic-bezier(.22,.61,.36,1) forwards; }
.hero-inner > .tagline-eyebrow { animation-delay: .08s; }
.hero-inner > .hero-title     { animation-delay: .22s; animation-duration: 1.05s; }
.hero-inner > .hero-lead      { animation-delay: .46s; }
.hero-inner > .hero-cta       { animation-delay: .62s; }
@media (prefers-reduced-motion: reduce) {
  .hero-inner > .tagline-eyebrow,
  .hero-inner > .hero-title,
  .hero-inner > .hero-lead,
  .hero-inner > .hero-cta { opacity: 1; animation: none; }
}
.hero-stats { display: inline-flex; align-items: center; gap: 30px; margin-top: 54px; padding: 22px 36px; border: 1px solid var(--hero-stat-border); border-radius: var(--radius-lg); }
.hero-stats > div { display: flex; flex-direction: column; gap: 3px; }
.hero-stats strong { font-family: var(--font-serif); font-size: 30px; font-weight: 600; }
.hero-stats span { font-size: 12.5px; opacity: .8; letter-spacing: .02em; }
.hero-stats .div { width: 1px; height: 38px; background: var(--hero-stat-border); }

/* ============================================================ SECTIONS shared */
.section { padding-top: clamp(64px,9vw,108px); padding-bottom: clamp(64px,9vw,108px); }
.section.alt { background: var(--alt-bg); }
.section-head { margin-bottom: 48px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.about-mark { background: var(--paper-2); border-radius: var(--radius-xl); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; background-image: url('../assets/logo-mark-watermark.png'); background-size: 120px; position: relative; overflow: hidden; }
.about-mark::after { content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(241,241,241,.2), rgba(241,241,241,.85)); }
.about-mark img { width: 52%; position: relative; z-index: 2; }
.page[data-theme="classico"] .about-mark { border-radius: var(--radius-xs); }
.about-points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.about-points li { display: flex; gap: 15px; }
.point-ico { flex: 0 0 auto; width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--navy-50); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.about-points strong { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 3px; }
.about-points p { margin: 0; font-size: 14px; color: var(--fg-2); line-height: 1.5; }

/* AREAS */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.area-card { background: var(--card-bg); border: 1px solid var(--card-bd); border-radius: var(--card-r); padding: 28px 24px; box-shadow: var(--card-sh); border-top: 3px solid var(--navy); transition: all .18s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.area-card.alt-accent { border-top-color: var(--purple); }
.area-card:hover { box-shadow: var(--card-sh-h); transform: translateY(-3px); }
.area-card.is-active { border-top-width: 4px; box-shadow: var(--card-sh-h); transform: translateY(-2px); outline: 2px solid var(--navy); outline-offset: 2px; }
.area-card.alt-accent.is-active { outline-color: var(--purple); }
.area-ico { width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--navy-50); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.area-card.alt-accent .area-ico { background: var(--purple-50); color: var(--purple); }
.page[data-theme="classico"] .area-ico { border-radius: var(--radius-xs); }
.area-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 21px; color: var(--ink); margin: 0 0 9px; }
.area-card p { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0; }

/* ATTORNEYS */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.attorney { display: flex; gap: 24px; align-items: center; background: var(--card-bg); border: 1px solid var(--card-bd, var(--line)); border-radius: var(--card-r); padding: 24px; box-shadow: var(--card-sh); cursor: pointer; transition: box-shadow .2s, transform .2s, border-color .2s; }
.page .attorney { border-color: var(--line); }
.attorney:hover { box-shadow: var(--card-sh-h, var(--shadow-md)); transform: translateY(-3px); }
.attorney.is-active { border-color: var(--purple-300); box-shadow: var(--shadow-md); }
.attorney-photo { position: relative; flex: 0 0 auto; width: 120px; height: 150px; border-radius: 10px; overflow: hidden; background: var(--navy-50); }
.attorney .attorney-photo-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; display: block; transition: transform .4s ease; }
.attorney:hover .attorney-photo-img { transform: scale(1.07); }
.attorney-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding: 12px; background: linear-gradient(to top, rgba(2,31,64,.78), rgba(2,31,64,0) 60%); opacity: 0; transition: opacity .25s; }
.attorney:hover .attorney-overlay { opacity: 1; }
.attorney-overlay-cta { color: #fff; font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.attorney-body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.attorney-body h3 { font-family: var(--font-serif); font-weight: 600; font-size: 23px; color: var(--ink); margin: 0 0 4px; }
.attorney-focus { font-size: 14px; color: var(--fg-2); line-height: 1.4; margin: 0 0 7px; }
.attorney-oab { font-family: var(--font-eyebrow); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 14px; }
.attorney-body .btn { align-self: flex-start; }

.testimonial { margin: 56px auto 0; max-width: 780px; text-align: center; padding: 0 20px; }

/* TEAM STRIP (equipe completa) */
.team-strip-head { margin: 58px 0 26px; text-align: center; }
.team-strip-head .eyebrow { justify-content: center; }
.team-strip-head .section-sub { margin-left: auto; margin-right: auto; }
.team-strip { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.team-strip li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; cursor: pointer; }
.strip-photo { position: relative; width: 100px; height: 100px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-sm); border: 3px solid #fff; margin-bottom: 10px; background: var(--navy-50); transition: transform .25s, box-shadow .25s; }
.team-strip li:hover .strip-photo { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-strip li.is-active .strip-photo { outline: 2.5px solid var(--purple); outline-offset: 3px; }
.strip-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; display: block; transition: transform .4s ease; }
.team-strip li:hover .strip-photo img { transform: scale(1.08); }
.strip-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(2,31,64,.55); opacity: 0; transition: opacity .25s; }
.team-strip li:hover .strip-overlay { opacity: 1; }
.strip-overlay span { color: #fff; font-weight: 600; font-size: 12px; }
.team-strip strong { font-family: var(--font-serif); font-weight: 600; font-size: 16px; color: var(--ink); }
.team-strip span { font-size: 12.5px; color: var(--fg-2); line-height: 1.4; }

/* TEAM — painel de perfil (abre ao clicar) */
.person-detail { position: relative; display: grid; grid-template-columns: 300px 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; margin-top: 44px; animation: pd-in .35s ease; }
@keyframes pd-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.person-detail-close { position: absolute; top: 16px; right: 16px; z-index: 3; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); border: 1px solid var(--line); color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; }
.person-detail-close:hover { background: var(--slate-100, #eef0f3); }
.pd-photo { background: var(--navy-50); }
.pd-photo img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; object-position: top center; display: block; }
.pd-body { padding: clamp(28px,3.4vw,46px); }
.pd-name { font-family: var(--font-serif); font-weight: 600; font-size: clamp(24px,3vw,34px); color: var(--ink); margin: 8px 0 0; }
.pd-oab { font-family: var(--font-eyebrow); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); display: block; margin-top: 8px; }
.pd-bio { margin-top: 18px; }
.pd-bio p { font-size: 15.5px; line-height: 1.7; color: var(--fg-2); margin: 0 0 12px; }
.pd-actions { margin-top: 22px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.social-pill { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13.5px; color: var(--purple); background: var(--purple-50); padding: 9px 16px; border-radius: var(--radius-pill); transition: background .15s, color .15s; }
.social-pill:hover { background: var(--purple); color: #fff; }
@media (max-width: 720px) {
  .person-detail { grid-template-columns: 1fr; }
  .pd-photo img { min-height: 260px; max-height: 360px; }
}

/* REVIEWS CAROUSEL */
.reviews-head { text-align: center; }
.reviews-head .eyebrow { justify-content: center; }
.gsummary { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; }
.gsummary-txt { font-size: 14px; color: var(--fg-2); display: inline-flex; align-items: center; gap: 5px; }
.gsummary-txt strong { color: var(--ink); font-weight: 600; }
.gsummary-txt svg { vertical-align: middle; }
.stars { display: inline-flex; gap: 2px; line-height: 0; }
.carousel { position: relative; display: flex; align-items: center; gap: 16px; max-width: 780px; margin: 42px auto 0; }
.carousel-view { overflow: hidden; flex: 1; }
.carousel-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.review-slide { flex: 0 0 100%; padding: 5px; box-sizing: border-box; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); min-height: 230px; display: flex; flex-direction: column; }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.review-text { font-family: var(--font-serif); font-size: 19px; line-height: 1.5; color: var(--ink); margin: 0 0 24px; flex: 1; text-wrap: pretty; }
.reviewer { display: flex; align-items: center; gap: 13px; }
.r-avatar { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 600; font-size: 19px; }
.reviewer strong { display: block; font-size: 15px; color: var(--ink); }
.reviewer > div span { font-size: 12.5px; color: var(--fg-3); }
.c-arrow { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line-strong); color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-sm); transition: all .15s; }
.c-arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
.dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--slate-300); cursor: pointer; padding: 0; transition: all .2s; }
.dot.active { background: var(--purple); width: 26px; border-radius: 5px; }
.quote-mark { color: var(--purple-300); display: inline-flex; }
.testimonial blockquote { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: clamp(20px,2.8vw,28px); line-height: 1.4; color: var(--ink); margin: 10px 0 16px; text-wrap: balance; }
.testimonial figcaption { font-size: 13px; color: var(--fg-3); font-family: var(--font-eyebrow); letter-spacing: .08em; text-transform: uppercase; }

/* CONTACT */
.contact { position: relative; background: var(--paper-2); background-image: url('../assets/logo-mark-watermark.png'); background-size: 130px; }
.contact::before { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(241,241,241,.5), rgba(241,241,241,.9)); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.info-list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 20px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-disc { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; background: var(--purple); display: flex; align-items: center; justify-content: center; }
.info-list li:nth-child(even) .info-disc { background: var(--navy); }
.info-label { display: block; font-family: var(--font-eyebrow); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 2px; }
.info-val { display: block; font-size: 15px; color: var(--ink); line-height: 1.45; max-width: 340px; }
.contact-form-wrap { background: #fff; border-radius: var(--radius-xl); padding: 34px; box-shadow: var(--shadow-lg); }
.page[data-theme="classico"] .contact-form-wrap { border-radius: var(--radius-xs); box-shadow: none; border: 1px solid var(--line); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { display: flex; flex-direction: column; gap: 7px; }
.field-group label { font-size: 12.5px; font-weight: 600; color: var(--fg-2); }
.field-group input, .field-group select, .field-group textarea { font-family: var(--font-sans); font-size: 15px; color: var(--ink); padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: #fff; transition: all .15s; width: 100%; }
.field-group textarea { resize: vertical; min-height: 96px; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { outline: none; border-color: var(--navy-500); box-shadow: var(--ring); }
.field-group input::placeholder, .field-group textarea::placeholder { color: var(--fg-3); }
.form-success { text-align: center; padding: 30px 10px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.success-ico { width: 58px; height: 58px; border-radius: 50%; background: var(--success); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.form-success h3 { font-family: var(--font-serif); font-weight: 600; font-size: 24px; color: var(--ink); margin: 0; }
.form-success p { font-size: 14.5px; color: var(--fg-2); line-height: 1.55; margin: 0; max-width: 340px; }

/* FOOTER */
.site-footer { position: relative; overflow: hidden; background: var(--foot-bg); color: #fff; }
.footer-texture { position: absolute; inset: 0; background-image: url('../assets/logo-mark-white.png'); background-size: 200px; background-repeat: repeat; opacity: .035; }
.footer-inner { position: relative; z-index: 2; padding-top: 64px; padding-bottom: 40px; display: grid; grid-template-columns: 1.2fr 2fr; gap: 50px; }
.footer-brand img { height: 116px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,.66); line-height: 1.6; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-cols > div { display: flex; flex-direction: column; gap: 11px; }
.footer-h { font-family: var(--font-eyebrow); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.footer-cols a { font-size: 14px; color: rgba(255,255,255,.82); transition: color .15s; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { position: relative; z-index: 2; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom span:first-child { font-size: 12.5px; color: rgba(255,255,255,.55); }
.footer-tag { font-family: var(--font-eyebrow); font-size: 13px; letter-spacing: .42em; color: rgba(255,255,255,.4); }

/* MODAL + TOAST */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(2,31,64,.55); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: fade .2s ease; }
.modal { position: relative; background: #fff; border-radius: var(--radius-xl); padding: 38px; width: 100%; max-width: 440px; box-shadow: var(--shadow-lg); animation: rise .24s cubic-bezier(.4,0,.2,1); }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--slate-500); cursor: pointer; padding: 4px; border-radius: var(--radius-sm); }
.modal-close:hover { background: var(--slate-100); color: var(--ink); }
.modal-title { font-family: var(--font-serif); font-weight: 600; font-size: 26px; color: var(--ink); margin: 14px 0 6px; line-height: 1.15; }
.modal-sub { font-size: 14.5px; color: var(--fg-2); margin: 0 0 22px; }
.modal form { display: flex; flex-direction: column; gap: 14px; }
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--purple-700); color: #fff; padding: 13px 22px; border-radius: var(--radius-pill); display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-brand); opacity: 0; pointer-events: none; transition: all .28s cubic-bezier(.4,0,.2,1); z-index: 120; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* AVISO DE SEGURANÇA — golpe do falso advogado */
.secnote { padding: 0; overflow: hidden; max-width: 500px; max-height: 92vh; display: flex; flex-direction: column; }
.secnote-close { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.14); border: none; color: #fff; cursor: pointer; padding: 5px; border-radius: var(--radius-sm); line-height: 0; transition: background .15s; z-index: 2; }
.secnote-close:hover { background: rgba(255,255,255,.26); }
.secnote-head { flex: none; background: var(--gradient-brand); color: #fff; padding: 28px 32px 24px; position: relative; }
.secnote-head::after { content: ''; position: absolute; inset: 0; background: url('../assets/logo-mark-watermark.png') no-repeat right -36px center; background-size: 220px; opacity: .07; pointer-events: none; }
.secnote-badge { position: relative; z-index: 1; width: 52px; height: 52px; border-radius: var(--radius-pill); background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.28); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.secnote-eyebrow { position: relative; z-index: 1; font-family: var(--font-eyebrow); font-weight: 500; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--purple-200); }
.secnote-head h3 { position: relative; z-index: 1; font-family: var(--font-serif); font-weight: 600; font-size: 25px; line-height: 1.14; margin: 7px 0 0; color: #fff; }
.secnote-body { padding: 24px 32px 28px; overflow-y: auto; }
.secnote-body p { font-size: 15px; line-height: 1.62; color: var(--fg-2); margin: 0 0 16px; }
.secnote-phone { display: flex; align-items: center; gap: 14px; background: var(--navy-50); border: 1px solid var(--navy-100); border-radius: var(--radius-md); padding: 14px 16px; margin: 2px 0 18px; text-decoration: none; transition: border-color .15s, background .15s; }
.secnote-phone:hover { border-color: var(--navy-300); background: #fff; }
.secnote-phone-ico { flex: none; width: 40px; height: 40px; border-radius: var(--radius-pill); background: var(--navy); display: flex; align-items: center; justify-content: center; }
.secnote-phone-label { font-family: var(--font-eyebrow); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); display: block; margin-bottom: 2px; }
.secnote-phone-num { display: block; font-family: var(--font-serif); font-weight: 600; font-size: 23px; color: var(--navy-900); line-height: 1.05; letter-spacing: .01em; }
.secnote-phone-note { display: block; font-size: 12.5px; color: var(--fg-3); margin-top: 3px; }
.secnote-flags { list-style: none; margin: 0 0 20px; padding: 14px 16px; background: var(--paper-1); border: 1px solid var(--line); border-radius: var(--radius-md); display: flex; flex-direction: column; gap: 9px; }
.secnote-flags-h { font-family: var(--font-eyebrow); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--danger); margin: 0 0 2px; }
.secnote-flags li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; line-height: 1.45; color: var(--slate-700); }
.secnote-flags li::before { content: ''; flex: none; width: 7px; height: 7px; margin-top: 6px; border-radius: 50%; background: var(--danger); }
.secnote-actions { display: flex; flex-direction: column; gap: 10px; }
.secnote-more { display: block; text-align: center; margin-top: 16px; font-size: 13.5px; font-weight: 600; color: var(--navy); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--navy-200); }
.secnote-more:hover { color: var(--purple); text-decoration-color: var(--purple-300); }

/* RESPONSIVE */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .site-header, .site-header.is-scrolled { background: rgba(255,255,255,.94); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
  .page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .nav-links a { color: var(--slate-700); }
  .page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .menu-toggle { color: var(--navy); }
  .page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .brand-dark { display: block; }
  .page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .brand-light { display: none; }
  .page:not([data-theme="claro"]) .site-header:not(.is-scrolled) .header-actions .btn-primary { background: var(--navy); border-color: transparent; }
  .mobile-menu { display: flex; }
  .header-actions .btn-primary { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-mark { max-width: 360px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .team-strip { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
}
@media (max-width: 560px) {
  .areas-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px 24px; justify-content: center; }
  .hero-stats .div { display: none; }
  .f-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .team-strip { grid-template-columns: repeat(2, 1fr); }
  .carousel { gap: 8px; }
  .c-arrow { width: 40px; height: 40px; }
  .review-card { padding: 24px; min-height: 0; }
  .review-text { font-size: 17px; }
}

/* ── AREAS HINT ── */
.areas-hint { text-align: center; font-size: 14px; color: var(--fg-3); margin: 0 0 20px; font-style: italic; }

/* ── PODCAST CARD ── */
.podcast-card { display: grid; grid-template-columns: 260px 1fr; gap: 0; background: var(--card-bg); border: 1px solid var(--card-bd); border-radius: var(--card-r); overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--card-sh); transition: box-shadow .18s ease, transform .18s ease; }
.podcast-card:hover { box-shadow: var(--card-sh-h); transform: translateY(-2px); }
.podcast-artwork { background: linear-gradient(140deg, var(--navy) 0%, var(--purple) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 260px; position: relative; overflow: hidden; }
.podcast-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.podcast-artwork::after { content: ''; position: absolute; inset: 0; background: rgba(26,10,36,.20); }
.podcast-play { position: relative; z-index: 1; }
.podcast-play-btn-spacer { display: none; }
.podcast-play { width: 68px; height: 68px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,.4); flex-shrink: 0; }
.podcast-wm { color: rgba(255,255,255,.45); font-family: var(--font-serif); font-size: 14px; letter-spacing: .5px; }
.podcast-wave { display: flex; align-items: flex-end; gap: 4px; height: 24px; margin-top: 16px; }
.podcast-wave i { width: 4px; border-radius: 2px; background: rgba(255,255,255,.6); transform-origin: bottom; animation: pw 1.1s ease-in-out infinite; }
.podcast-wave i:nth-child(1) { height: 45%; animation-delay: 0s; }
.podcast-wave i:nth-child(2) { height: 80%; animation-delay: .18s; }
.podcast-wave i:nth-child(3) { height: 60%; animation-delay: .36s; }
.podcast-wave i:nth-child(4) { height: 100%; animation-delay: .12s; }
.podcast-wave i:nth-child(5) { height: 55%; animation-delay: .30s; }
.podcast-wave i:nth-child(6) { height: 85%; animation-delay: .06s; }
.podcast-wave i:nth-child(7) { height: 50%; animation-delay: .24s; }
@keyframes pw { 0%, 100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .podcast-wave i { animation: none; } }
.podcast-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.podcast-host { font-size: 14px; color: var(--fg-3); margin: 4px 0 14px; }
@media (max-width: 700px) {
  .podcast-card { grid-template-columns: 1fr; }
  .podcast-artwork { min-height: 160px; }
  .podcast-body { padding: 24px; }
}

/* ── PRESS GRID ── */
.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.press-card { background: var(--card-bg); border: 1px solid var(--card-bd); border-radius: var(--card-r); padding: 24px 26px; box-shadow: var(--card-sh); display: flex; flex-direction: column; gap: 10px; }
.press-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.press-date { font-size: 13px; color: var(--fg-3); }
.press-outlet { font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--navy); background: var(--navy-50); padding: 2px 8px; border-radius: 4px; }
.press-card h3 { font-size: 16px; margin: 0; color: var(--ink); line-height: 1.4; }
.press-link { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-top: auto; padding-top: 4px; }
.press-link:hover { text-decoration: underline; }
.press-empty { text-align: center; padding: 64px 20px; color: var(--fg-3); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.press-empty p { margin: 0; line-height: 1.6; }
.press-empty code { font-size: 12px; background: var(--navy-50); color: var(--navy); padding: 2px 6px; border-radius: 4px; }
.wa-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  display: inline-flex; align-items: center;
  background: #25D366; color: #fff;
  border-radius: 999px; text-decoration: none;
  box-shadow: 0 12px 30px rgba(7,94,84,.36);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(7,94,84,.46); }
.wa-fab:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(37,211,102,.45), 0 12px 30px rgba(7,94,84,.36); }
.wa-fab-ico { width: 60px; height: 60px; display: grid; place-items: center; flex: 0 0 auto; }
.wa-fab-label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-weight: 700; font-size: 15px; letter-spacing: .2px;
  transition: max-width .32s ease, padding .32s ease;
}
.wa-fab:hover .wa-fab-label, .wa-fab:focus-visible .wa-fab-label { max-width: 200px; padding-right: 24px; }
/* anel de pulso para chamar a atenção (desligado em movimento reduzido) */
.wa-fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; pointer-events: none;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-fab::before { animation: none; } }
@media (max-width: 640px) {
  .wa-fab { right: 16px; bottom: 16px; }
  .wa-fab:hover .wa-fab-label, .wa-fab:focus-visible .wa-fab-label { max-width: 0; padding-right: 0; }
}
.form-error { color: #b42318; font-size: 14px; line-height: 1.5; margin: -4px 0 2px; }
.form-error a { color: #b42318; text-decoration: underline; font-weight: 600; }
