/* ============================================================
   MÍMIR ADVISORY — main.css
   Design System Completo
   ============================================================ */

/* --- TOKENS --- */
:root {
  --green-dark:   #1a2e1a;
  --green-mid:    #2a3d2a;
  --green-light:  #4a6a2a;
  --gold:         #d4b483;
  --gold-light:   #e8d4a8;
  --off-white:    #f7f5f0;
  --white:        #ffffff;
  --ink:          #0f0f0f;
  --ink-mid:      #3a3a3a;
  --ink-light:    #666666;
  --border:       #e8e4dc;
  --border-dark:  #d0ccc4;

  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;

  --max-w:        1180px;
  --section-pad:  80px;
  --radius:       4px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
h1 { font-size: clamp(32px, 4vw, 52px); }
h2 { font-size: clamp(24px, 3vw, 38px); }
h3 { font-size: clamp(16px, 1.6vw, 20px); font-weight: 500; letter-spacing: -0.01em; }
h4 { font-size: 15px; font-weight: 600; }
p  { font-size: 14px; line-height: 1.85; color: var(--ink-mid); }
em { font-style: normal; color: var(--gold); }

/* --- LAYOUT HELPERS --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: var(--section-pad) 0;
}
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.text-muted { color: var(--ink-light) !important; font-size: 13px !important; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--off-white);
  border: 1.5px solid var(--green-dark);
}
.btn-primary:hover { background: #253d25; transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover { background: #c4a470; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--border-dark);
}
.btn-ghost:hover { border-color: var(--green-dark); }

.btn-ghost-light {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.7); }

.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-outline-dark:hover { background: var(--green-dark); color: var(--off-white); }

.link-arrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--green-dark);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.link-arrow:hover { opacity: 0.7; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
/* Logo personalizado do WordPress */
.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo .custom-logo { height: 36px; width: auto; max-width: 120px; object-fit: contain; }

.site-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.75);
  padding: 6px 14px;
  border-radius: 3px;
  transition: all 0.15s;
}
.site-nav a:hover {
  color: var(--off-white);
  background: rgba(255,255,255,0.07);
}
.header-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.header-cta:hover { opacity: 0.8; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 1px;
  transition: all 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--green-dark);
  padding: 80px 40px 0;
  overflow: hidden;
}
.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { padding-bottom: 80px; }
.hero-text h1 {
  color: var(--off-white);
  margin: 16px 0 24px;
  font-weight: 500;
}
.hero-desc {
  color: rgba(245,242,236,0.72) !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: 1.75 !important;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-visual {
  align-self: flex-end;
  position: relative;
}
.hero-img {
  width: 100%;
  border-radius: 6px 6px 0 0;
  object-fit: cover;
  max-height: 420px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green-mid);
  border-radius: 0 0 6px 6px;
}
.stat {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services-strip { border-bottom: 1px solid var(--border); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-item {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--border);
}
.service-item:last-child { border-right: none; }
.service-item:not(:first-child) { padding-left: 32px; }
.service-num {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  margin-bottom: 14px;
}
.service-item h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--ink);
}
.service-item p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.service-item .link-arrow { font-size: 11px; }

/* ============================================================
   ABOUT BAND
   ============================================================ */
