/* ==========================================================================
   COMPONENTES VISUAIS - COMPONENTS.CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   SEÇÃO 0: NAVBAR INTELIGENTE
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: top var(--transition-normal), padding var(--transition-normal), background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal), opacity var(--transition-normal), visibility var(--transition-normal);
}

body.is-blog .site-header,
.site-header.header-scrolled {
  padding: 12px 0;
  background-color: var(--bg-footer);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
}

.site-header.header-hidden {
  top: -150px;
  transform: translateY(-200%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 48px;
  width: auto;
  transition: transform var(--transition-fast);
}
.brand-logo img:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links a {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--brand-gold);
  transition: width var(--transition-normal);
}

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

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

.header-cta .btn {
  white-space: nowrap;
  padding: 12px 24px;
  font-size: 0.88rem;
}

/* Hamburger Menu Mobile */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  align-items: center;
  justify-content: center;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  display: block;
  position: relative;
  transition: transform var(--transition-normal), opacity var(--transition-normal), background-color var(--transition-normal);
}

.hamburger-line::before,
.hamburger-line::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  left: 0;
  transition: transform var(--transition-normal);
}

.hamburger-line::before { top: -8px; }
.hamburger-line::after { top: 8px; }

.nav-hamburger.is-active .hamburger-line {
  background-color: transparent;
}
.nav-hamburger.is-active .hamburger-line::before {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-hamburger.is-active .hamburger-line::after {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 992px) {
  .header-cta {
    display: none !important;
  }
  .nav-hamburger {
    display: flex;
    margin-left: auto;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    margin: 0;
    background-color: rgba(22, 15, 11, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
  }
  .nav-links.nav-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   SEÇÃO 1: HERO (#inicio)
   -------------------------------------------------------------------------- */
.section-hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px 0;
  background-color: var(--brand-navy-dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-image: url('../assets/img/escritorio.avif');
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

.section-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #160F0B 0%, #160F0B 45%, rgba(22, 15, 11, 0.75) 75%, rgba(22, 15, 11, 0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 24px;
  max-width: 780px;
}
.hero-content h1 strong,
.hero-content h1 span.highlight {
  font-style: italic;
  font-weight: inherit;
  color: var(--brand-gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: #E2E8F0;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Authority Stats Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(245, 237, 230, 0.92);
  line-height: 1.25;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(217, 206, 199, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .section-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 100px 0 32px 0;
    display: flex;
    align-items: center;
  }
  .hero-container {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .hero-content h1 {
    font-size: clamp(1.65rem, 5.2vw, 2.4rem);
    margin-bottom: 16px;
    line-height: 1.22;
    width: 100%;
  }
  .hero-sub {
    font-size: clamp(0.9rem, 3.2vw, 1rem);
    margin-bottom: 20px;
    line-height: 1.55;
    width: 100%;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.92rem;
  }
  .section-hero::before {
    width: 100%;
    opacity: 0.2;
  }
  .section-hero::after {
    background: linear-gradient(180deg, #160F0B 0%, rgba(22, 15, 11, 0.85) 60%, #160F0B 100%);
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 14px 10px;
    padding-top: 16px;
  }
  .stat-item {
    padding-left: 10px;
  }
  .stat-number {
    font-size: 0.9rem;
  }
  .stat-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px), (max-height: 700px) {
  .section-hero {
    padding: 90px 0 24px 0;
  }
  .hero-content h1 {
    font-size: clamp(1.45rem, 5.5vw, 1.8rem);
    margin-bottom: 12px;
  }
  .hero-sub {
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.45;
  }
  .hero-actions {
    margin-bottom: 18px;
    gap: 8px;
  }
  .hero-actions .btn {
    padding: 12px 16px;
    font-size: 0.88rem;
  }
  .hero-stats {
    gap: 10px 8px;
    padding-top: 12px;
  }
  .stat-number {
    font-size: 0.85rem;
  }
  .stat-label {
    font-size: 0.62rem;
  }
}

/* --------------------------------------------------------------------------
   SEÇÃO DORES / ENTENDEMOS SUA DOR (#dores)
   -------------------------------------------------------------------------- */
.section-dores {
  padding: 120px 0;
  background-color: var(--bg-main);
}

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

.dor-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
}
.dor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  width: 40px;
  height: 2px;
  background-color: var(--brand-gold);
}

.dor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--border-gold);
}

.dor-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--brand-gold-light);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.dor-title {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--brand-navy);
}

.dor-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   SEÇÃO 2: A ADVOGADA / SOBRE (#sobre)
   -------------------------------------------------------------------------- */
.section-sobre {
  padding: 120px 0;
  background-color: #FFFFFF;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}

.sobre-image-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sobre-image-frame {
  border: 1px solid var(--border-gold);
  padding: 8px;
  border-radius: var(--radius-md);
  background-color: var(--bg-alt);
  height: 100%;
  width: 100%;
  display: flex;
}

.sobre-image-frame img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(22, 15, 11, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand-gold);
  box-shadow: var(--shadow-medium);
}

.sobre-badge-number {
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--brand-gold);
  font-weight: 600;
  line-height: 1;
}

.sobre-badge-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #CBD5E1;
}

