/* ==========================================================================
   COMPONENTES VISUAIS DE ALTO PADRÃO — PATRÍCIA PRADE
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. NAVBAR INTELIGENTE
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
.site-header.force-scrolled {
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(44, 39, 36, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1002;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brand-text-dark);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--brand-taupe);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--brand-taupe);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-btn-cta {
  padding: 9px 20px;
  font-size: 0.85rem;
  min-height: 40px;
  white-space: nowrap;
}

/* Hambúrguer Mobile */
.nav-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 1002;
  cursor: pointer;
  background: transparent;
  border: none;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--brand-text-dark);
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   1. HERO EDITORIAL (#inicio)
   -------------------------------------------------------------------------- */
.section-hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-body);
}

/* Camada 1: Fundo com imagem arquitetônica */
.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-image: url('../assets/img/hero-office.webp');
  background-size: cover;
  background-position: center right;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

/* Camada 2: Gradiente de fusão suave */
.section-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--bg-body) 0%, var(--bg-body) 42%, rgba(250, 248, 245, 0.85) 60%, rgba(250, 248, 245, 0.4) 100%),
              linear-gradient(180deg, transparent 80%, var(--bg-body) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-kicker-wrapper {
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--brand-taupe-deep);
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 620px;
}

.hero-title strong {
  font-weight: 700;
  color: var(--brand-taupe-dark);
}

.hero-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--brand-taupe);
}

.hero-lead {
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.65;
  color: var(--brand-text-muted);
  margin-bottom: 32px;
  max-width: 580px;
  text-wrap: pretty;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-taupe-dark);
}

.trust-badge-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-cashmere);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-img-box {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-glass);
}

.hero-img-box img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
  display: block;
}

.hero-img-box:hover img {
  transform: scale(1.03);
}

.hero-card-floating {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 260px;
  z-index: 5;
}

.floating-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-taupe-dark);
  margin-bottom: 4px;
}

.floating-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   2. SOBRE A ADVOGADA (#sobre)
   -------------------------------------------------------------------------- */
.sobre-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.sobre-image-wrapper {
  position: relative;
}

.sobre-portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.sobre-portrait-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
}

.sobre-stamp {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--brand-taupe-dark);
  color: var(--brand-offwhite);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--brand-offwhite);
}

.stamp-oab {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-cashmere-light);
}

.stamp-number {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
}

.sobre-text-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}

.sobre-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.pillar-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-cashmere);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  width: 28px;
  height: 28px;
  color: var(--brand-taupe);
  margin-bottom: 12px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-taupe-dark);
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   3. ÁREAS DE ATUAÇÃO — SEAMLESS GRID MOSAICO (#atuacao)
   -------------------------------------------------------------------------- */
.mosaico-seamless-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1060px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}

.mosaico-card {
  position: relative;
  background-color: var(--card-bg);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), z-index 0.1s;
  z-index: 1;
  text-decoration: none;
  color: inherit;
}

.mosaico-card:hover {
  transform: scale(1.015);
  z-index: 10;
  box-shadow: var(--shadow-lg);
  background-color: #FFFFFF;
}

.mosaico-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mosaico-number {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--brand-cashmere);
}

.mosaico-icon {
  width: 28px;
  height: 28px;
  color: var(--brand-taupe);
  transition: transform var(--transition-normal), color var(--transition-normal);
}

.mosaico-card:hover .mosaico-icon {
  transform: translateY(-3px);
  color: var(--brand-taupe-dark);
}

.mosaico-body {
  display: flex;
  flex-direction: column;
}

.mosaico-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-taupe);
  margin-bottom: 6px;
  display: block;
}

.mosaico-title {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--brand-taupe-deep);
  margin-bottom: 10px;
}

.mosaico-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 14px;
}

.mosaico-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 18px;
}