.about-band { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left h2 { margin-bottom: 20px; }
.about-left p { margin-bottom: 14px; }
.pillars { display: flex; flex-direction: column; gap: 24px; }
.pillar {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.pillar:last-child { border-bottom: none; padding-bottom: 0; }
.pillar-num {
  width: 30px;
  height: 30px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.pillar strong { display: block; font-size: 14px; margin-bottom: 4px; }
.pillar p { font-size: 13px; }

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights-section { border-top: 1px solid var(--border); }
.insights-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0;
}
.insight-featured {
  padding-right: 40px;
  border-right: 1px solid var(--border);
}
.insight-featured .insight-thumb {
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}
.insight-featured .insight-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.insight-featured h3 { font-size: 20px; margin: 12px 0 10px; line-height: 1.3; }
.insight-featured h3 a:hover { color: var(--green-dark); }
.insight-featured p { font-size: 13px; }

.insight-card {
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.insight-card:last-child { border-right: none; }
.insight-card h4 { font-size: 15px; margin: 10px 0 8px; line-height: 1.35; }
.insight-card h4 a:hover { color: var(--green-dark); }
.insight-card p { font-size: 13px; }

.insight-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 6px;
}
.insight-date {
  display: block;
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 12px;
}

/* Archive / Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.post-card { border-bottom: 1px solid var(--border); padding-bottom: 32px; }
.post-card-thumb { display: block; border-radius: 4px; overflow: hidden; margin-bottom: 18px; }
.post-card-thumb img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; }
.post-card-thumb:hover img { transform: scale(1.02); }
.post-card-body h3 { font-size: 17px; margin: 8px 0 10px; line-height: 1.3; }
.post-card-body h3 a:hover { color: var(--green-dark); }
.post-card-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 14px;
}
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 60px;
}
.pagination a, .pagination span {
  padding: 8px 14px;
  border: 1px solid var(--border);
  font-size: 13px;
  border-radius: 3px;
}
.pagination .current { background: var(--green-dark); color: var(--off-white); border-color: var(--green-dark); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-header { background: var(--off-white); padding: 60px 0 48px; }
.post-header-inner { max-width: 760px; }
.post-header h1 { font-size: clamp(26px, 3.5vw, 44px); margin: 12px 0 20px; }
.post-meta { display: flex; gap: 10px; font-size: 12px; color: var(--ink-light); }
.post-featured-img { margin: 48px auto; }
.post-featured-img img { width: 100%; max-height: 480px; object-fit: cover; border-radius: 4px; }
.post-content { max-width: 720px; padding-top: 0; padding-bottom: 60px; }
.post-content p { font-size: 16px; line-height: 1.9; margin-bottom: 24px; }
.post-content h2 { font-size: 24px; margin: 48px 0 16px; }
.post-content h3 { font-size: 20px; margin: 36px 0 12px; }
.post-content ul, .post-content ol { margin: 0 0 24px 24px; }
.post-content li { font-size: 16px; line-height: 1.8; margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-mid);
}
.post-cta { padding-bottom: 60px; }
.post-cta-inner {
  background: var(--off-white);
  border-left: 4px solid var(--green-dark);
  padding: 28px 32px;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 720px;
}
.post-cta-inner p { font-size: 14px; margin: 0; }
.post-nav { padding-bottom: 60px; }
.post-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 720px;
}
.post-nav-item a { font-size: 13px; font-weight: 500; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

/* Wrapper do carrossel com botoes */
.testimonial-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial-carousel-viewport {
  overflow: hidden;
  flex: 1;
}

/* Track: 2 colunas em desktop, 1 em mobile */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  transition: opacity 0.3s ease;
}

@media (max-width: 767px) {
  .testimonial-track {
    grid-template-columns: 1fr;
  }
}

/* Card de depoimento */
.testimonial {
  max-width: 100%;
  padding: 32px !important;
  background: white;
  border-radius: 4px;
  border-left: 3px solid var(--green-dark) !important;
  border-left-style: solid !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: var(--ink) !important;
  margin-bottom: 24px;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.testimonial span {
  font-size: 12px;
  color: var(--ink-light);
}

/* Botoes de navegacao */
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.testimonial-nav:hover {
  background: var(--green-dark);
  color: white;
}

.testimonial-nav:disabled {
  opacity: 0.3;
  cursor: default;
}


/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--green-dark); padding: 60px 40px; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--off-white); font-weight: 500; }
.cta-buttons { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (páginas internas)
   ============================================================ */
.page-hero {
  padding: 72px 40px;
  background: var(--green-dark);
}
.page-hero--light {
  background: var(--off-white);
}
.page-hero--light .eyebrow { color: var(--green-light); }
.page-hero--light h1 { color: var(--ink); }
.page-hero-desc {
  font-size: 16px !important;
  color: var(--ink-mid) !important;
  max-width: 520px;
  margin-top: 16px;
}
.page-hero:not(.page-hero--light) h1 { color: var(--off-white); }
.page-hero:not(.page-hero--light) .page-hero-desc { color: rgba(245,242,236,0.72) !important; }

/* ============================================================
   LIVROS
   ============================================================ */
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.book-card { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.book-cover img { width: 80px; height: auto; border-radius: 2px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); flex-shrink: 0; }
.book-cover-placeholder { width: 80px; flex-shrink: 0; }
.book-author { font-size: 12px; color: var(--ink-light); margin-bottom: 8px; }
.book-excerpt { font-size: 13px; line-height: 1.7; }
.book-info h3 { font-size: 15px; margin-bottom: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0f1e0f; padding: 60px 40px 0; }
.footer-inner {
  max-width: 1180px !important;
  margin: 0 auto;
  padding: 0 40px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo span { font-size: 13px; font-weight: 600; color: var(--off-white); }
.footer-tagline { font-size: 12px !important; line-height: 1.7 !important; color: rgba(255,255,255,0.45) !important; }
.footer-socials { display: flex; gap: 14px; margin-top: 20px; }
.footer-socials a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-socials a:hover { color: var(--gold); }
.footer-col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--off-white); }
.footer-address { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(2) { border-right: none; }
  .service-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); padding-top: 32px; }
  .service-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: 32px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card:last-child { display: none; }
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 48px; }
  .container { padding: 0 20px; }

  /* Header mobile */
  .site-nav, .header-cta { display: none; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--green-dark); padding: 16px 20px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
  .menu-toggle { display: flex; }
  .header-inner { position: relative; }

  /* Hero mobile */
  .hero { padding: 48px 20px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { padding-bottom: 0; }
  .hero-desc { max-width: 100%; }
  .hero-img { border-radius: 6px; max-height: 280px; }
  .hero-stats { grid-template-columns: 1fr 1fr; border-radius: 0 0 6px 6px; }

  /* Sections mobile */
  .services-grid { grid-template-columns: 1fr; }
  .service-item, .service-item:nth-child(n) {
    border-right: none;
    border-top: 1px solid var(--border);
    padding: 28px 0;
  }
  .service-item:first-child { border-top: none; padding-top: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-featured { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 32px; }
  .insight-card { padding: 28px 0 0; border-right: none; }
  .posts-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .books-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .post-cta-inner { flex-direction: column; }
}

/* ============================================================
   FIXES v2 — Neutralizar resíduos do Elementor
   ============================================================ */

/* Esconder header/footer do Elementor se ainda estiverem ativos */
.elementor-location-header { display: none !important; }
.elementor-location-footer { display: none !important; }

/* Garantir que nosso header fique no topo */
.site-header { display: flex !important; }

/* Fix: remover margin-top que o Hello Elementor coloca no body */
body { margin-top: 0 !important; padding-top: 0 !important; }
.site { margin: 0 !important; }

/* Fix: logo no header — forçar tamanho correto */
.site-logo img,
.site-logo .custom-logo {
  height: 52px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
}

/* Fix: remover padding que o tema Hello coloca */
.page-content, #content, .site-content { padding: 0 !important; margin: 0 !important; }
#primary, main.site-main { padding: 0 !important; margin: 0 !important; }

/* Fix: links de insights — cor correta */
.insights-section a,
.insight-card a,
.insight-featured a,
.insight-featured h3 a,
.insight-card h4 a {
  color: #1a2e1a !important;
  text-decoration: none !important;
}
.insights-section a:hover,
.insight-card a:hover,
.insight-featured a:hover {
  color: #d4b483 !important;
}

/* Fix: seção de serviços — garantir bordas corretas */
@media (min-width: 1025px) {
  .services-grid .service-item:nth-child(3),
  .services-grid .service-item:nth-child(4) {
    border-top: none !important;
    padding-top: 36px !important;
  }
}

/* ============================================================
   FIX BLOCOS BRANCOS — Hello Elementor wrapper
   ============================================================ */

/* Forçar o body e wrappers do Hello Elementor a não criarem
   espaço lateral nem restringirem o header */
html, body {
  width: 100% !important;
  overflow-x: hidden !important;
  background: #ffffff !important;
}

/* O Hello Elementor às vezes envolve tudo num .site ou #page */
body > #page,
body > .site,
body > div:not(.site-header):not(.site-footer):first-of-type {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Garantir que header e footer do Elementor somem */
.elementor-location-header,
.elementor-location-footer,
.hfe-header,
.hfe-footer {
  display: none !important;
}

/* Nosso header ocupa 100% da largura */
.site-header {
  width: 100% !important;
  max-width: 100% !important;
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 9999 !important;
  background: #1a2e1a !important;
}

/* Remover qualquer margin/padding do Hello Elementor no body */
.elementor-default .elementor,
.elementor-kit-5 {
  padding: 0 !important;
  margin: 0 !important;
}

/* Garantir que o conteúdo principal não tenha padding extra */
.site-content,
#content,
main,
#primary {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* ============================================================
   HERO v4 — Layout limpo com 3 stats alinhado com seções
   ============================================================ */

/* Resetar hero para usar container alinhado */
.hero {
  background: var(--green-dark);
  padding: 0 !important;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero-text {
  padding-bottom: 80px;
}

.hero-text h1 {
  color: var(--off-white);
  margin: 16px 0 20px;
  font-weight: 500;
  font-size: clamp(30px, 3.5vw, 48px);
}

.hero-desc {
  color: rgba(245,242,236,0.72) !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: 1.75 !important;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Painel de stats — 3 blocos verticais */
.hero-stats-panel {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  background: var(--green-mid);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.hero-stat-block {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stat-block:last-child {
  border-bottom: none;
}

.hero-stat-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* Esconder o hero antigo */
.hero-visual, .hero-img, .hero-stats, .stat { display: none !important; }

/* Garantir alinhamento com as seções abaixo */
.hero-inner,
.container {
  max-width: var(--max-w) !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 48px 20px 0 !important;
  }
  .hero-text { padding-bottom: 0 !important; }
  .hero-stats-panel { border-radius: 6px !important; grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .hero-stat-block { border-bottom: none !important; border-right: 1px solid rgba(255,255,255,0.07); }
  .hero-stat-block:last-child { grid-column: 1/-1; border-right: none; }
}

/* ============================================================
   FIXES FINAIS — Hover botões + Stats alinhados
   ============================================================ */

/* Hero stats sobem para cobrir o verde */
.hero-stats-panel {
  margin-top: -60px !important;
}
.hero-inner {
  align-items: center !important;
}

/* Hover botão primário → dourado */
.btn-primary:hover {
  background: #d4b483 !important;
  border-color: #d4b483 !important;
  color: #1a2e1a !important;
  transform: translateY(-1px) !important;
  opacity: 1 !important;
}

/* Hover "Ver serviços" ghost claro */
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.8) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

/* Hover "Agendar conversa" no header */
.header-cta:hover {
  color: #f5f2ec !important;
  opacity: 1 !important;
  border-color: #f5f2ec !important;
}

/* Hover botão dourado */
.btn-gold:hover {
  background: #c4a470 !important;
  border-color: #c4a470 !important;
  color: #1a2e1a !important;
  transform: translateY(-1px) !important;
}

/* Hover botão outline escuro */
.btn-outline-dark:hover {
  background: #1a2e1a !important;
  color: #f5f2ec !important;
}

/* Hover "Ver serviços" escuro */
.btn-ghost:hover {
  background: #1a2e1a !important;
  border-color: #1a2e1a !important;
  color: #f5f2ec !important;
}

/* ============================================================
   v6 — Footer largura total + Hero stats alinhados ao topo
   ============================================================ */

/* FOOTER: forçar 100% independente do wrapper do Hello Elementor */
.site-footer {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box !important;
}

/* HERO: stats panel alinhado ao topo, sem gap na base */
.hero-inner {
  align-items: flex-start !important;
  padding-bottom: 0 !important;
}

.hero-text {
  padding-top: 20px !important;
  padding-bottom: 60px !important;
}

.hero-stats-panel {
  margin-top: 0 !important;
  border-radius: 0 0 6px 6px !important;
  height: 100% !important;
  min-height: 320px !important;
}

.hero-stat-block {
  padding: 32px 36px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* ============================================================
   v7 — FOOTER FIX DEFINITIVO
   ============================================================ */

/* Remover qualquer wrapper que restringe a largura */
body,
body.page,
#page,
.site,
#content,
.site-content,
#primary,
.entry-content {
  overflow-x: visible !important;
  max-width: none !important;
}

/* Footer ocupa 100% da viewport sem depender do pai */
.site-footer {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}

/* Garantir que o wrapper direto do body não restrinja */
body > *:not(.site-header):not(.site-footer):not(script):not(style) {
  max-width: none !important;
}

/* O Hello Elementor coloca um .hfeed ou .site envolvendo tudo */
.hfeed,
.hfeed.site,
body.page .hfeed {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100vh !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
}


/* ============================================================
   v8 — LOGO MAIOR + ALINHAMENTO COM CONTEÚDO
============================================================ */
/* Alinhar header com o conteúdo das seções (max-width igual) */
.header-inner {
  max-width: var(--max-w) !important;
  height: 76px !important;
}

/* Logo maior */
.site-logo img,
.site-logo .custom-logo {
  height: 52px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
}


/* ============================================================
   PAGE SERVIÇOS — Estilos McKinsey-inspired
============================================================ */

/* --- HERO --- */
.svc-hero {
  background: var(--green-dark);
  padding: 0;
}
.svc-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.svc-hero-text {
  padding-bottom: 80px;
}
.svc-hero-text h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--off-white);
  margin: 16px 0 20px;
  font-weight: 500;
}
.svc-hero-desc {
  color: rgba(245,242,236,0.72) !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: 1.75 !important;
  max-width: 480px;
}
.svc-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.svc-hero-meta {
  display: flex;
  flex-direction: column;
  background: var(--green-mid);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}
.svc-hero-meta-item {
  padding: 28px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-hero-meta-item:last-child {
  border-bottom: none;
}
.svc-meta-num {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.svc-meta-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* --- DIVIDER BAR --- */
.svc-divider-bar {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0;
}
.svc-divider-bar .container {
  display: flex;
  align-items: center;
  height: 52px;
}
.svc-divider-bar span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* --- LISTA DE SERVIÇOS --- */
.svc-list {
  background: var(--white);
}
.svc-item {
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.svc-item--alt {
  background: var(--off-white);
}
.svc-item-inner {
  display: grid;
  grid-template-columns: 100px 1fr 280px;
  gap: 40px;
  align-items: start;
}
.svc-item-meta {
  padding-top: 8px;
}
.svc-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-light);
  margin-bottom: 8px;
}
.svc-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--green-dark);
  padding: 4px 10px;
  border-radius: 2px;
}
.svc-item-body h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.svc-lead {
  font-size: 16px !important;
  color: var(--ink-mid) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  margin-bottom: 20px;
  max-width: 580px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.svc-item-body p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-mid);
  max-width: 580px;
}
.svc-deliverables {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.svc-del-title {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--ink-light) !important;
  margin-bottom: 14px !important;
}
.svc-deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.svc-deliverables ul li {
  font-size: 13px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.svc-deliverables ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.svc-cta-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  border-bottom: 1.5px solid var(--green-dark);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.svc-cta-link:hover {
  opacity: 0.65;
}

/* --- ASIDE --- */
.svc-item-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.svc-aside-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.svc-item--alt .svc-aside-card {
  background: var(--white);
}
.svc-aside-card--alt {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
}
.svc-aside-label {
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--ink-light) !important;
  margin-bottom: 8px !important;
}
.svc-aside-card--alt .svc-aside-label {
  color: rgba(255,255,255,0.45) !important;
}
.svc-aside-card p:not(.svc-aside-label):not(.svc-aside-value) {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-mid);
}
.svc-aside-value {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--off-white) !important;
  letter-spacing: -0.02em !important;
}