.sobre-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.sobre-authorities {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-role {
  font-size: 0.85rem;
  color: var(--brand-gold);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   TABS DE NAVEGAÇÃO ("O Escritório" vs "Nossa Equipe")
   -------------------------------------------------------------------------- */
.sobre-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.sobre-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full, 50px);
  color: var(--brand-navy);
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-small);
}

.tab-btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
}

.sobre-tab-btn:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.sobre-tab-btn.active {
  background-color: var(--brand-navy);
  color: #ffffff;
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-medium);
}

.sobre-tab-btn.active .tab-btn-icon {
  color: var(--brand-gold);
}

@media (max-width: 768px) {
  .tab-prefix {
    display: none;
  }
  .sobre-tab-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* PANÉIS DE CONTEÚDO */
.sobre-tab-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.sobre-tab-panel.active {
  display: block;
  opacity: 1;
}

/* CARDS DE DIFERENCIAIS / TAGS COMPACTAS */
.sobre-differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.diff-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-navy);
  transition: all var(--transition-normal);
}

.diff-tag:hover {
  border-color: var(--brand-gold);
  background-color: #FFFFFF;
  transform: translateY(-1px);
}

.diff-tag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--brand-gold-light);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* DESTAQUE PRINCIPAL - DRA. ELLEN */
.featured-lead-card {
  background: linear-gradient(135deg, #160F0B 0%, #211812 100%);
  border: 1px solid var(--brand-gold);
  border-radius: var(--radius-md);
  padding: 40px;
  color: #FFFFFF;
  margin-bottom: 56px;
  position: relative;
  box-shadow: var(--shadow-large);
  overflow: hidden;
}

.lead-badge-header {
  margin-bottom: 24px;
}

.badge-gold {
  display: inline-block;
  background-color: var(--brand-gold-light);
  color: var(--brand-gold);
  border: 1px solid var(--brand-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.lead-card-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
}

.lead-image-frame {
  border: 2px solid var(--brand-gold);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.lead-image-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.featured-lead-card:hover .lead-image-frame img {
  transform: scale(1.03);
}

.lead-details h3 {
  font-size: 1.85rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-family: var(--font-title);
}

.lead-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lead-oab {
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.lead-exp {
  background-color: rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.82rem;
}

.lead-specialization {
  font-size: 1.05rem;
  color: var(--brand-gold);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}

.lead-bio {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 20px;
}

.lead-quote {
  font-style: italic;
  color: #F1F5F9;
  border-left: 3px solid var(--brand-gold);
  padding-left: 16px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CARROSSEL DA EQUIPE (FOTO À ESQUERDA, TEXTO À DIREITA, COLUNA DE AVATARES À DIREITA) */
.team-carousel-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.team-carousel-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: center;
}

.carousel-main-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  width: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 32px;
  overflow: hidden;
}

/* CARDS SPLIT: FOTO À ESQUERDA, TEXTO À DIREITA */
.slide-card-split {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* CARD FULL: APENAS FOTO (EQUIPE COMPLETA) */
.slide-card-full {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slide-photo-wrap-full {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--brand-gold);
  box-shadow: var(--shadow-medium);
  width: 100%;
}

.slide-photo-wrap-full img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.slide-card-full:hover .slide-photo-wrap-full img {
  transform: scale(1.02);
}

.slide-full-caption {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 0;
  border-top: 1px solid var(--border-light);
}

.slide-photo-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.slide-photo-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--brand-gold);
  box-shadow: var(--shadow-medium);
}

.slide-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.slide-card-split:hover .slide-photo-wrap img {
  transform: scale(1.03);
}

.slide-highlight-tag {
  display: block;
  background: rgba(22, 15, 11, 0.95);
  color: #ffffff;
  border: 1px solid var(--brand-gold);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-small);
}

.slide-text-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.slide-role-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.slide-author-name {
  font-size: 1.75rem;
  color: var(--brand-navy);
  margin-bottom: 6px;
  font-family: var(--font-title);
  line-height: 1.25;
}

.slide-oab-badge {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--brand-navy);
  background-color: var(--brand-gold-light);
  border: 1px solid var(--brand-gold);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 16px;
}