.mosaico-list li {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--brand-text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.mosaico-list li::before {
  content: '•';
  color: var(--brand-cashmere);
  font-weight: bold;
}

.mosaico-action {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand-taupe-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: transform var(--transition-fast);
}

.mosaico-card:hover .mosaico-action {
  transform: translateX(4px);
  color: var(--brand-taupe);
}

/* --------------------------------------------------------------------------
   4. METODOLOGIA EM ETAPAS (#metodologia)
   -------------------------------------------------------------------------- */
.metodologia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.metodologia-card {
  position: relative;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.metodologia-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cashmere);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--brand-cashmere-light);
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-taupe-dark);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   5. FAQ / ACORDEÃO ULTRA-FLUIDO VIA CSS GRID (#faq)
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active {
  border-color: var(--brand-cashmere);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 16px;
  min-height: 48px;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-text-dark);
  line-height: 1.4;
}

.faq-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(169, 152, 140, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.faq-icon {
  width: 16px;
  height: 16px;
  color: var(--brand-taupe-dark);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon-wrapper {
  background-color: var(--brand-taupe-dark);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #FFFFFF;
}

/* Acordeão CSS Grid Ultra-Fluido */
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-premium);
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
}

.faq-inner {
  overflow: hidden;
}

.faq-answer {
  padding: 0 28px 24px 28px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* --------------------------------------------------------------------------
   6. CTA FINAL (#contato)
   -------------------------------------------------------------------------- */
.section-cta {
  background-color: var(--brand-dark);
  color: #FFFFFF;
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(169, 152, 140, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-title strong {
  font-weight: 600;
  color: var(--brand-cashmere-light);
}

.cta-desc {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(250, 248, 245, 0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   7. FOOTER MINIMALISTA
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-footer);
  color: var(--text-footer);
  padding: 80px 24px 40px 24px;
  font-family: var(--font-sans);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--brand-cashmere-light);
  max-width: 380px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  color: var(--brand-cashmere-light);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s var(--ease-premium);
}

.footer-social-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-premium);
}

.footer-social-link:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--brand-cashmere);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-social-link:hover .footer-social-icon {
  transform: scale(1.1);
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.footer-links li, .footer-contact-info li {
  margin-bottom: 12px;
  color: var(--brand-cashmere-light);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-links a, .footer-contact-info a {
  color: var(--brand-cashmere-light);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s var(--ease-premium), transform 0.25s var(--ease-premium);
  display: inline-block;
}

.footer-links a:hover, .footer-contact-info a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-contact-info span {
  color: var(--brand-cashmere-light);
  font-size: 0.92rem;
  line-height: 1.5;
  display: inline-block;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin: 40px 0 28px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--brand-cashmere-light);
}

.copyright-text {
  color: var(--brand-cashmere-light);
}

.agency-credit {
  color: var(--brand-cashmere-light);
}

.credit-link, .footer-credit-link {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  transition: color 0.25s ease;
  pointer-events: auto;
}

.credit-link:hover, .footer-credit-link:hover {
  color: var(--brand-cashmere-light);
  text-decoration-color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   8. BLOG DINÂMICO & POST ÚNICO (#blog-secao e #artigo-secao)
   -------------------------------------------------------------------------- */
#blog-secao, #artigo-secao {
  padding: clamp(90px, 12vw, 140px) 24px 80px 24px;
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  min-height: 80vh;
}

.blog-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.blog-title-section {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 48px;
  text-align: center;
  font-family: var(--font-serif);
  color: var(--brand-taupe-deep);
}

.blog-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cashmere);
  box-shadow: var(--shadow-md);
}

.blog-card-date {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-taupe);
  display: block;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 14px;
  font-family: var(--font-serif);
  color: var(--brand-taupe-deep);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-taupe-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition-fast);
}

.blog-card:hover .blog-card-link {
  transform: translateX(4px);
}

/* Post Único */
.artigo-single-container {
  max-width: 1120px;
  margin: 0 auto;
}

