/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --gold:       #827658;
  --gold-light: #a89870;
  --gold-dim:   rgba(130,118,88,0.12);
  --dark:       #0F0F0F;
  --dark-2:     #1a1a1a;
  --dark-3:     #2a2a2a;
  --white:      #ffffff;
  --off-white:  #f7f6f3;
  --text:       #2c2c2c;
  --text-muted: #6b6b6b;
  --border:     rgba(130,118,88,0.15);

  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:  1200px;
  --ease:   cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Blindagem — garante que nada do GeneratePress/WP core sobreponha
   o reset acima, mesmo que algum handle escape do dequeue em functions.php */
.ta-header a,
.ta-header ul,
.ta-footer a,
.ta-footer ul {
  text-decoration: none !important;
  list-style: none !important;
}
.ta-site, .ta-header, .ta-footer, .ta-nav, .ta-main {
  font-family: var(--font-sans) !important;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 48px; } }

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }

.ta-site { display: flex; flex-direction: column; min-height: 100vh; }
.ta-main  { flex: 1; }

/* ============================================================
   SKIP LINK
   ============================================================ */
.ta-skip {
  position: absolute;
  top: -100%;
  left: 8px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  z-index: 99999;
  border-radius: 0 0 4px 4px;
}
.ta-skip:focus { top: 0; }

/* ============================================================
   HEADER — fundo branco
   ============================================================ */
.ta-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--white) !important;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  width: 100%;
}
.admin-bar .ta-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .ta-header { top: 46px; }
}

.ta-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 88px;
  gap: 16px;
}

/* Logo */
.ta-logo { display: flex; align-items: center; flex-shrink: 0; }
.ta-logo img { height: 58px; width: auto; display: block; }

/* Nav */
.ta-nav { display: flex; justify-content: center; }
.ta-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none !important;
}
.ta-nav > ul > li { position: relative; }

.ta-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.18s;
}
.ta-nav > ul > li > a svg { opacity: 0.55; flex-shrink: 0; }
.ta-nav > ul > li > a svg.chevron-icon { opacity: 0.45; transition: transform 0.2s; }
.ta-nav > ul > li:hover > a { color: var(--gold) !important; }
.ta-nav > ul > li:hover > a svg { opacity: 1; }
.ta-nav > ul > li:hover > a svg.chevron-icon { transform: rotate(180deg); }
.ta-nav > ul > li.ta-active > a { color: var(--gold) !important; }

/* Dropdown */
.ta-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
  z-index: 1000;
  padding: 6px 0;
}
.ta-has-dropdown:hover .ta-dropdown { display: block; }
.ta-dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--text) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.15s, background 0.15s;
}
.ta-dropdown li:last-child a { border-bottom: none; }
.ta-dropdown li a:hover {
  color: var(--gold) !important;
  background: var(--off-white);
}

/* Submenu aninhado (Sócios) — flyout lateral no desktop */
.ta-has-subdropdown { position: relative; }
.ta-has-subdropdown > a.ta-subdropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ta-has-subdropdown > a.ta-subdropdown-trigger svg { opacity: 0.45; transform: rotate(-90deg); flex-shrink: 0; }
.ta-subdropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
  z-index: 1001;
  padding: 6px 0;
}
.ta-has-subdropdown:hover .ta-subdropdown { display: block; }
.ta-subdropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--text) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.ta-subdropdown li:last-child a { border-bottom: none; }
.ta-subdropdown li a:hover {
  color: var(--gold) !important;
  background: var(--off-white);
}