.slide-spec-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.slide-bio-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.slide-quote {
  font-style: italic;
  color: var(--brand-navy);
  border-left: 3px solid var(--brand-gold);
  padding-left: 14px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* BARRA DE NAVEGAÇÃO INTERNA DO CARROSSEL */
.carousel-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.carousel-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--brand-navy);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.carousel-arrow-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow-btn:hover {
  background-color: var(--brand-navy);
  color: var(--brand-gold);
  border-color: var(--brand-gold);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(6, 17, 30, 0.15);
}

.carousel-arrow-btn:active {
  transform: scale(0.96);
}

.carousel-counter {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: 1px;
}

.carousel-counter .counter-current {
  color: var(--brand-gold);
}

/* COLUNA DE AVATARES À DIREITA */
.carousel-avatars-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.avatars-column-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.avatar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-normal);
  width: 100%;
}

.avatar-item:hover {
  border-color: var(--brand-gold);
  background-color: #FFFFFF;
  transform: translateX(4px);
}

.avatar-item.active {
  background-color: var(--brand-navy);
  border-color: var(--brand-gold);
  box-shadow: 0 4px 12px rgba(6, 17, 30, 0.2);
}

.avatar-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-light);
  flex-shrink: 0;
  transition: border-color var(--transition-normal);
}

.avatar-item.active .avatar-thumb {
  border-color: var(--brand-gold);
}

.avatar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.avatar-name {
  font-size: 0.88rem;
  color: var(--brand-navy);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: color var(--transition-normal);
}

.avatar-item.active .avatar-name {
  color: #FFFFFF;
  font-weight: 700;
}

.avatar-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.avatar-item.active .avatar-role {
  color: var(--brand-gold);
}