.artigo-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.artigo-main {
  min-width: 0;
}

.artigo-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.autor-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  margin-bottom: 16px;
  border: 2px solid var(--brand-cashmere);
}

.autor-avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-taupe-dark);
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
}

.autor-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand-taupe);
  margin-bottom: 4px;
  display: block;
}

.autor-nome {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-taupe-deep);
  display: block;
  margin-bottom: 2px;
}

.autor-cargo {
  font-size: 0.85rem;
  color: var(--brand-taupe);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

.autor-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.sidebar-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 0 0 14px 0;
}

.sidebar-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sidebar-date strong {
  color: var(--brand-text-dark);
}

.sidebar-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-taupe-deep);
  margin-bottom: 16px;
}

.sidebar-post-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-post-item {
  display: block;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-post-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-text-dark);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color var(--transition-fast);
}

.sidebar-post-item:hover .sidebar-post-title {
  color: var(--brand-taupe);
}

.sidebar-post-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-voltar {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-taupe-dark);
  margin-bottom: 24px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--transition-fast);
}

.btn-voltar:hover {
  opacity: 0.75;
}

.artigo-main-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.18;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  color: var(--brand-taupe-deep);
}

.artigo-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 24px 0 32px 0;
}

.artigo-text-body p {
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 24px;
  color: var(--text-body);
  text-align: justify;
}

.artigo-text-body strong {
  font-weight: 700;
  color: var(--brand-taupe-dark);
}

.artigo-text-body h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px 0;
  color: var(--brand-taupe-dark);
}

.artigo-text-body h3 {
  font-size: 1.4rem;
  margin: 32px 0 14px 0;
  color: var(--brand-taupe-dark);
}

.artigo-text-body ul {
  margin: 0 0 24px 20px;
  list-style: disc;
}

.artigo-text-body li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.blog-blockquote {
  font-size: 1.22rem;
  line-height: 1.65;
  color: var(--brand-taupe-dark);
  border-left: 3px solid var(--brand-cashmere);
  padding-left: 20px;
  margin: 32px 0;
  font-style: italic;
  font-family: var(--font-serif);
}

/* --------------------------------------------------------------------------
   9. WIDGET DE WHATSAPP INTELIGENTE
   -------------------------------------------------------------------------- */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-premium);
}

.whatsapp-widget.widget-visible {
  opacity: 1;
  pointer-events: none;
}

.whatsapp-trigger-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-floating);
  transition: transform 0.2s var(--ease-premium), background-color 0.2s var(--ease-premium);
  will-change: transform;
  pointer-events: auto;
}

.whatsapp-svg-icon {
  fill: #FFFFFF;
  width: 28px;
  height: 28px;
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-trigger-btn:hover {
    transform: scale(1.05);
    background-color: #128C7E;
  }
}

.whatsapp-tooltip {
  background-color: var(--brand-taupe-dark);
  border: 1px solid rgba(169, 152, 140, 0.35);
  color: #FFFFFF;
  padding: 0 18px 0 14px;
  border-radius: 6px;
  margin-bottom: 0;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.3s var(--ease-premium), transform 0.3s var(--ease-premium), max-height 0.3s var(--ease-premium), padding 0.3s var(--ease-premium), margin-bottom 0.3s var(--ease-premium), visibility 0.3s;
  will-change: opacity, transform, max-height;
}

.whatsapp-tooltip.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 80px;
  padding: 12px 18px 12px 14px;
  margin-bottom: 12px;
  transform: translateY(0) scale(1);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 25px;
  width: 10px;
  height: 10px;
  background-color: var(--brand-taupe-dark);
  border-right: 1px solid rgba(169, 152, 140, 0.35);
  border-bottom: 1px solid rgba(169, 152, 140, 0.35);
  transform: rotate(45deg);
}

.close-tooltip-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.close-tooltip-btn:hover {
  color: var(--brand-cashmere-light);
}

