:root {
  --blue-logo: #081D3C;        /* Azul Marinho Oficial da Logo */
  --blue-logo-hover: #103B7B;  /* Azul para hover nos botões */
  --blue-primary: #0B2B5C;     /* Azul Institucional */
  --blue-accent: #174EA6;      /* Azul vibrante de destaque */
  --blue-navy: #081A32;        /* Tom de azul profundo para Hero e Rodapé */
  --blue-deep: #06152B;        /* Azul noturno */
  --blue-card-dark: #092040;   /* Fundo escuro dos cards e fotos */
  --blue-soft: #F1F6FB;        /* Fundo suave com nuance azulada */
  --ink: #081D3C;              /* Textos e títulos no azul escuro da marca */
  --text-body: #334155;        /* Texto de leitura */
  --muted: #64748B;            /* Texto secundário */
  --gold: #C0A068;             /* Dourado nobre */
  --gold-dark: #9E7D46;        /* Dourado escuro */
  --card-bg: #FFFFFF;
  --border-subtle: #E2E8F0;
  --border-blue: rgba(8, 29, 60, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}

button, input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

/* Layout: Tela Total */
.site {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: #ffffff;
  overflow: hidden;
}

.section-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header & Nav */
.nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.nav-content {
  max-width: 1360px;
  margin: 0 auto;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: #E2E8F0;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #38BDF8;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Dropdown de Áreas de Atuação */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-toggle .arrow {
  font-size: 10px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 0;
  margin-top: 12px;
  box-shadow: 0 16px 40px rgba(6, 24, 51, 0.25);
  border: 1px solid #E2E8F0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle .arrow {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  color: #0A264E !important;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid #F1F5F9;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background: #EFF6FF;
  color: #174EA6 !important;
  padding-left: 24px;
}

.nav-action {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-cta-nav {
  padding: 11px 24px;
  background: var(--blue-logo);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(8, 29, 60, 0.3);
}

.btn-cta-nav:hover {
  background: #0D2D5E;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(8, 29, 60, 0.45);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

/* Hero Section (Em tons de Azul da marca no lugar dos pretos, texto centralizado) */
.hero-section {
  position: relative;
  min-height: 580px;
  background: var(--blue-navy);
  color: #ffffff;
  border-bottom-left-radius: 120px;
  padding: 160px 30px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 25%, rgba(23, 78, 166, 0.32) 0%, transparent 65%),
    radial-gradient(circle at 85% 20%, rgba(192, 160, 104, 0.15) 0%, transparent 45%),
    linear-gradient(145deg, #06152B 0%, #081D3C 45%, #0E2E5C 100%);
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.hero-text-block h1 {
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.25;
  font-weight: 600;
  margin: 0 auto 24px;
  text-align: center;
}

.hero-text-block h1 span {
  color: var(--gold);
}

.hero-text-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #E2E8F0;
  margin: 0 auto 36px;
  max-width: 720px;
  text-align: center;
}

.hero-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: var(--blue-logo);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 15px 40px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(8, 29, 60, 0.35);
}

.pill-btn:hover {
  background: #0D2D5E;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 29, 60, 0.45);
}

/* Remover logo da lateral no hero padrão */
.hero-image-card,
.hero-main-logo {
  display: none !important;
}

/* Para as páginas individuais dos advogados (Dr. Matheus e Dr. Ricardo), manter foto e texto alinhados */
.page-hero-lawyer .hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  text-align: left;
  align-items: center;
  max-width: 1240px;
}

.page-hero-lawyer .hero-text-block {
  text-align: left;
  margin: 0;
}

.page-hero-lawyer .hero-eyebrow {
  text-align: left;
}

.page-hero-lawyer .hero-text-block h1 {
  text-align: left;
  margin: 0 0 24px;
}

.page-hero-lawyer .hero-text-block p {
  text-align: left;
  margin: 0 0 32px;
}

.page-hero-lawyer .hero-btn-wrap {
  justify-content: flex-start;
  margin: 0;
}

.page-hero-lawyer .hero-brand-block {
  display: flex !important;
  justify-content: center;
}

/* Headings comuns */
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 14px;
}

.section-heading h2 span {
  color: var(--gold);
}

.section-heading p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* Seção Sobre (Sócios Reais) */
.about-section {
  padding: 90px 0;
  background: #ffffff;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.partner-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.partner-img-wrapper {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #1e1e20;
}

.partner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.partner-card:hover .partner-photo {
  transform: scale(1.03);
}

.partner-content {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.partner-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}

.partner-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: inline-block;
}

.partner-text p {
  font-size: 13px;
  line-height: 1.7;
  color: #555555;
  margin: 0 0 14px;
}

.partner-text p:last-child {
  margin-bottom: 0;
}