/* Botão online */
.ta-btn-online {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white) !important;
  text-decoration: none !important;
  background: #16a34a;
  border: 1px solid #16a34a;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(22,163,74,0.28);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ta-btn-online:hover {
  background: #15803d;
  box-shadow: 0 6px 18px rgba(22,163,74,0.38);
  transform: translateY(-1px);
}
.ta-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  animation: ta-pulse 2s infinite;
}
@keyframes ta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Toggle mobile */
.ta-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
}
.ta-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: all 0.25s;
}
.ta-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ta-toggle.open span:nth-child(2) { opacity: 0; }
.ta-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 960px) {
  .ta-header-inner {
    grid-template-columns: 1fr auto auto;
    padding: 0 20px;
  }
  .ta-toggle { display: flex; }
  .ta-btn-online { display: none; }
  .ta-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 16px 24px rgba(0,0,0,0.08);
    padding: 8px 0 20px;
    z-index: 9998;
  }
  .ta-nav.open { display: block; }
  .ta-nav > ul { flex-direction: column; gap: 0; }
  .ta-nav > ul > li { width: 100%; }
  .ta-nav > ul > li > a {
    padding: 13px 20px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    width: 100%;
  }
  .ta-dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--gold);
    margin-left: 20px;
    display: none !important;
  }
  .ta-has-dropdown.mob-open .ta-dropdown { display: block !important; }

  .ta-subdropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--gold);
    margin-left: 16px;
    display: none !important;
  }
  .ta-has-subdropdown.sub-open .ta-subdropdown { display: block !important; }
  .ta-has-subdropdown > a.ta-subdropdown-trigger svg { transform: rotate(0deg); transition: transform 0.2s; }
  .ta-has-subdropdown.sub-open > a.ta-subdropdown-trigger svg { transform: rotate(180deg); }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ARCHIVE — BLOG
   ============================================================ */
.ta-archive-hero {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 64px;
}
.ta-archive-hero h1 { color: var(--white); }
.ta-archive-desc {
  margin-top: 12px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
}

.ta-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
@media (max-width: 640px) { .ta-posts-grid { grid-template-columns: 1fr; } }

.ta-post-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ta-post-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(130,118,88,0.08);
}
.ta-post-thumb { overflow: hidden; aspect-ratio: 16/9; }
.ta-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.ta-post-card:hover .ta-post-thumb img { transform: scale(1.04); }

.ta-post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.ta-post-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.ta-post-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ta-post-title a:hover { color: var(--gold); }
.ta-post-excerpt { font-size: 14px; color: var(--text-muted); flex: 1; margin-bottom: 20px; }
.ta-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.ta-post-date { font-size: 12px; color: var(--text-muted); }
.ta-post-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ta-post-link:hover { color: var(--gold-light); }
.ta-no-posts { color: var(--text-muted); }

/* ============================================================
   PAGINAÇÃO
   ============================================================ */
.ta-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.ta-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.ta-pagination .page-numbers:hover,
.ta-pagination .page-numbers.current {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.ta-pagination .prev,
.ta-pagination .next {
  width: auto;
  padding: 0 16px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.ta-single-hero {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 56px;
}
.ta-single-title {
  color: var(--white);
  max-width: 760px;
  margin-top: 12px;
}
.ta-single-meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.ta-meta-sep { opacity: 0.4; }

.ta-single-thumb { background: var(--off-white); padding: 40px 0 0; }
.ta-thumb-img { border-radius: 2px; max-height: 520px; width: 100%; object-fit: cover; }

.ta-single-content {
  padding-top: 56px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .ta-single-content { max-width: 800px; }
}

/* Prosa */
.ta-prose { font-size: 17px; line-height: 1.6; color: #333; }
.ta-prose h2 { margin: 40px 0 18px; font-size: 1.5rem; font-weight: 700; line-height: 1.25; color: var(--dark); }
.ta-prose h3 { margin: 32px 0 14px; font-size: 1.2rem; font-weight: 700; line-height: 1.3; color: var(--dark); }
.ta-prose p  { margin-bottom: 1.2rem; line-height: 1.65; }
.ta-prose ul, .ta-prose ol {
  margin: 0 0 1.2rem 1.4rem;
  padding: 0;
}
.ta-prose ul { list-style: disc; }
.ta-prose ol { list-style: decimal; }
.ta-prose li { margin-bottom: 8px; }
.ta-prose a  { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(130,118,88,0.4); }
.ta-prose a:hover { text-decoration-color: var(--gold); }
.ta-prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  margin: 24px 0;
  color: var(--text-muted);
  font-style: italic;
  background: var(--off-white);
}
.ta-prose img { border-radius: 2px; margin: 24px 0; }
.ta-prose strong { color: var(--dark); }

/* CTA inline */
.ta-single-cta {
  background: var(--dark);
  color: var(--white);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ta-single-cta p { color: rgba(255,255,255,0.8); font-size: 15px; margin: 0; }

/* Tags */
.ta-single-tax { display: flex; flex-direction: column; gap: 12px; }
.ta-tax-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ta-tax-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.ta-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--gold);
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}
.ta-tag:hover { background: var(--gold-dim); border-color: var(--gold); }

/* Posts relacionados */
.ta-related-title { margin-bottom: 24px; font-size: 1.3rem; }
.ta-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .ta-related-grid { grid-template-columns: 1fr; } }