@media (max-width: 992px) {
  .hide-on-mobile,
  .carousel-nav-bar,
  .carousel-arrow-btn,
  .carousel-counter {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow: hidden !important;
  }
  .team-carousel-container {
    padding: 16px 12px;
  }
  .team-carousel-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .carousel-track {
    align-items: flex-start;
  }
  .carousel-slide {
    padding: 16px 12px;
  }
  .slide-card-split {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .slide-text-wrap {
    align-items: center;
  }
  .slide-oab-badge {
    margin: 0 auto 16px;
  }
  .slide-bio-text,
  .slide-quote {
    text-align: center;
  }
  .slide-photo-col,
  .slide-photo-wrap {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 8px;
  }
  .slide-photo-wrap img {
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center center;
  }
  .slide-photo-wrap-full img {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center 30%;
    max-height: 380px;
  }
  .carousel-avatars-column {
    order: -1;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 8px 4px;
    gap: 12px;
    background: transparent;
    border: none;
    border-radius: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .carousel-avatars-column::-webkit-scrollbar {
    display: none;
  }
  .avatars-column-title {
    display: none;
  }
  .avatar-item {
    min-width: auto;
    width: 52px;
    height: 52px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    flex-shrink: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .avatar-item:hover {
    transform: none;
    background: transparent;
  }
  .avatar-item.active {
    background: transparent;
    box-shadow: none;
  }
  .avatar-info {
    display: none;
  }
  .avatar-thumb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .avatar-item.active .avatar-thumb {
    border-color: var(--brand-gold);
    transform: scale(1.12);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.6);
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-badge {
    position: static;
    margin-top: 20px;
  }
  .sobre-differentials-grid {
    grid-template-columns: 1fr;
  }
}




/* --------------------------------------------------------------------------
   SEÇÃO 3: ÁREAS DE ATUAÇÃO (#atuacao)
   -------------------------------------------------------------------------- */
.section-atuacao {
  padding: 120px 0;
  background-color: var(--bg-alt);
}

.atuacao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.atuacao-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.atuacao-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--border-gold);
}

.atuacao-num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-gold);
  opacity: 1;
  margin-bottom: 16px;
}

.atuacao-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--brand-navy);
}

.atuacao-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.atuacao-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   SEÇÃO 4: METODOLOGIA (#metodologia)
   -------------------------------------------------------------------------- */
.section-metodologia {
  padding: 120px 0;
  background-color: var(--brand-navy);
  color: #FFFFFF;
}

.section-metodologia .section-title {
  color: #FFFFFF;
}

.metodologia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 60px;
}

.metodologia-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(200, 153, 46, 0.3);
  z-index: 1;
}

.metodo-card {
  position: relative;
  z-index: 2;
  background-color: var(--brand-navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.metodo-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-gold);
}

.metodo-step {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 20px;
}

.metodo-title {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.metodo-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .metodologia-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metodologia-grid::before { display: none; }
}
@media (max-width: 600px) {
  .metodologia-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   SEÇÃO 5: DEPOIMENTOS (#depoimentos)
   -------------------------------------------------------------------------- */
.section-depoimentos {
  padding: 120px 0;
  background-color: #FFFFFF;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.depoimento-card {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.depoimento-stars {
  color: var(--brand-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.depoimento-text {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.depoimento-author {
  display: flex;
  flex-direction: column;
}

.depoimento-name {
  font-weight: 700;
  color: var(--brand-navy);
  font-size: 1rem;
}

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

/* --------------------------------------------------------------------------
   SEÇÃO 6: FAQ / DÚVIDAS FREQUENTES (#faq)
   -------------------------------------------------------------------------- */
.section-faq {
  padding: 120px 0;
  background-color: var(--bg-main);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.is-open {
  border-color: var(--brand-gold);
}

.faq-trigger {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background-color: var(--brand-gold-light);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
  flex-shrink: 0;
  font-size: 0;
  color: transparent;
}

/* Linha horizontal do + */
.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: var(--brand-gold);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: background-color var(--transition-normal);
}

/* Linha vertical do + */
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 12px;
  background-color: var(--brand-gold);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--brand-gold);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background-color: #FFFFFF;
}

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

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

.faq-content-inner {
  overflow: hidden;
}

.faq-body {
  padding: 0 32px 28px 32px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   SEÇÃO BLOG DINÂMICO & ARTIGO INDIVIDUAL (per ajusteparablog.md)
   -------------------------------------------------------------------------- */
#blog-secao, #artigo-secao {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.blog-title-section {
  font-size: 2.5rem;
  margin-bottom: 48px;
  text-align: center;
}

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

.blog-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

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

.blog-card-date {
  font-size: 0.82rem;
  color: var(--brand-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--brand-navy);
}

.blog-card-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-navy);
}

/* Layout do Artigo & Sticky Sidebar */
.artigo-single-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.artigo-main {
  background-color: #FFFFFF;
}

.btn-voltar {
  background: none;
  border: none;
  color: var(--brand-gold);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 24px;
}

.artigo-main-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--brand-navy);
}