.partner-action {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-more-link {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: var(--blue-logo);
  border: 1px solid var(--blue-logo);
  padding: 8px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.partner-more-link span {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.partner-more-link:hover {
  background: var(--blue-logo-hover);
  border-color: var(--blue-logo-hover);
  box-shadow: 0 4px 14px rgba(8, 29, 60, 0.35);
}

.partner-more-link:hover span {
  transform: translateX(3px);
}

.contact-partner-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-logo);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.contact-partner-link span {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.partner-card:hover .contact-partner-link span {
  transform: translateX(4px);
}

/* Áreas de Atuação */
.areas-section {
  padding: 90px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(8, 29, 60, 0.12);
  box-shadow: 0 10px 28px rgba(8, 29, 60, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--blue-deep);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.area-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-logo);
  box-shadow: 0 18px 45px rgba(8, 29, 60, 0.25);
}

.area-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.area-card:hover .area-card-bg {
  transform: scale(1.08);
}

/* Fader gradient no azul da marca sobre a imagem na parte inferior */
.area-card-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 50px 22px 22px;
  background: linear-gradient(
    180deg,
    rgba(6, 21, 45, 0) 0%,
    rgba(6, 21, 45, 0.6) 25%,
    rgba(6, 21, 45, 0.9) 60%,
    rgba(6, 21, 45, 0.98) 100%
  );
  display: flex;
  flex-direction: column;
}

.area-card-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
  display: inline-block;
}

.area-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.area-card p {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.area-readmore-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  color: #ffffff;
  background: var(--blue-logo);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.area-readmore-btn span {
  font-size: 15px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.area-card:hover .area-readmore-btn {
  background: var(--blue-logo-hover);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 14px rgba(8, 29, 60, 0.45);
}

.area-card:hover .area-readmore-btn span {
  transform: translateX(3px);
}

/* Modal Detalhes Área */
.area-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 45, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.area-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.area-modal-dialog {
  position: relative;
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(6, 21, 45, 0.4);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-subtle);
}

.area-modal-backdrop.open .area-modal-dialog {
  transform: scale(1) translateY(0);
}

.area-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(8, 29, 60, 0.8);
  backdrop-filter: blur(6px);
  color: #ffffff;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.area-modal-close:hover {
  background: var(--blue-logo-hover);
  transform: rotate(90deg);
}

.area-modal-banner {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.area-modal-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-modal-banner-fader {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 45, 0.2) 0%, rgba(6, 21, 45, 0.8) 100%);
}

.area-modal-content {
  padding: 28px 32px 32px;
}

.area-modal-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 14px;
}

.modal-area-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 26px;
}

.modal-cta-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Informe-se / Artigos */
.blog-section {
  padding: 90px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.article-card {
  background: var(--blue-soft);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-logo);
  box-shadow: 0 14px 32px rgba(8, 29, 60, 0.1);
}

.article-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.article-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.4;
}

.article-author {
  font-size: 11.5px;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}

.article-desc p {
  font-size: 13px;
  line-height: 1.65;
  color: #555555;
  margin: 0 0 24px;
}

.article-footer {
  margin-top: auto;
}

.btn-read-article {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-logo);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-read-article span {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.article-card:hover .btn-read-article span {
  transform: translateX(4px);
}

/* Footer / Contatos (No Azul Escuro da Marca) */
.footer-section {
  background: #06152B;
  color: #94A3B8;
  padding: 80px 0 35px;
  border-top: 1px solid #0B254E;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.brand-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #888888;
  max-width: 320px;
  margin: 0 0 22px;
}

.footer-btn {
  padding: 10px 22px;
  font-size: 11px;
}

.footer-info-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}

.footer-info-col p {
  font-size: 12.5px;
  line-height: 1.65;
  color: #cccccc;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 12.5px;
  color: #888888;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-links a {
  font-size: 11.5px;
  color: #777777;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: #ffffff;
}

.legal-links span {
  color: #444444;
}

.copyright {
  font-size: 11.5px;
  color: #666666;
}

/* ========================================================
   Áreas de Atuação - Páginas Dedicadas (Estilo Novo Site)
   ======================================================== */
.area-page-content {
  padding: 80px 0 100px;
  background: #ffffff;
}

.area-overview-card {
  background: #F8FAFC;
  border: 1px solid var(--border-blue);
  border-radius: 24px;
  padding: 44px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(8, 29, 60, 0.04);
}

.area-overview-text h2 {
  font-size: 26px;
  color: var(--blue-logo);
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 700;
}

.area-overview-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.area-overview-text p:last-child {
  margin-bottom: 0;
}

.area-overview-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(8, 29, 60, 0.12);
  height: 260px;
}

.area-overview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-section-title {
  text-align: center;
  margin-bottom: 45px;
}

.services-section-title h3 {
  font-size: 28px;
  color: var(--blue-logo);
  font-weight: 700;
  margin: 0 0 12px;
}

.services-section-title p {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 70px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(8, 29, 60, 0.03);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 78, 166, 0.35);
  box-shadow: 0 16px 36px rgba(8, 29, 60, 0.1);
}

.service-card-icon {
  display: none !important;
}