.whatsapp-chat-panel {
  width: 320px;
  background-color: #FFFFFF;
  border: 1px solid rgba(94, 86, 79, 0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s var(--ease-premium), transform 0.3s var(--ease-premium), max-height 0.3s var(--ease-premium), margin-bottom 0.3s var(--ease-premium), visibility 0.3s;
  will-change: transform, opacity, max-height;
}

.whatsapp-chat-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 500px;
  margin-bottom: 16px;
  transform: translateY(0) scale(1);
}

.chat-header {
  background-color: var(--brand-taupe-dark);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--brand-cashmere);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.chat-header-info {
  display: flex;
  flex-direction: column;
}

.chat-header-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #FFFFFF;
}

.chat-header-status {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.chat-messages-container {
  padding: 16px;
  max-height: 340px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #F8F6F4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 85%;
  word-wrap: break-word;
  flex-shrink: 0;
}

.chat-bubble.received {
  background-color: #FFFFFF;
  color: var(--brand-text-dark);
  align-self: flex-start;
  border-top-left-radius: 2px;
  border: 1px solid rgba(94, 86, 79, 0.08);
}

.chat-bubble.sent {
  background-color: rgba(169, 152, 140, 0.2);
  color: var(--brand-taupe-dark);
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.chat-faq-options {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 8px;
  margin-top: 8px;
  opacity: 1;
  max-height: 300px;
  transition: opacity 0.3s var(--ease-premium), max-height 0.3s var(--ease-premium), margin-top 0.3s var(--ease-premium);
  overflow: hidden;
}

.chat-faq-options.hidden {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  pointer-events: none;
}

.chat-faq-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-text-dark);
  opacity: 0.6;
  margin-bottom: 2px;
}

.chat-faq-opt {
  background-color: #FFFFFF;
  border: 1px solid rgba(169, 152, 140, 0.4);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: var(--brand-taupe-dark);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.chat-faq-opt:hover {
  background-color: rgba(169, 152, 140, 0.08);
  border-color: var(--brand-taupe);
}

.chat-footer {
  padding: 12px;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(94, 86, 79, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-direct-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-taupe);
  text-decoration: none;
  transition: color 0.2s ease;
}

.chat-direct-link:hover {
  color: var(--brand-taupe-dark);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 6px 0;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: var(--brand-taupe-dark);
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
  opacity: 0.4;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   10. STICKY BAR MOBILE
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: transparent;
  padding: 12px 16px 20px 16px;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-premium), transform 0.35s var(--ease-premium);
}

.mobile-sticky-bar.sticky-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px) !important;
}

.mobile-sticky-btn {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background-color: var(--brand-taupe-dark);
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  transition: transform 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium);
}

/* --------------------------------------------------------------------------
   8.1 PÁGINA DE POLÍTICA DE PRIVACIDADE (#privacidade-secao)
   -------------------------------------------------------------------------- */
#privacidade-secao {
  padding: clamp(90px, 12vw, 130px) 24px 80px 24px;
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  min-height: 80vh;
}

.privacidade-container {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.privacidade-back-nav {
  margin-bottom: 24px;
}

.privacidade-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-taupe);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background-color: rgba(94, 86, 79, 0.06);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.privacidade-back-btn:hover {
  background-color: var(--brand-taupe-dark);
  color: #FFFFFF;
  border-color: var(--brand-taupe-dark);
  transform: translateX(-3px);
}

.privacidade-hero {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.privacidade-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--brand-cashmere), var(--brand-taupe-dark));
}

.privacidade-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-taupe);
  margin-bottom: 14px;
}

.privacidade-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brand-taupe-deep);
  margin-bottom: 16px;
}

.privacidade-lead {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 24px;
}

.privacidade-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.privacidade-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-taupe-dark);
  background-color: var(--brand-nude);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.privacidade-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Corpo e Blocos da Política */
.privacidade-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.privacidade-block {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.privacidade-block:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-cashmere);
}