.artigo-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-light);
  margin-bottom: 32px;
}

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

.artigo-text-body h2 {
  font-size: 1.6rem;
  margin: 36px 0 16px 0;
}
.artigo-text-body h3 {
  font-size: 1.3rem;
  margin: 28px 0 12px 0;
}

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

.sidebar-card {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
}

.autor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2px solid var(--brand-gold);
}

.autor-avatar--fallback {
  background-color: var(--brand-navy);
  color: var(--brand-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.autor-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

.autor-nome {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  display: block;
  margin-bottom: 4px;
}

.autor-cargo {
  font-size: 0.85rem;
  color: var(--brand-gold);
  display: block;
  margin-bottom: 12px;
}

.autor-bio {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.sidebar-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-light);
  margin: 16px 0;
}

.sidebar-heading {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.sidebar-post-item {
  display: block;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-light);
  text-decoration: none;
}
.sidebar-post-item:last-child {
  border-bottom: none;
}

.sidebar-post-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-navy);
  display: block;
  margin-bottom: 4px;
}

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

@media (max-width: 992px) {
  .artigo-layout {
    grid-template-columns: 1fr;
  }
  .artigo-sidebar {
    position: static;
  }
}

/* --------------------------------------------------------------------------
   SEÇÃO 7: CTA FINAL (#contato)
   -------------------------------------------------------------------------- */
.section-cta-final {
  padding: 120px 0;
  background-color: var(--brand-navy);
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-box p {
  font-size: 1.15rem;
  color: #E2E8F0;
  margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   SEÇÃO 8: FOOTER MINIMALISTA (per footer.md)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-footer);
  color: var(--text-footer);
  padding: 80px 24px 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #FFFFFF !important;
  max-width: 400px;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.footer-links li, .footer-contact-info li {
  margin-bottom: 12px;
}

.footer-links a, .footer-contact-info a {
  color: var(--text-footer);
  font-size: 0.92rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #FFFFFF !important;
}

.footer-bottom p,
.agency-credit {
  color: #FFFFFF !important;
  text-decoration: none;
}

.credit-link,
.footer-credit-link {
  color: #FFFFFF !important;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.credit-link:hover,
.footer-credit-link:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   WIDGET DE WHATSAPP INTELIGENTE (per botaozap.md)
   -------------------------------------------------------------------------- */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  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: var(--brand-whatsapp);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  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: var(--brand-whatsapp-hover);
  }
}

.whatsapp-tooltip {
  background-color: var(--brand-navy);
  border: 1px solid rgba(200, 153, 46, 0.3);
  color: #FFFFFF;
  padding: 0 14px;
  border-radius: 6px;
  margin-bottom: 0;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: min(280px, calc(100vw - 48px));
  box-sizing: border-box;
  white-space: normal;
  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: 10px 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-navy);
  border-right: 1px solid rgba(200, 153, 46, 0.3);
  border-bottom: 1px solid rgba(200, 153, 46, 0.3);
  transform: rotate(45deg);
}

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

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

.whatsapp-chat-panel {
  width: 320px;
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  background-color: var(--brand-white);
  border: 1px solid rgba(11, 27, 45, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  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-navy);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--brand-gold);
  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.7);
}

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

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

.chat-bubble.received {
  background-color: var(--brand-white);
  color: var(--text-dark);
  align-self: flex-start;
  border-top-left-radius: 2px;
  border: 1px solid rgba(0, 34, 77, 0.05);
}