.ta-related-card { border: 1px solid var(--border); }
.ta-related-thumb { overflow: hidden; aspect-ratio: 16/9; }
.ta-related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.ta-related-card:hover .ta-related-thumb img { transform: scale(1.05); }
.ta-related-body { padding: 16px; }
.ta-related-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; display: block; }
.ta-related-body h4 { font-size: 14px; line-height: 1.4; font-family: var(--font-sans); font-weight: 600; }
.ta-related-body h4 a:hover { color: var(--gold); }

/* ============================================================
   PÁGINA GENERICA (page.php)
   ============================================================ */
.ta-page { /* conteúdo controlado pelo bloco HTML */ }

/* ============================================================
   404
   ============================================================ */
.ta-404 { text-align: center; padding: 120px 24px; }
.ta-404-code {
  display: block;
  font-size: 7rem;
  font-family: var(--font-serif);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}
.ta-404-title { margin-bottom: 16px; }
.ta-404-desc { color: var(--text-muted); max-width: 420px; margin: 0 auto 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.ta-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding-top: 72px;
}
.ta-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 900px) {
  .ta-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .ta-footer-inner { grid-template-columns: 1fr; }
}

.ta-footer-logo { display: inline-block; margin-bottom: 20px; }
.ta-footer-logo img { height: 38px; width: auto; }
.ta-footer-desc { font-size: 14px; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.ta-footer-social { display: flex; gap: 14px; }
.ta-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s;
}
.ta-footer-social a:hover { color: var(--gold); border-color: var(--gold); }

.ta-footer-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.ta-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.ta-footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.18s;
}
.ta-footer-col ul li a:hover { color: var(--gold); }

.ta-footer-contact { display: flex; flex-direction: column; gap: 14px; }
.ta-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.ta-footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); opacity: 0.8; }
.ta-footer-contact li a:hover { color: var(--gold); }

.ta-footer-bottom {
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.ta-footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ta-footer-bottom a { transition: color 0.18s; }
.ta-footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   ADMIN BAR
   ============================================================ */
.admin-bar .ta-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .ta-header { top: 46px; }
}

/* ============================================================
   HOME — HERO
   ============================================================ */
.ta-hero { padding: 64px 0 90px; background: var(--off-white); }
.ta-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
}
@media (max-width: 900px) { .ta-hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.ta-hero-copy h1 {
  margin: 6px 0 20px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.ta-hero-copy h1 em {
  font-style: italic;
  color: var(--gold);
}
.ta-hero-lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.ta-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.ta-hero-media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.ta-hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .ta-hero-media { max-width: 420px; margin: 0 auto; } }

/* ============================================================
   HOME — SECTION HEAD (reutilizado em várias seções)
   ============================================================ */
.ta-section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.ta-section-head .eyebrow { justify-content: center; }
.ta-section-head .eyebrow::before { display: none; }

/* ============================================================
   HOME — ÁREAS DE ATUAÇÃO
   ============================================================ */
.ta-home-areas { background: var(--white); }
.ta-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .ta-areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ta-areas-grid { grid-template-columns: 1fr; } }

.ta-area-card {
  display: block;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ta-area-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
.ta-area-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--gold);
  background: var(--gold-dim);
  border-radius: 50%;
  margin-bottom: 18px;
}
.ta-area-card h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-sans); font-weight: 600; }
.ta-area-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.ta-area-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   HOME — SOBRE
   ============================================================ */
.ta-home-about { background: var(--off-white); }
.ta-about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .ta-about-grid { grid-template-columns: 1fr; gap: 36px; } }
.ta-about-copy p { color: var(--text-muted); max-width: 540px; }
.ta-about-copy .btn { margin-top: 12px; }

