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

/* --------------------------------------------------------------------------
   NAVBAR INTELIGENTE (HEADER)
   -------------------------------------------------------------------------- */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 980;
  transition: background-color var(--transition-normal), 
              backdrop-filter var(--transition-normal),
              transform 0.4s var(--ease-premium),
              box-shadow var(--transition-normal);
}

.header-nav.nav-scrolled,
body.page-blog .header-nav {
  background-color: var(--brand-navy-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-fine-dark);
}

.header-nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--brand-gold);
  border: 1px solid rgba(197, 160, 89, 0.6);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--brand-white);
  letter-spacing: 0.08em;
  font-weight: 300;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 0.6rem;
  color: var(--brand-gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.9;
}

.nav-wrapper {
  margin-left: auto;
  margin-right: 28px;
  display: flex;
  justify-content: flex-end;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 24px);
}

.nav-link {
  font-size: clamp(0.82rem, 0.9vw + 0.35rem, 0.92rem);
  font-weight: 500;
  color: var(--brand-text-bright);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--brand-gold);
  transition: width 0.3s var(--ease-premium);
}

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

/* Hamburger Menu Mobile */
.nav-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
}

.hamburger-line {
  width: 26px;
  height: 2px;
  background-color: var(--brand-white, #FFFFFF);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-premium), opacity 0.35s var(--ease-premium);
}

.nav-hamburger.active .line-1 {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active .line-2 {
  opacity: 0;
}

.nav-hamburger.active .line-3 {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
  .nav-wrapper {
    margin-right: 0;
  }

  .nav-hamburger {
    display: flex !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(13, 27, 46, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-premium), visibility 0.35s var(--ease-premium), transform 0.35s var(--ease-premium);
    z-index: 1000;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .nav-cta {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   SEÇÃO HERO (#inicio)
   -------------------------------------------------------------------------- */
.section-hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + clamp(30px, 5vh, 60px));
  padding-bottom: clamp(50px, 8vh, 100px);
  background-color: var(--brand-navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url('../assets/img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  transform: scale(1.22);
  transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.section-hero.active::before {
  transform: scale(1);
}

.section-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-navy) 0%, rgba(22, 46, 82, 0.9) 45%, rgba(22, 46, 82, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: -15%;
  width: clamp(400px, 50vw, 700px);
  height: clamp(400px, 50vw, 700px);
  background: radial-gradient(circle, rgba(197, 160, 89, 0.22) 0%, rgba(197, 160, 89, 0.08) 45%, rgba(0,0,0,0) 75%);
  filter: blur(90px);
  -webkit-filter: blur(90px);
  z-index: 3;
  pointer-events: none;
  opacity: 0.7;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
}

.hero-title {
  font-size: clamp(2.1rem, 4vw + 0.8rem, 4rem);
  color: var(--brand-white);
  line-height: 1.15;
  margin-bottom: clamp(16px, 3vw, 24px);
}

.hero-title em {
  font-style: italic;
  color: var(--brand-gold);
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.25rem);
  color: var(--brand-text-light);
  margin-bottom: clamp(24px, 4vw, 40px);
  max-width: 620px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 16px);
}

.hero-badge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 16px);
  margin-top: clamp(24px, 4vw, 40px);
  padding: clamp(16px, 2.5vw, 24px);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-badge-item {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
}

.hero-badge-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}

.hero-badge-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 60%, #AA820A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-badge-label {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(240, 244, 248, 0.8);
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-badge-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 20px;
  }
  
  .hero-badge-item:not(:last-child)::after {
    display: none;
  }
  
  .hero-badge-item:not(:last-child) {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 992px) {
  .section-hero::before {
    width: 100%;
    opacity: 0.25;
  }
  .section-hero::after {
    background: linear-gradient(180deg, var(--brand-navy) 0%, rgba(22, 46, 82, 0.85) 60%, var(--brand-navy) 100%);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --------------------------------------------------------------------------
   SEÇÃO SOBRE (#sobre) E EQUIPE DE ADVOGADAS
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 40px);
  margin-top: clamp(24px, 4vw, 40px);
}

.lawyer-card {
  background: var(--brand-navy-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: 0 12px 32px rgba(10, 25, 47, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.lawyer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(10, 25, 47, 0.35);
  border-color: var(--brand-gold);
}

.lawyer-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 480px;
  overflow: hidden;
  background: var(--brand-navy);
}

.lawyer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-premium);
}

.lawyer-card:hover .lawyer-img {
  transform: scale(1.04);
}

.lawyer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand-gold);
  color: var(--brand-navy-deep);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.lawyer-info {
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  background: linear-gradient(180deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.lawyer-name {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.38rem);
  color: var(--brand-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.lawyer-oab {
  font-size: 0.88rem;
  color: var(--brand-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about-placeholder-card {
  position: relative;
  border-radius: var(--radius-md);
  height: clamp(340px, 42vh, 480px);
  background: linear-gradient(145deg, var(--brand-navy-deep), var(--brand-navy));
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3.5vw, 32px);
  text-align: center;
}

.about-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  margin-bottom: 8px;
}

.about-placeholder-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-gold);
  font-weight: 500;
}

.about-lawyer-name {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.5vw + 0.4rem, 1.4rem);
  color: var(--brand-white);
  font-weight: 400;
  line-height: 1.3;
}

