:root {
  --green-900: #1A2E27;
  --green-800: #243F36;
  --green-700: #2E5145;
  --green-600: #3F6A5B;
  --cream: #F4EDE0;
  --cream-light: #FAF6EC;
  --cream-dark: #E8DFCC;
  --gold: #B0883C;
  --gold-light: #C9A35A;
  --gold-soft: #E4C98A;
  --ink: #181410;
  --ink-soft: #4A3F35;
  --line: rgba(24, 20, 16, 0.12);

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle paper texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(176, 136, 60, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(36, 63, 54, 0.03) 1px, transparent 1px);
  background-size: 32px 32px, 48px 48px;
  mix-blend-mode: multiply;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ============ TOPBAR ============ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 237, 224, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--green-800);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--green-800);
  font-size: 18px;
  font-style: italic;
  background: transparent;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--green-900);
  letter-spacing: 0.01em;
}
.brand-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.topbar-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 28px;
}
.topbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--green-900);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.topbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.topbar-nav .nav-link:hover {
  color: var(--gold);
}
.topbar-nav .nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  background: var(--green-800);
  color: var(--cream-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.25s ease;
  border: 1px solid var(--green-800);
}
.topbar-cta:hover {
  background: var(--green-900);
  transform: translateY(-1px);
}
.topbar-cta svg { width: 16px; height: 16px; }

/* ============ HERO ============ */
.hero {
  padding: 80px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-900);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--green-800);
  color: var(--cream-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid var(--green-800);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-900);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 18px; height: 18px; }

.hero-meta {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-meta strong { color: var(--green-800); font-weight: 600; }

/* Hero visual side */
.hero-visual {
  position: relative;
  aspect-ratio: 5/6;
  background: var(--green-900);
  overflow: hidden;
  border-radius: 2px;
}
.hero-visual-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(176, 136, 60, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(63, 106, 91, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
}
.hero-visual-quote {
  position: absolute;
  inset: 0;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cream-light);
}
.hero-visual-quote .mark {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 0.6;
  color: var(--gold-soft);
  opacity: 0.55;
  margin-bottom: 20px;
}
.hero-visual-quote .quote-text {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.35;
  font-style: italic;
  font-weight: 300;
  color: var(--cream-light);
}
.hero-visual-quote .quote-author {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(228, 201, 138, 0.3);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* Decorative corner element */
.hero-decor {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-top: 1px solid var(--gold-soft);
  border-right: 1px solid var(--gold-soft);
  opacity: 0.6;
}

/* ============ DIVIDER / FRAME ============ */
.frame-divider {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-light);
}
.frame-divider-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.frame-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}
.frame-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============ SECTION HEADERS ============ */
.section { padding: 110px 0; }
.section-cream-light { background: var(--cream-light); }
.section-dark { background: var(--green-900); color: var(--cream); }
.section-dark .section-label { color: var(--gold-soft); }
.section-dark .section-title { color: var(--cream-light); }
.section-dark .section-intro { color: rgba(244, 237, 224, 0.75); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.section-label::before {
  content: attr(data-num);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0;
  font-style: italic;
  color: var(--ink-soft);
}
.section-dark .section-label::before { color: var(--gold-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--green-900);
  margin-bottom: 24px;
  max-width: 780px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-intro {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 660px;
  line-height: 1.65;
}

/* ============ SITUATIONS ============ */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.situation {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream);
  transition: background 0.3s ease;
}
.situation:hover { background: var(--cream-light); }
.situation-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1.4;
}
.situation-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--green-900);
  font-weight: 400;
}
.situation-text strong {
  color: var(--green-900);
  font-weight: 600;
}

.situations-cta {
  text-align: center;
  margin-top: 64px;
}
.situations-cta p {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--green-800);
  margin-bottom: 28px;
  font-weight: 400;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  position: relative;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  text-align: center;
  padding: 24px;
}
.about-photo-placeholder .initials {
  font-family: var(--font-display);
  font-size: 84px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.about-photo-placeholder .ph-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0.7;
}
.about-frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 2;
}
.about-frame-corner.tl { top: 16px; left: 16px; border-top: 1px solid var(--gold-soft); border-left: 1px solid var(--gold-soft); }
.about-frame-corner.br { bottom: 16px; right: 16px; border-bottom: 1px solid var(--gold-soft); border-right: 1px solid var(--gold-soft); }

.about-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--green-900);
  margin-bottom: 28px;
}
.about-content h2 em { font-style: italic; color: var(--gold); }
.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about-credentials {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.credential {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.credential-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--green-800);
  line-height: 1;
}
.credential-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ============ SERVICES ============ */
.services-intro { margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  padding: 36px 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service:hover {
  background: var(--cream-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -20px rgba(24, 20, 16, 0.15);
}
.service:hover::before { transform: scaleX(1); }

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(176, 136, 60, 0.1);
  margin-bottom: 24px;
  border-radius: 2px;
}
.service-icon svg { width: 22px; height: 22px; color: var(--gold); }

.service h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--green-900);
  margin-bottom: 12px;
}
.service p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(228, 201, 138, 0.3);
}
.step {
  text-align: left;
  padding: 0 16px;
  position: relative;
}
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-800);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-soft);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--cream-light);
  margin-bottom: 10px;
  line-height: 1.25;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.7);
}