/* --- POR QUE A MÍMIR --- */
.svc-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.svc-why-left h2 {
  margin: 12px 0 20px;
  line-height: 1.2;
}
.svc-why-left p {
  max-width: 420px;
}
.svc-why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.svc-why-item:first-child {
  padding-top: 0;
}
.svc-why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.svc-why-num {
  width: 32px;
  height: 32px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-why-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.svc-why-content p {
  font-size: 13px;
  line-height: 1.7;
}

/* --- CTA FINAL --- */
.svc-cta-band {
  background: var(--green-dark);
  padding: 80px 0;
}
.svc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.svc-cta-text h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  margin: 8px 0 0;
}
.svc-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
.svc-cta-footnote {
  font-size: 11px !important;
  color: rgba(255,255,255,0.4) !important;
  letter-spacing: 0.04em;
}

/* --- RESPONSIVE SERVIÇOS --- */
@media (max-width: 1024px) {
  .svc-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 0;
  }
  .svc-hero-text {
    padding-bottom: 40px;
  }
  .svc-hero-meta {
    flex-direction: row;
    border-radius: 6px 6px 0 0;
    min-height: auto;
  }
  .svc-hero-meta-item {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .svc-hero-meta-item:last-child {
    border-right: none;
  }
  .svc-item-inner {
    grid-template-columns: 80px 1fr;
  }
  .svc-item-aside {
    grid-column: 2;
    position: static;
    flex-direction: row;
  }
  .svc-aside-card {
    flex: 1;
  }
  .svc-why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .svc-hero-inner {
    padding: 48px 20px 0;
  }
  .svc-hero-meta {
    flex-direction: column;
  }
  .svc-hero-meta-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .svc-item {
    padding: 48px 0;
  }
  .svc-item-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .svc-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 0;
  }
  .svc-item-aside {
    flex-direction: column;
  }
  .svc-deliverables ul {
    grid-template-columns: 1fr;
  }
  .svc-cta-inner {
    flex-direction: column;
    text-align: left;
    gap: 32px;
  }
  .svc-cta-action {
    width: 100%;
  }
  .svc-cta-action .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   PAGE INSIGHTS — Estilos McKinsey-inspired