.about-lawyer-cnpj {
  font-size: 0.82rem;
  color: var(--brand-text-light);
  letter-spacing: 0.05em;
}

.about-content-text {
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.08rem);
  color: var(--brand-text-dark);
  line-height: 1.8;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(20px, 3.5vw, 32px);
}

.about-highlight-box {
  background: var(--brand-navy-card);
  padding: clamp(14px, 2vw, 20px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.about-highlight-box h4 {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  font-weight: 600;
  color: var(--brand-gold);
  margin-bottom: 6px;
}

.about-highlight-box p {
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  color: var(--brand-text-light);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    height: 400px;
  }
}

/* --------------------------------------------------------------------------
   SEÇÃO ÁREAS DE ATUAÇÃO (#atuacao)
   -------------------------------------------------------------------------- */
.atuacao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(32px, 5vw, 56px);
}

.atuacao-card {
  background: rgba(13, 27, 46, 0.65);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              border-color 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              box-shadow 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              background 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  min-height: clamp(250px, 30vh, 280px);
}

.atuacao-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold);
  background: rgba(22, 46, 82, 0.95);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              border-color 1s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              box-shadow 1s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              background 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.atuacao-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  color: var(--brand-gold);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.atuacao-card:hover .atuacao-icon {
  background: var(--brand-gold);
  color: var(--brand-navy-deep);
  transform: scale(1.05);
  transition: background 1s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.atuacao-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.5vw + 0.4rem, 1.35rem);
  color: var(--brand-white);
  font-weight: 400;
  margin-bottom: 6px;
}

.atuacao-card-summary {
  font-size: clamp(0.82rem, 1vw + 0.35rem, 0.92rem);
  color: var(--brand-text-light);
  font-weight: 300;
}

.atuacao-hover-details {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              max-height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              margin-top 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.atuacao-card:hover .atuacao-hover-details,
.atuacao-hover-details.force-show {
  opacity: 1;
  max-height: 500px;
  margin-top: 18px;
  padding-bottom: 16px;
  overflow: visible;
  transition: opacity 1s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              max-height 1s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              margin-top 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.atuacao-hover-details .btn {
  margin-bottom: 8px;
}

.atuacao-card-span-2 {
  grid-column: span 2;
}

.atuacao-card-desc {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  color: var(--brand-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.atuacao-sublist {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.atuacao-subitem {
  font-size: clamp(0.78rem, 1vw, 0.85rem);
  color: var(--brand-text-bright);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.atuacao-subitem::before {
  content: '•';
  color: var(--brand-gold);
  font-size: 1rem;
}

.atuacao-reveal-hint {
  font-size: 0.72rem;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 16px;
  display: inline-block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.atuacao-card:hover .atuacao-reveal-hint {
  opacity: 0;
  display: none;
}

@media (max-width: 992px) {
  .atuacao-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .atuacao-card-span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .atuacao-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   SEÇÃO METODOLOGIA (#metodologia)
   -------------------------------------------------------------------------- */
.section-metodologia {
  background-color: var(--brand-navy-deep);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  position: relative;
}

.metodologia-timeline-wrapper {
  position: relative;
  margin-top: clamp(32px, 5vw, 60px);
}

.metodologia-line {
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.1) 0%, rgba(197, 160, 89, 0.5) 50%, rgba(197, 160, 89, 0.1) 100%);
  z-index: 1;
}

.metodologia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  position: relative;
  z-index: 2;
}

.metodologia-card {
  background: rgba(22, 46, 82, 0.9);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 32px) clamp(18px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), 
              border-color var(--transition-fast), 
              box-shadow var(--transition-fast);
}

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

.metodologia-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.metodologia-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-navy-deep);
  background: var(--brand-gold);
  padding: 3px 10px;
  border-radius: 12px;
}

.metodologia-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metodologia-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.2vw + 0.4rem, 1.28rem);
  color: var(--brand-white);
  font-weight: 400;
  margin-bottom: 12px;
}

.metodologia-desc {
  font-size: clamp(0.82rem, 1vw + 0.35rem, 0.9rem);
  color: var(--brand-text-light);
  line-height: 1.65;
  font-weight: 300;
}

@media (max-width: 992px) {
  .metodologia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* --------------------------------------------------------------------------
   SEÇÃO FAQ (#faq) - GRID DE 2 COLUNAS & CARDS VISÍVEIS
   -------------------------------------------------------------------------- */
.faq-grid-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.faq-left-col {
  position: sticky;
  top: 110px;
}

.faq-intro-text {
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.08rem);
  color: var(--brand-text-dark);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 32px;
  font-weight: 400;
}

.faq-cta-card {
  background: var(--brand-navy-deep);
  border: 1px solid rgba(197, 160, 89, 0.25);
  padding: clamp(18px, 2.5vw, 24px);
  border-radius: var(--radius-md);
  color: var(--brand-white);
}

.faq-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.2vw + 0.4rem, 1.18rem);
  color: var(--brand-gold);
  margin-bottom: 8px;
}