.service-card h4 {
  font-size: 17px;
  color: var(--blue-logo);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.4;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  flex-grow: 1;
}

/* CTA Banner no final das páginas de áreas */
.area-cta-banner {
  background: linear-gradient(135deg, #06152B 0%, #0A2244 50%, #0E2E5C 100%);
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(6, 21, 43, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.area-cta-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(23, 78, 166, 0.3) 0%, transparent 60%);
  z-index: 0;
}

.area-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.area-cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #ffffff;
}

.area-cta-content p {
  font-size: 15.5px;
  color: #E2E8F0;
  line-height: 1.7;
  margin: 0 0 32px;
}

.area-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Estilo para Termos e Privacidade */
.policy-page-container {
  padding: 80px 0 120px;
  background: #ffffff;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 10px 40px rgba(8, 29, 60, 0.04);
}

.policy-card h2 {
  font-size: 24px;
  color: var(--blue-logo);
  margin-top: 36px;
  margin-bottom: 16px;
  font-weight: 700;
}

.policy-card h2:first-of-type {
  margin-top: 0;
}

.policy-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
}

.policy-card ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.policy-card ul li {
  font-size: 14.5px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 10px;
}

/* ================================================
   ANIMAÇÕES: Blur + Slide Up (entrada suave)
   ================================================ */
@keyframes blurSlideUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(10px);
  }
  60% {
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes blurFadeIn {
  0% {
    opacity: 0;
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes blurScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.94);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.animate-slide-up {
  opacity: 0;
  animation: blurSlideUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.animate-fade-in {
  opacity: 0;
  animation: blurFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.animate-scale {
  opacity: 0;
  animation: blurScaleUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.is-visible {
  animation-play-state: running !important;
}

/* Delays escalonados para filhos sequenciais */
.animate-slide-up:nth-child(1) { animation-delay: 0s; }
.animate-slide-up:nth-child(2) { animation-delay: 0.12s; }
.animate-slide-up:nth-child(3) { animation-delay: 0.22s; }
.animate-slide-up:nth-child(4) { animation-delay: 0.32s; }

/* ================================================
   PÁGINAS DOS ADVOGADOS (Dr. Matheus / Dr. Ricardo)
   ================================================ */

/* Foto no hero */
.lawyer-hero-portrait {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  border: 3px solid rgba(192, 160, 104, 0.25);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Seção de biografia */
.lawyer-profile-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.lawyer-detail-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 28px;
  padding: 56px 64px;
  box-shadow: 0 12px 50px rgba(8, 29, 60, 0.06);
}

.lawyer-detail-header {
  margin-bottom: 36px;
}

.detail-badge {
  display: inline-block;
  background: rgba(8, 29, 60, 0.07);
  color: var(--blue-logo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.lawyer-detail-header h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

/* Texto da bio: garantir cor correta */
.lawyer-full-bio p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #334155 !important;
  margin: 0 0 22px;
}

.lawyer-full-bio p:last-child {
  margin-bottom: 0;
}

/* Tags de especialidade */
.lawyer-focus-areas {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid #E2E8F0;
}

.lawyer-focus-areas h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-logo);
  margin: 0 0 18px;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.focus-tag {
  display: inline-block;
  background: #F1F6FB;
  color: var(--blue-logo);
  border: 1px solid rgba(8, 29, 60, 0.12);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.focus-tag:hover {
  background: var(--blue-logo);
  color: #ffffff;
  border-color: var(--blue-logo);
}

/* CTA no rodapé do card */
.lawyer-cta-footer {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid #E2E8F0;
}

/* Link "Voltar" sem seta */
.btn-secondary-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
  margin-left: 20px;
  transition: color 0.2s ease;
}

.btn-secondary-link:hover {
  color: #ffffff !important;
}

/* Responsive lawyer hero */
@media (max-width: 900px) {
  .page-hero-lawyer .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .page-hero-lawyer .hero-text-block,
  .page-hero-lawyer .hero-eyebrow,
  .page-hero-lawyer .hero-text-block h1,
  .page-hero-lawyer .hero-text-block p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero-lawyer .hero-btn-wrap {
    justify-content: center;
  }

  .page-hero-lawyer .hero-brand-block {
    order: -1;
  }

  .lawyer-hero-portrait {
    max-width: 280px;
    margin: 0 auto;
  }

  .lawyer-detail-card {
    padding: 36px 28px;
  }
}

/* Responsividade */
@media (max-width: 1200px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text-block p {
    margin: 0 auto 32px;
  }
  .partners-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-content {
    padding: 20px 24px;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 75px;
    left: 20px;
    right: 20px;
    background: #18181a;
    flex-direction: column;
    padding: 24px;
    border-radius: 16px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  .nav-menu.open {
    display: flex;
  }
  .btn-cta-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-section {
    min-height: 580px;
    border-bottom-left-radius: 70px;
    padding: 130px 20px 70px;
  }
  .section-container {
    padding: 0 20px;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 14px;
    bottom: 20px;
    right: 20px;
  }
}