.ta-about-pillars { display: flex; flex-direction: column; gap: 24px; }
.ta-pillar {
  padding: 24px 28px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}
.ta-pillar h4 { font-family: var(--font-sans); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.ta-pillar p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ============================================================
   HOME — SÓCIOS
   ============================================================ */
.ta-home-partners { background: var(--white); }
.ta-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 640px) { .ta-partners-grid { grid-template-columns: 1fr; } }
.ta-partner-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.ta-partner-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.ta-partner-card img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ta-partner-body h3 { font-size: 1rem; margin-bottom: 2px; }
.ta-partner-role {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.ta-partner-body p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ============================================================
   HOME — NA MÍDIA
   ============================================================ */
.ta-home-media { background: var(--off-white); }
.ta-media-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ta-media-logo {
  display: block;
  width: 220px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}
.ta-media-logo:hover { filter: grayscale(0%); opacity: 1; }
.ta-media-logo img { width: 100%; height: auto; border-radius: 2px; }

/* ============================================================
   HOME — BLOG
   ============================================================ */
.ta-home-blog { background: var(--white); }
.ta-home-blog-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   HOME — CTA FINAL
   ============================================================ */
.ta-home-cta { background: var(--dark); color: var(--white); padding: 80px 0; }
.ta-cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .ta-cta-grid { grid-template-columns: 1fr; gap: 36px; } }
.ta-cta-copy h2 { color: var(--white); max-width: 480px; margin-bottom: 28px; }
.ta-cta-info { display: flex; flex-direction: column; gap: 22px; }
.ta-cta-info li { display: flex; align-items: flex-start; gap: 14px; }
.ta-cta-info li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.ta-cta-info strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.ta-cta-info span, .ta-cta-info a { font-size: 15px; color: rgba(255,255,255,0.85); }
.ta-cta-info a:hover { color: var(--gold); }

/* ============================================================
   HOME — HERO BADGE FLUTUANTE
   ============================================================ */
.ta-hero-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.ta-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.ta-hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  max-width: 240px;
  z-index: 2;
}
.ta-hero-badge-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.ta-hero-badge b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
  color: var(--white);
}
.ta-hero-badge span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ============================================================
   HOME — HERO: h1 peso normal + bold via <b>
   ============================================================ */
.ta-hero-copy h1 {
  font-weight: 400;
  line-height: 1.10;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  letter-spacing: -0.03em;
}
.ta-hero-copy h1 b {
  font-weight: 700;
  font-style: normal;
  color: var(--dark);
}
/* remove o estilo italic do <em> anterior */
.ta-hero-copy h1 em {
  font-style: normal;
  color: inherit;
}

/* ============================================================
   HOME — TÍTULOS DE SECTION: line-height compacto, peso normal
   ============================================================ */
.ta-section-head h2 {
  font-weight: 600;
  line-height: 1.12;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

/* ============================================================
   HOME — SOBRE: coluna direita unificada
   ============================================================ */
.ta-about-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* pillars com número */
.ta-about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ta-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}
.ta-pillar-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 1px;
  min-width: 24px;
}
.ta-pillar h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.ta-pillar p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* links de imprensa dentro da coluna sobre */
.ta-about-press {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.ta-about-press-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.ta-about-press-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ta-about-press-link {
  padding: 9px 16px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.ta-about-press-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   HOME — ESPECIALIDADE E-COMMERCE
   ============================================================ */
.ta-home-specialty {
  background: var(--dark);
  color: var(--white);
}
.ta-home-specialty .ta-section-head h2 { color: var(--white); }
.ta-home-specialty .eyebrow { color: var(--gold-light); }
.ta-home-specialty .eyebrow::before { background: var(--gold-light); }

.ta-specialty-lead {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  max-width: 560px;
  margin: 12px auto 0;
}

.ta-specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 40px 0 48px;
}
.ta-specialty-tags span {
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.ta-specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .ta-specialty-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .ta-specialty-grid { grid-template-columns: 1fr; } }

.ta-specialty-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 28px 22px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.ta-specialty-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
  border-color: var(--gold);
}
.ta-specialty-ico {
  color: var(--gold-light);
  margin-bottom: 16px;
}
.ta-specialty-card h3 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ta-specialty-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.ta-specialty-cta {
  text-align: center;
  margin-top: 48px;
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* ============================================================
   HOME — SÓCIOS (cards grandes com foto de fundo)
   ============================================================ */
.ta-partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 640px) { .ta-partners-grid { grid-template-columns: 1fr; } }