.faq-cta-desc {
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  color: var(--brand-text-light);
  margin-bottom: 16px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
}

.faq-item {
  background: var(--brand-white);
  border: 1px solid rgba(22, 46, 82, 0.08);
  border-radius: var(--radius-md);
  padding: clamp(16px, 2.5vw, 20px) clamp(18px, 3vw, 24px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: border-color var(--transition-fast), 
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--brand-gold);
  box-shadow: 0 10px 24px rgba(22, 46, 82, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 1.2vw + 0.4rem, 1.15rem);
  color: var(--brand-navy);
  font-weight: 600;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand-gold-dark);
  transition: transform 0.3s var(--ease-premium), background 0.3s ease;
}

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

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-premium);
}

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

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

.faq-answer-text {
  padding-top: 14px;
  font-size: clamp(0.85rem, 1.1vw, 0.94rem);
  color: var(--brand-text-dark);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .faq-grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-left-col {
    position: static;
  }
}

/* --------------------------------------------------------------------------
   SEÇÕES DINÂMICAS DE BLOG (#blog-secao e #artigo-secao)
   -------------------------------------------------------------------------- */
#blog-secao {
  display: block;
}

#artigo-secao {
  display: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(28px, 4vw, 48px);
}

.blog-card {
  background: var(--brand-white);
  border: 1px solid var(--border-fine-light);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

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

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--brand-gold-dark);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.4vw + 0.4rem, 1.35rem);
  color: var(--brand-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: clamp(0.85rem, 1.1vw, 0.92rem);
  color: var(--brand-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.blog-card-link::after {
  content: '→';
  color: var(--brand-gold);
  transition: transform 0.2s var(--ease-premium);
}

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

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* LEITURA DE ARTIGO */
.artigo-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-top: 40px;
}

.artigo-main {
  background: var(--brand-white);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-fine-light);
}

.artigo-header-meta {
  font-size: 0.85rem;
  color: var(--brand-gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.artigo-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw + 0.5rem, 2.3rem);
  color: var(--brand-navy);
  margin-bottom: 24px;
  line-height: 1.25;
}

.artigo-body {
  font-size: clamp(0.98rem, 1.2vw + 0.4rem, 1.08rem);
  color: var(--brand-text-dark);
  line-height: 1.85;
}

.artigo-body p {
  margin-bottom: 20px;
}

.artigo-body h2, .artigo-body h3 {
  font-family: var(--font-serif);
  color: var(--brand-navy);
  margin: 32px 0 16px;
}

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

.author-box {
  background: var(--brand-white);
  border: 1px solid var(--border-fine-light);
  border-radius: var(--radius-md);
  padding: clamp(18px, 2.5vw, 24px);
  text-align: center;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--brand-gold);
}

.author-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.8rem;
  color: var(--brand-gold-dark);
  margin-bottom: 12px;
}

.author-bio {
  font-size: 0.85rem;
  color: var(--brand-text-muted);
  line-height: 1.5;
}

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