.chat-bubble.sent {
  background-color: rgba(200, 153, 46, 0.12);
  color: var(--brand-navy);
  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(--text-dark);
  opacity: 0.6;
  margin-bottom: 2px;
}

.chat-faq-opt {
  background-color: var(--brand-white);
  border: 1px solid rgba(200, 153, 46, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: var(--brand-navy);
  transition: background-color 0.2s var(--ease-premium), border-color 0.2s var(--ease-premium);
  min-height: 48px;
  display: flex;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .chat-faq-opt:hover {
    background-color: rgba(200, 153, 46, 0.05);
    border-color: var(--brand-gold);
  }
}

.chat-footer {
  padding: 12px;
  background-color: var(--brand-white);
  border-top: 1px solid rgba(0, 34, 77, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-direct-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-gold);
  text-decoration: none;
  transition: color 0.2s var(--ease-premium);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (hover: hover) and (pointer: fine) {
  .chat-direct-link:hover {
    color: var(--brand-navy);
  }
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 6px 0;
}
.typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: var(--brand-navy);
  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; }
}

.whatsapp-trigger-btn:focus-visible,
.close-tooltip-btn:focus-visible,
.chat-faq-opt:focus-visible {
  outline: 2px solid var(--brand-gold) !important;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .whatsapp-widget {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   STICKY BAR MOBILE (per mobile.md)
   -------------------------------------------------------------------------- */
.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;
  position: relative;
  background-color: var(--brand-gold);
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.mobile-sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4A311F 0%, #2D1D12 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
  border-radius: inherit;
}

.mobile-sticky-btn:hover::before {
  opacity: 1;
}

.mobile-sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   BANCO DE COOKIES LGPD (per lgpd.js)
   -------------------------------------------------------------------------- */
.lgpd-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background-color: var(--brand-navy);
  color: #FFFFFF;
  border: 1px solid rgba(33, 24, 18, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-medium);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

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

.lgpd-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #CBD5E1;
}

.lgpd-btn {
  align-self: flex-end;
  position: relative;
  background-color: var(--brand-gold);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: transform var(--transition-normal);
}

.lgpd-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4A311F 0%, #2D1D12 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
  border-radius: inherit;
}

.lgpd-btn:hover::before {
  opacity: 1;
}

.lgpd-btn:hover {
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   POLÍTICA DE PRIVACIDADE & LGPD PAGE
   -------------------------------------------------------------------------- */
.legal-hero {
  background-color: var(--bg-dark);
  color: #FFFFFF;
  padding: 130px 0 70px 0;
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}

.legal-hero .section-kicker {
  color: var(--brand-gold);
}

.legal-hero h1 {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-top: 10px;
  margin-bottom: 16px;
  font-weight: 400;
}

.legal-hero p {
  color: var(--text-footer);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
}

.legal-section {
  background-color: var(--bg-main);
  padding: 50px 0 90px 0;
}

.legal-container {
  max-width: 960px;
}

.legal-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-light);
}

.legal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-meta span strong {
  color: var(--brand-navy);
}

.legal-article h2 {
  font-size: 1.45rem;
  color: var(--brand-navy);
  margin-top: 36px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(33, 24, 18, 0.08);
}

.legal-article h2:first-of-type {
  margin-top: 0;
}

.legal-article h3 {
  font-size: 1.15rem;
  color: var(--brand-gold);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-article p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-article ul {
  margin-left: 24px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.legal-article li {
  margin-bottom: 10px;
  line-height: 1.65;
  font-size: 0.98rem;
}

.legal-article strong {
  color: var(--brand-navy);
}

.legal-box {
  background-color: var(--bg-alt);
  border-left: 4px solid var(--brand-gold);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

.legal-box p {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.legal-box p:last-child {
  margin-bottom: 0;
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--brand-gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.legal-back-btn:hover {
  color: var(--brand-gold-hover);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 28px 20px;
  }
  .legal-hero {
    padding: 110px 0 50px 0;
  }
  .legal-hero h1 {
    font-size: 1.8rem;
  }
}