.ta-partner-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 480px;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  padding: 0;
  transition: none;
}
.ta-partner-card:hover { transform: none; border-color: transparent; }

.ta-partner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: grayscale(55%);
  transition: transform 0.5s ease, filter 0.5s ease;
  flex-shrink: unset;
}
.ta-partner-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.ta-partner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0) 30%, rgba(15,15,15,0.92) 100%);
  pointer-events: none;
}

.ta-partner-body {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.ta-partner-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.ta-partner-body h3 {
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: var(--font-sans);
}
.ta-partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.ta-partner-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.ta-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.ta-partner-link svg { transition: transform 0.25s ease; }
.ta-partner-card:hover .ta-partner-link svg { transform: translateX(5px); }

/* Título da section Sobre — apenas line-height, margin e weight */
.ta-about-copy h2 {
  line-height: 1.08;
  font-weight: 600;
  margin-bottom: 28px;
}

/* ============================================================
   SINGLE POST — novo layout
   ============================================================ */

/* Hero escuro */
.ta-single-hero {
  background: var(--dark);
  padding: 56px 0 48px;
  text-align: center;
}
.ta-single-hero-inner { max-width: 760px; margin: 0 auto; }

.ta-single-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(130,118,88,.12);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-decoration: none;
}
.ta-single-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.ta-single-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.ta-meta-sep { opacity: .35; }

/* Body: 2 colunas */
.ta-single-body {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 56px;
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .ta-single-body { grid-template-columns: 1fr; }
}

/* Imagem destacada no topo da coluna principal */
.ta-single-featured-img {
  margin-bottom: 36px;
  border-radius: 6px;
  overflow: hidden;
}
.ta-single-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA inline (abaixo do conteúdo) */
.ta-single-cta-inline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 48px 0 0;
}
.ta-cta-inline-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ta-single-cta-inline .ta-cta-inline-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.ta-cta-inline-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}
.ta-cta-inline-sub {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin: 0;
}
.ta-cta-inline-btn {
  align-self: flex-end;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .ta-cta-inline-btn { align-self: stretch; width: 100%; justify-content: center; }
}

/* Bloco autor no rodapé do artigo */
.ta-single-author-block {
  margin-top: 48px;
  padding: 32px;
  background: var(--off-white);
  border-radius: 10px;
  border-top: none;
}
.ta-author-block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.ta-author-block-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.ta-author-block-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ta-author-block-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.ta-author-block-role {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 10px;
}
.ta-author-block-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ta-author-block-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.ta-author-block-link:hover { color: var(--gold-light); }

/* Sidebar */
.ta-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 108px;
}

/* CTA sidebar */
.ta-sidebar-cta {
  background: var(--dark);
  border-radius: 10px;
  padding: 24px;
  color: var(--white);
}
.ta-sidebar-cta-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.ta-sidebar-cta-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}
.ta-sidebar-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin-bottom: 18px;
}
.ta-sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.ta-sidebar-cta-btn:hover { background: var(--gold-light); }

/* Relacionados sidebar */
.ta-sidebar-related {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.ta-sidebar-related-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ta-sidebar-related ul { list-style: none; }
.ta-sidebar-related li {
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
}
.ta-sidebar-related li:last-child { border-bottom: none; padding-bottom: 0; }
.ta-sidebar-related li a {
  font-size: 13px;
  color: var(--gold);
  line-height: 1.45;
  text-decoration: none;
}
.ta-sidebar-related li a:hover { color: var(--gold-light); }

/* Mini autor sidebar */
.ta-sidebar-author {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.ta-sidebar-author-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ta-sidebar-author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ta-sidebar-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.ta-sidebar-author-role {
  font-size: 12px;
  color: var(--gold);
}
.ta-sidebar-author-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