/* --------------------------------------------------------------------------
   FOOTER MINIMALISTA & PREMIUM
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--brand-navy-deep);
  color: var(--brand-text-light);
  padding: clamp(40px, 6vw, 56px) 0 clamp(24px, 4vw, 32px);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(24px, 4vw, 36px);
}

.footer-logo-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brand-white);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--brand-text-light);
  line-height: 1.6;
  max-width: 380px;
  font-weight: 300;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--brand-gold);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

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

.footer-links a, .footer-contact-info a, .footer-contact-info span {
  font-size: 0.82rem;
  color: var(--brand-text-light);
  font-weight: 300;
}

.footer-links a:hover, .footer-contact-info a:hover {
  color: var(--brand-gold);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--brand-text-light);
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 300;
}

.footer-privacy-link {
  color: var(--brand-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-privacy-link:hover {
  color: var(--brand-gold-light);
}

.credit-link {
  color: var(--brand-gold);
  font-weight: 400;
}

.credit-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer {
    padding-bottom: clamp(90px, 14vw, 110px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* --------------------------------------------------------------------------
   WIDGET DE WHATSAPP INTELIGENTE (BOTAOZAP.MD)
   -------------------------------------------------------------------------- */
.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 cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Botão Circular Principal - Verde Oficial */
.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: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  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;
  }
}

/* Tooltip de Inatividade */
.whatsapp-tooltip {
  background-color: var(--brand-navy);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: #FFFFFF;
  padding: 0 18px 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: 10px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              margin-bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              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-navy);
  border-right: 1px solid rgba(197, 160, 89, 0.3);
  border-bottom: 1px solid rgba(197, 160, 89, 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: 12px;
  margin: -12px -12px -12px 0;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.close-tooltip-btn:hover {
  color: var(--brand-gold);
}

/* Painel de Chat Simulado */
.whatsapp-chat-panel {
  width: 320px;
  background-color: var(--brand-white);
  border: 1px solid rgba(0, 34, 77, 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 cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              margin-bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              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(--brand-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(197, 160, 89, 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 cubic-bezier(0.16, 1, 0.3, 1), max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  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: var(--brand-white);
  border: 1px solid rgba(197, 160, 89, 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 cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 48px;
  display: flex;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .chat-faq-opt:hover {
    background-color: rgba(197, 160, 89, 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 cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* Efeito de Digitando (Loader) */
.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;
  }
}

/* --------------------------------------------------------------------------
   ESTILOS GERAIS DO BLOG E ARTIGOS (AJUSTEPARABLOG.MD)
   -------------------------------------------------------------------------- */
#blog-secao, #artigo-secao {
  padding: 80px 24px;
  font-family: inherit;
}

#blog-secao,
#artigo-secao {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-title-section {
  font-size: 2.5rem;
  margin-bottom: 48px;
  text-align: center;
  font-family: var(--font-serif);
  color: var(--brand-navy);
}

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

.blog-card {
  background-color: var(--brand-navy);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  border-color: var(--brand-gold);
}

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

.blog-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-family: var(--font-serif);
  color: var(--brand-white);
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-gold);
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-link {
  color: var(--brand-white);
}

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

.artigo-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  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(--brand-navy);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  padding: 28px 24px;
}

.autor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  margin-bottom: 16px;
  border: 1px solid var(--brand-gold);
}

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

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

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

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

.autor-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.sidebar-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 14px 0;
}

.sidebar-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.sidebar-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-white);
  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: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.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-white);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

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

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

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

.btn-voltar {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-gold);
  margin-bottom: 24px;
  padding: 0;
  transition: opacity 0.2s ease;
}

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

.artigo-main-title {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  color: var(--brand-navy);
}

.artigo-divider {
  border: 0;
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  margin: 24px 0 32px 0;
}

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

.artigo-text-body h2 {
  font-family: var(--font-serif);
  color: var(--brand-gold);
  font-size: 1.6rem;
  margin: 36px 0 16px 0;
}

.artigo-text-body h3 {
  font-family: var(--font-serif);
  color: var(--brand-navy);
  font-size: 1.3rem;
  margin: 28px 0 14px 0;
}

.artigo-text-body ul {
  margin: 0 0 24px 20px;
  color: var(--brand-text-dark);
}

.artigo-text-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

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

.blog-blockquote {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--brand-navy);
  border-left: 3px solid var(--brand-gold);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  background: rgba(197, 160, 89, 0.05);
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 0 6px 6px 0;
}