============================================================ */

/* --- HERO --- */
.ins-hero {
  background: var(--green-dark);
  padding: 0;
}
.ins-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.ins-hero-text {
  padding-bottom: 72px;
}
.ins-hero-text h1 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--off-white);
  margin: 14px 0 18px;
  font-weight: 500;
}
.ins-hero-desc {
  color: rgba(245,242,236,0.72) !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: 1.75 !important;
  max-width: 440px;
}
.ins-hero-topics {
  display: flex;
  flex-direction: column;
  background: var(--green-mid);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  align-self: stretch;
}
.ins-topic {
  display: block;
  padding: 20px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all 0.2s;
  position: relative;
}
.ins-topic:last-child { border-bottom: none; }
.ins-topic:hover, .ins-topic--active {
  color: var(--off-white);
  background: rgba(255,255,255,0.06);
}
.ins-topic--active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}

/* --- DIVIDER BAR --- */
.ins-divider-bar {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ins-divider-bar .container {
  display: flex;
  align-items: center;
  height: 52px;
}
.ins-divider-bar span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* --- POST DESTAQUE --- */
.ins-featured {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.ins-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ins-featured-card:hover .ins-featured-img img {
  transform: scale(1.02);
}
.ins-featured-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--off-white);
}
.ins-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ins-featured-img--empty {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ins-featured-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ins-featured-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,180,131,0.12);
  padding: 5px 10px;
  border-radius: 2px;
  align-self: flex-start;
}
.ins-featured-body h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.ins-featured-card:hover .ins-featured-body h2 {
  color: var(--green-dark);
}
.ins-featured-excerpt {
  font-size: 14px !important;
  line-height: 1.75 !important;
  color: var(--ink-light) !important;
}
.ins-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 6px;
  flex-wrap: wrap;
}
.ins-meta-sep { color: var(--border-dark); }
.ins-featured-cta {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.ins-featured-card:hover .ins-featured-cta { opacity: 0.65; }

/* --- GRADE DE POSTS --- */
.ins-grid-section { background: var(--white); }
.ins-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.ins-card {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ins-card:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}
.ins-card:nth-child(3n+2) { padding-left: 36px; }
.ins-card:nth-child(3n+3) { padding-left: 36px; }
.ins-card-thumb {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16/9;
  background: var(--off-white);
}
.ins-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.ins-card-thumb:hover img { transform: scale(1.03); }
.ins-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--border) 100%);
}
.ins-card-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}
.ins-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--ink);
  transition: color 0.2s;
}
.ins-card-body h3 a { color: inherit; }
.ins-card-body h3 a:hover { color: var(--green-dark); }
.ins-card-excerpt {
  font-size: 13px !important;
  line-height: 1.7 !important;
  color: var(--ink-light) !important;
}
.ins-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 16px;
}