.privacidade-block-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-cashmere);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.privacidade-block-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: var(--brand-taupe-deep);
  margin-bottom: 16px;
  line-height: 1.25;
}

.privacidade-block p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 16px;
}

.privacidade-block p:last-child {
  margin-bottom: 0;
}

.privacidade-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacidade-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-body);
}

.privacidade-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--brand-taupe-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.privacidade-highlight-box {
  background-color: var(--brand-nude-light);
  border-left: 4px solid var(--brand-cashmere);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 20px 0;
}

.privacidade-highlight-box p {
  color: var(--brand-taupe-dark);
  font-weight: 500;
  margin: 0;
}

/* Card DPO e Ações */
.privacidade-dpo-card {
  background: linear-gradient(135deg, var(--brand-dark-surface) 0%, var(--brand-dark) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 44px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-top: 12px;
}

.privacidade-dpo-info h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.privacidade-dpo-info p {
  color: var(--brand-cashmere-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.privacidade-dpo-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: #FFFFFF;
}

.privacidade-dpo-contacts a {
  color: var(--brand-nude);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.privacidade-dpo-contacts a:hover {
  color: #FFFFFF;
}

.privacidade-dpo-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-cookie-trigger-page {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background-color: var(--brand-taupe-dark);
  color: #FFFFFF;
  border: 1px solid var(--brand-taupe-dark);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: all var(--transition-fast);
}

.btn-cookie-trigger-page:hover {
  background-color: var(--brand-taupe);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   11. LGPD COOKIE BANNER & MODAL DE PREFERÊNCIAS
   -------------------------------------------------------------------------- */
.lgpd-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 460px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 995;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(24px);
  visibility: hidden;
  transition: opacity 0.45s var(--ease-premium), transform 0.45s var(--ease-premium), visibility 0.45s;
}

.lgpd-banner.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.lgpd-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lgpd-badge-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-nude);
  color: var(--brand-taupe-dark);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.lgpd-badge-icon svg {
  width: 16px;
  height: 16px;
}

.lgpd-banner-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-taupe-deep);
  margin: 0;
}

.lgpd-banner-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-body);
  margin: 0;
}