/* ============ FAQ ============ */
.faq-wrap {
  margin-top: 56px;
  max-width: 880px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--green-900);
  transition: color 0.25s ease;
  font-family: var(--font-display);
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-toggle svg {
  width: 12px;
  height: 12px;
  color: var(--green-800);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-toggle {
  background: var(--green-800);
  border-color: var(--green-800);
}
.faq-item.open .faq-toggle svg {
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 28px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 720px;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 120px 0;
  background: var(--green-900);
  color: var(--cream-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(176, 136, 60, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(63, 106, 91, 0.2) 0%, transparent 50%);
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
  font-weight: 500;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--cream-light);
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em { font-style: italic; color: var(--gold-soft); }
.final-cta p {
  font-size: 17px;
  color: rgba(244, 237, 224, 0.75);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 38px;
  background: var(--gold);
  color: var(--green-900);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(176, 136, 60, 0.4);
}
.btn-gold svg { width: 20px; height: 20px; }

/* ============ FOOTER ============ */
footer {
  background: var(--green-900);
  color: rgba(244, 237, 224, 0.7);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(228, 201, 138, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream-light);
  margin-bottom: 12px;
  font-weight: 500;
}
.footer-brand-tag {
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
}
.footer h5 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(244, 237, 224, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--gold-soft); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(228, 201, 138, 0.15);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: rgba(244, 237, 224, 0.55);
}
.footer-bottom .disclaimer {
  max-width: 780px;
  margin: 0 auto 14px;
  font-style: italic;
}

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}
.float-wa svg { width: 30px; height: 30px; color: white; }
.float-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 5/4; max-height: 360px; }
  .hero-visual-quote { padding: 32px; }
  .hero-visual-quote .mark { font-size: 80px; }
  .hero-visual-quote .quote-text { font-size: 20px; }
  .section { padding: 72px 0; }
  .situations-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .frame-divider-inner { gap: 18px; justify-content: flex-start; }
  .topbar-cta span { display: none; }
  .topbar-cta { padding: 10px 14px; }
  .hero-actions { gap: 18px; }
  .btn-primary { padding: 16px 26px; font-size: 14px; }
  .float-wa { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .float-wa svg { width: 26px; height: 26px; }
}

@media (max-width: 600px) {
  .about-credentials { grid-template-columns: 1fr; gap: 18px; }
  .credential-value { font-size: 24px; }
  .faq-question { font-size: 17px; }
  .section-title { font-size: 30px; }
  .hero h1 { font-size: 36px; }
  .topbar-nav { margin-right: 16px; }
  .topbar-nav .nav-link { font-size: 12px; }
}

/* ============ BLOG AND ARTICLES ============ */
#blog-secao, #artigo-secao {
    padding: 100px 0;
    font-family: var(--font-body);
}

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

.blog-title-section {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 48px;
    text-align: center;
    font-family: var(--font-display);
    color: var(--green-900);
    font-weight: 400;
}

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

.blog-card {
    background-color: var(--cream-light);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 32px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -20px rgba(24, 20, 16, 0.15);
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--ink-soft);
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: var(--font-display);
    color: var(--green-900);
    font-weight: 500;
    line-height: 1.25;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 20px;
}

.blog-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-link {
    color: var(--gold-light);
}

/* Single Article Styling */
.artigo-single-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.btn-voltar:hover {
    color: var(--gold-light);
}

.artigo-meta-date {
    font-size: 0.9rem;
    color: var(--ink-soft);
    display: block;
    margin-bottom: 12px;
}

.artigo-main-title {
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-display);
    color: var(--green-900);
    font-weight: 400;
}

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

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

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

.blog-blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--green-800);
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    font-family: var(--font-display);
}

.artigo-text-body ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.artigo-text-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--ink);
}

.artigo-text-body h2 {
    font-family: var(--font-display);
    color: var(--green-900);
    font-weight: 400;
    font-size: 1.8rem;
    margin-top: 36px;
    margin-bottom: 16px;
}

.artigo-text-body h3 {
    font-family: var(--font-display);
    color: var(--green-900);
    font-weight: 400;
    font-size: 1.4rem;
    margin-top: 28px;
    margin-bottom: 12px;
}

.loading, .empty, .error {
    text-align: center;
    font-size: 1.2rem;
    color: var(--ink-soft);
    padding: 48px 0;
}

.error a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 900px) {
    #blog-secao, #artigo-secao {
        padding: 72px 0;
    }
    .blog-container {
        padding: 0 24px;
    }
}