/* --- PAGINAÇÃO --- */
.ins-pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.ins-pagination a, .ins-pagination span {
  padding: 8px 14px;
  border: 1px solid var(--border);
  font-size: 13px;
  border-radius: 3px;
  color: var(--ink-mid);
  transition: all 0.15s;
}
.ins-pagination a:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.ins-pagination .current {
  background: var(--green-dark);
  color: var(--off-white);
  border-color: var(--green-dark);
}

/* --- ESTADO VAZIO --- */
.ins-empty {
  text-align: center;
  padding: 100px 20px;
  color: var(--ink-light);
}
.ins-empty-icon {
  margin: 0 auto 24px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 50%;
  color: var(--ink-light);
}
.ins-empty h3 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
}
.ins-empty p {
  max-width: 360px;
  margin: 0 auto;
  font-size: 14px;
}

/* --- CTA BAND --- */
.ins-cta-band {
  background: var(--green-dark);
  padding: 80px 0;
}
.ins-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.ins-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
.ins-cta-footnote {
  font-size: 11px !important;
  color: rgba(255,255,255,0.4) !important;
  letter-spacing: 0.04em;
}

/* --- RESPONSIVE INSIGHTS --- */
@media (max-width: 1024px) {
  .ins-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .ins-hero-text { padding-bottom: 40px; }
  .ins-hero-topics { flex-direction: row; border-radius: 6px 6px 0 0; }
  .ins-topic { flex: 1; text-align: center; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.07); }
  .ins-topic:last-child { border-right: none; }
  .ins-topic--active::before { top: auto; bottom: 0; left: 0; right: 0; width: auto; height: 3px; }
  .ins-featured-card { grid-template-columns: 1fr; gap: 32px; }
  .ins-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .ins-card:nth-child(2n) { border-right: none; padding-right: 0; }
  .ins-card:nth-child(2n+1) { padding-left: 0; padding-right: 32px; }
  .ins-card:nth-child(2n) { padding-left: 32px; }
  .ins-card:nth-child(3n) { border-right: 1px solid var(--border); padding-right: 32px; }
  .ins-card:nth-child(3n+2) { padding-left: 0; }
  .ins-card:nth-child(3n+3) { padding-left: 0; }
}
@media (max-width: 768px) {
  .ins-hero-inner { padding: 48px 20px 0; }
  .ins-hero-text { padding-bottom: 32px; }
  .ins-hero-topics { flex-direction: column; }
  .ins-topic { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .ins-topic:last-child { border-bottom: none; }
  .ins-topic--active::before { top: 0; bottom: 0; left: 0; right: auto; width: 3px; height: auto; }
  .ins-featured { padding: 40px 0; }
  .ins-posts-grid { grid-template-columns: 1fr; }
  .ins-card, .ins-card:nth-child(n) {
    border-right: none; padding: 32px 0;
    padding-left: 0 !important; padding-right: 0 !important;
  }
  .ins-cta-inner { flex-direction: column; text-align: left; gap: 32px; }
  .ins-cta-action { width: 100%; }
  .ins-cta-action .btn { width: 100%; justify-content: center; }
}

/* ---- FAQ ACCORDION FIX ---- */
.ct-faq-q,
.ct-faq-q:hover,
.ct-faq-q:focus,
.ct-faq-q:active,
.ct-faq-item.open .ct-faq-q,
.ct-faq-item.open .ct-faq-q:hover {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--ink, #1a1a1a) !important;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}