.lgpd-privacy-link {
  color: var(--brand-taupe-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.lgpd-privacy-link:hover {
  color: var(--brand-taupe);
}

.lgpd-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.btn-lgpd-accept {
  padding: 9px 18px;
  font-size: 0.82rem;
  min-height: 36px;
  background-color: var(--brand-taupe-dark);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--brand-taupe-dark);
  transition: all var(--transition-fast);
}

.btn-lgpd-accept:hover {
  background-color: var(--brand-taupe);
  border-color: var(--brand-taupe);
  transform: translateY(-1px);
}

.btn-lgpd-essential {
  padding: 9px 16px;
  font-size: 0.82rem;
  min-height: 36px;
  background-color: transparent;
  color: var(--brand-taupe-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-lgpd-essential:hover {
  background-color: var(--brand-nude-light);
  border-color: var(--brand-taupe);
}

.btn-lgpd-customize {
  padding: 8px 12px;
  font-size: 0.82rem;
  background: transparent;
  border: none;
  color: var(--brand-taupe);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.btn-lgpd-customize:hover {
  color: var(--brand-taupe-deep);
}

/* Modal de Preferências de Cookies */
.lgpd-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(24, 20, 18, 0.65);
  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.35s var(--ease-premium), visibility 0.35s;
}

.lgpd-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lgpd-modal {
  background-color: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s var(--ease-premium);
}

.lgpd-modal-overlay.active .lgpd-modal {
  transform: translateY(0) scale(1);
}

.lgpd-modal-header {
  padding: 24px 28px 18px 28px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.lgpd-modal-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--brand-taupe-deep);
  margin-bottom: 4px;
}

.lgpd-modal-subtitle {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}

.lgpd-modal-close {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--brand-taupe);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.lgpd-modal-close:hover {
  color: var(--brand-taupe-deep);
  background-color: var(--brand-nude);
}

.lgpd-modal-body {
  padding: 20px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lgpd-category-card {
  background-color: var(--brand-offwhite);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.lgpd-category-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.lgpd-category-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lgpd-cat-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-taupe-deep);
}

.lgpd-cat-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: rgba(94, 86, 79, 0.12);
  color: var(--brand-taupe-dark);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.lgpd-cat-optional {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: var(--brand-nude);
  color: var(--brand-taupe);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.lgpd-cat-desc {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-body);
  margin: 0;
}

/* Switches Personalizados */
.lgpd-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.lgpd-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.lgpd-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D1C9C1;
  transition: 0.3s var(--ease-premium);
  border-radius: 24px;
}

.lgpd-slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s var(--ease-premium);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lgpd-switch input:checked + .lgpd-slider {
  background-color: var(--brand-taupe-dark);
}

.lgpd-switch input:checked + .lgpd-slider::before {
  transform: translateX(20px);
}

.lgpd-slider.disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

.lgpd-modal-footer {
  padding: 18px 28px 24px 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.btn-lgpd-save {
  padding: 9px 18px;
  font-size: 0.86rem;
  border-radius: var(--radius-pill);
  background-color: transparent;
  color: var(--brand-taupe-dark);
  border: 1px solid var(--border-color);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-lgpd-save:hover {
  background-color: var(--brand-nude-light);
  border-color: var(--brand-taupe);
}

.btn-lgpd-accept-all {
  padding: 9px 20px;
  font-size: 0.86rem;
  border-radius: var(--radius-pill);
  background-color: var(--brand-taupe-dark);
  color: #FFFFFF;
  border: 1px solid var(--brand-taupe-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-lgpd-accept-all:hover {
  background-color: var(--brand-taupe);
  border-color: var(--brand-taupe);
}

/* Links no Footer */
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-compliance-items {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-legal-link {
  color: var(--brand-cashmere-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.84rem;
  transition: color var(--transition-fast);
}

.footer-legal-link:hover {
  color: #FFFFFF;
}

.footer-cookie-btn {
  background: transparent;
  border: none;
  color: var(--brand-cashmere-light);
  font-size: 0.84rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  font-family: inherit;
  transition: color var(--transition-fast);
}

.footer-cookie-btn:hover {
  color: #FFFFFF;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   12. RESPONSIVIDADE & MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
    max-width: 380px;
    margin: 0 auto;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-image-wrapper {
    max-width: 440px;
    margin: 0 auto;
  }
  .metodologia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1001;
    transition: right 0.4s var(--ease-premium);
    padding: 40px 24px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.3rem;
    font-family: var(--font-serif);
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .mosaico-seamless-grid {
    grid-template-columns: 1fr;
  }

  .mosaico-card {
    padding: 24px 20px;
  }

  .artigo-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .artigo-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mobile-sticky-bar {
    display: block;
  }

  .whatsapp-widget {
    bottom: 86px;
    right: 16px;
  }

  .lgpd-banner {
    left: 16px;
    right: 16px;
    bottom: 86px;
    max-width: none;
  }

  .privacidade-dpo-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero-card-floating {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .sobre-pillars {
    grid-template-columns: 1fr;
  }
  .metodologia-grid {
    grid-template-columns: 1fr;
  }
  .hero-trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-compliance-items {
    justify-content: center;
  }
  .lgpd-modal {
    max-height: 85vh;
  }
  .lgpd-modal-header {
    padding: 18px 20px;
  }
  .lgpd-modal-body {
    padding: 16px 20px;
  }
  .lgpd-modal-footer {
    padding: 16px 20px;
    flex-direction: column;
  }
  .btn-lgpd-save, .btn-lgpd-accept-all {
    width: 100%;
    text-align: center;
  }
}

