/* =========================================================
   TRABALHISTA — Landing page de campanha (isolada)
   ========================================================= */

/* Minimal isolated nav (sem links para o resto do site) */
.tn-nav {
  position: sticky; top: 0; z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid var(--bm-rule);
}
.tn-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.tn-nav img { height: 44px; }
.tn-nav .right { display: flex; align-items: center; gap: var(--bm-space-4); }
.tn-nav .phone { font-size: 0.875rem; color: var(--bm-ink-700); font-weight: 500; }
.tn-nav .phone strong { color: var(--bm-ink-900); }
@media (max-width: 720px) {
  .tn-nav-inner { height: 64px; }
  .tn-nav img { height: 36px; }
  .tn-nav .phone { display: none; }
}

/* ---------- HERO ---------- */
.tn-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.tn-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .tn-hero-grid { grid-template-columns: 1fr; gap: var(--bm-space-7); } }

.tn-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: var(--bm-space-5);
}
.tn-eyebrow span {
  font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bm-red-700); font-weight: 500;
}
.tn-title {
  font-family: var(--bm-font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 500; letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 var(--bm-space-5);
  color: var(--bm-ink-900);
  text-wrap: balance;
}
.tn-title em { font-weight: 400; font-style: italic; color: var(--bm-red-700); }
.tn-lead {
  font-size: clamp(1.05rem, 1vw + 0.6rem, 1.25rem);
  line-height: 1.65; font-weight: 300;
  color: var(--bm-ink-700);
  max-width: 52ch;
  margin: 0 0 var(--bm-space-6);
  text-wrap: pretty;
}
.tn-cta { display: flex; flex-wrap: wrap; gap: var(--bm-space-3); align-items: center; }
.tn-cta-note {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--bm-ink-500);
}
.tn-cta-note .dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18); }

/* trust strip under hero */
.tn-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bm-space-5);
  margin-top: var(--bm-space-7);
  padding-top: var(--bm-space-6);
  border-top: 1px solid var(--bm-rule);
}
@media (max-width: 640px) { .tn-trust { grid-template-columns: repeat(2, 1fr); gap: var(--bm-space-4); } }
.tn-trust .item .num {
  font-family: var(--bm-font-display); font-weight: 500;
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
  line-height: 1; color: var(--bm-ink-900);
  letter-spacing: -0.02em;
}
.tn-trust .item .label {
  font-size: 0.8rem; color: var(--bm-ink-500);
  margin-top: 0.4rem; line-height: 1.4;
}

/* Hero side card */
.tn-side {
  background: var(--bm-ink-900);
  color: var(--bm-paper-100);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--bm-radius-md);
  position: relative;
}
.tn-side::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--bm-red-700);
}
.tn-side h3 {
  font-family: var(--bm-font-display); font-weight: 500;
  font-size: 1.5rem; letter-spacing: -0.01em; line-height: 1.2;
  margin: 0 0 var(--bm-space-4); color: var(--bm-paper-100);
}
.tn-side ul { list-style: none; padding: 0; margin: 0 0 var(--bm-space-5); display: flex; flex-direction: column; gap: var(--bm-space-3); }
.tn-side li {
  display: grid; grid-template-columns: 18px 1fr; gap: 0.6rem; align-items: start;
  font-size: 0.95rem; line-height: 1.5; color: var(--bm-ink-200);
}
.tn-side li svg { color: var(--bm-red-400); margin-top: 3px; }
.tn-side .note { font-size: 0.8rem; color: var(--bm-ink-400); margin-top: var(--bm-space-3); }


/* ---------- SECTION ---------- */
.tn-section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.tn-section--alt { background: var(--bm-paper-50); border-block: 1px solid var(--bm-rule); }
.tn-section--dark { background: var(--bm-ink-900); color: var(--bm-paper-100); }

.tn-section-head {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: var(--bm-space-7);
  align-items: end;
}
@media (max-width: 880px) { .tn-section-head { grid-template-columns: 1fr; margin-bottom: var(--bm-space-6); gap: var(--bm-space-3); } }
.tn-section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bm-red-700); font-weight: 500;
}
.tn-section-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--bm-red-700); }
.tn-section--dark .tn-section-eyebrow { color: var(--bm-red-400); }
.tn-section--dark .tn-section-eyebrow::before { background: var(--bm-red-400); }
.tn-section-title {
  font-family: var(--bm-font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 500; letter-spacing: -0.02em;
  margin: var(--bm-space-3) 0 0; line-height: 1.05;
  text-wrap: balance;
}
.tn-section-title em { font-style: italic; color: var(--bm-red-700); font-weight: 400; }
.tn-section--dark .tn-section-title em { color: var(--bm-red-400); }
.tn-section-desc {
  color: var(--bm-ink-700); font-size: 1.0625rem; line-height: 1.65;
  font-weight: 300; margin: 0; max-width: 52ch; text-wrap: pretty;
}
.tn-section--dark .tn-section-desc { color: var(--bm-ink-300); }

/* ---------- DIREITOS (Rights checklist) ---------- */
.tn-rights {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--bm-rule);
  border: 1px solid var(--bm-rule);
}
@media (max-width: 880px) { .tn-rights { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tn-rights { grid-template-columns: 1fr; } }
.tn-right {
  background: var(--bm-paper-100);
  padding: var(--bm-space-6) var(--bm-space-5);
  display: flex; flex-direction: column; gap: var(--bm-space-3);
  min-height: 200px;
}
.tn-right .check {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bm-red-50); color: var(--bm-red-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.tn-right h4 {
  font-family: var(--bm-font-display); font-weight: 500;
  font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1.2;
  margin: 0; color: var(--bm-ink-900);
}
.tn-right p { margin: 0; color: var(--bm-ink-600); font-size: 0.9rem; line-height: 1.6; }

/* ---------- PROCESS ---------- */
.tn-process {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--bm-space-6);
  counter-reset: step;
}
@media (max-width: 880px) { .tn-process { grid-template-columns: 1fr; } }
.tn-step {
  display: flex; flex-direction: column; gap: var(--bm-space-3);
  padding: var(--bm-space-6) 0;
  position: relative;
  counter-increment: step;
}
.tn-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--bm-font-display); font-style: italic;
  font-size: 3rem; line-height: 1; color: var(--bm-red-400);
  font-weight: 400;
}
.tn-section--dark .tn-step::before { color: var(--bm-red-400); }
.tn-step h4 {
  font-family: var(--bm-font-display); font-weight: 500;
  font-size: 1.5rem; letter-spacing: -0.01em; line-height: 1.2; margin: 0;
}
.tn-step p { margin: 0; line-height: 1.6; font-size: 0.95rem; font-weight: 300; }
.tn-section--dark .tn-step p { color: var(--bm-ink-300); }
.tn-section:not(.tn-section--dark) .tn-step p { color: var(--bm-ink-600); }

/* ---------- REVIEWS ---------- */
.tn-rev-head {
  display: flex; align-items: center; gap: var(--bm-space-4);
  margin-bottom: var(--bm-space-7);
  padding: var(--bm-space-5);
  background: var(--bm-paper-50);
  border: 1px solid var(--bm-rule);
  border-radius: var(--bm-radius-md);
}
@media (max-width: 600px) { .tn-rev-head { flex-direction: column; align-items: start; gap: var(--bm-space-3); text-align: left; } }
.tn-rev-google {
  display: flex; align-items: center; gap: var(--bm-space-3);
  padding-right: var(--bm-space-4); border-right: 1px solid var(--bm-rule);
}
@media (max-width: 600px) { .tn-rev-google { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--bm-rule); padding-bottom: var(--bm-space-3); width: 100%; } }
.tn-rev-google-icon {
  width: 36px; height: 36px; flex-shrink: 0;
}
.tn-rev-score {
  font-family: var(--bm-font-display); font-weight: 600;
  font-size: 1.75rem; line-height: 1; color: var(--bm-ink-900);
}
.tn-rev-meta { font-size: 0.8rem; color: var(--bm-ink-500); }
.tn-rev-stars { color: #FBBC04; display: inline-flex; gap: 1px; }
.tn-rev-stars svg { width: 14px; height: 14px; fill: currentColor; }

.tn-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--bm-space-5);
}
@media (max-width: 980px) { .tn-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tn-reviews-grid { grid-template-columns: 1fr; } }

.tn-review {
  background: #FFFFFF;
  border: 1px solid var(--bm-rule);
  border-radius: var(--bm-radius-md);
  padding: var(--bm-space-5);
  display: flex; flex-direction: column; gap: var(--bm-space-3);
}
.tn-review-head { display: flex; align-items: center; gap: var(--bm-space-3); }
.tn-review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 600; color: white;
  font-family: var(--bm-font-body);
  flex-shrink: 0;
}
.tn-review-meta .name { font-size: 0.875rem; font-weight: 600; color: var(--bm-ink-900); line-height: 1.1; }
.tn-review-meta .when { font-size: 0.75rem; color: var(--bm-ink-500); margin-top: 4px; display: flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.2; }
.tn-review-meta .when .tn-review-stars + span,
.tn-review-meta .when > span { display: inline-block; }
.tn-review-stars { color: #FBBC04; display: inline-flex; gap: 1px; }
.tn-review-stars svg { width: 14px; height: 14px; fill: currentColor; }
.tn-review p {
  margin: 0; color: var(--bm-ink-700); font-size: 0.925rem; line-height: 1.6;
  font-weight: 400;
}
.tn-review .gicon {
  margin-left: auto; opacity: 0.4; width: 16px; height: 16px;
}

/* ---------- FAQ ---------- */
.tn-faq { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.tn-faq details {
  border-bottom: 1px solid var(--bm-rule);
  padding: var(--bm-space-5) 0;
}
.tn-faq details:first-child { border-top: 1px solid var(--bm-rule); }
.tn-faq summary {
  font-family: var(--bm-font-display); font-weight: 500;
  font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1.3;
  cursor: pointer; list-style: none;
  display: grid; grid-template-columns: 1fr 24px; gap: var(--bm-space-4); align-items: start;
  color: var(--bm-ink-900);
}
.tn-faq summary::-webkit-details-marker { display: none; }
.tn-faq summary::after {
  content: '+';
  font-family: var(--bm-font-body); font-weight: 300;
  font-size: 1.5rem; line-height: 1; color: var(--bm-red-700);
  transition: transform 240ms var(--bm-ease);
  display: inline-block;
}
.tn-faq details[open] summary::after { transform: rotate(45deg); }
.tn-faq details p {
  margin: var(--bm-space-4) 0 0; line-height: 1.7;
  color: var(--bm-ink-700); font-weight: 300;
  max-width: 64ch;
}

/* ---------- BIG CTA ---------- */
.tn-cta-big {
  background: var(--bm-red-700);
  color: white;
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tn-cta-big::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05), transparent 40%);
}
.tn-cta-big > .bm-container { position: relative; }
.tn-cta-big .tn-eyebrow span { color: rgba(255,255,255,0.7); }
.tn-cta-big .tn-eyebrow::before { background: rgba(255,255,255,0.7); }
.tn-cta-big h2 {
  font-family: var(--bm-font-display);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 500; letter-spacing: -0.02em;
  margin: 0 auto var(--bm-space-4); line-height: 1.05;
  max-width: 22ch; color: white;
  text-wrap: balance;
}
.tn-cta-big h2 em { font-style: italic; font-weight: 400; opacity: 0.85; }
.tn-cta-big p {
  font-size: 1.125rem; line-height: 1.7; font-weight: 300;
  color: rgba(255,255,255,0.85); margin: 0 auto var(--bm-space-6); max-width: 56ch;
}
.tn-cta-big .bm-btn--whatsapp { font-size: 1rem; padding: 1.1rem 2rem; }
.tn-cta-big .small {
  margin-top: var(--bm-space-5); font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* ---------- FOOTER (minimal) ---------- */
.tn-foot {
  background: var(--bm-ink-950);
  color: var(--bm-paper-100);
  padding: var(--bm-space-7) 0;
}
.tn-foot-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--bm-space-5); flex-wrap: wrap;
}
.tn-foot img { height: 48px; }
.tn-foot .small { font-size: 0.75rem; color: var(--bm-ink-400); max-width: 60ch; line-height: 1.6; }
.tn-foot .contact { display: flex; flex-direction: column; gap: 4px; font-size: 0.85rem; color: var(--bm-ink-300); }
.tn-foot .contact a { color: var(--bm-ink-200); }
.tn-foot .contact a:hover { color: var(--bm-paper-100); }

/* Floating WhatsApp */
.tn-wapp {
  position: fixed; right: 24px; bottom: 24px;
  background: var(--bm-whatsapp); color: white;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 14px 18px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  box-shadow: 0 12px 32px -8px rgba(18, 140, 126, 0.45);
  z-index: 100;
  transition: transform 200ms var(--bm-ease);
}
.tn-wapp:hover { transform: translateY(-2px); }
.tn-wapp::before {
  content: ''; position: absolute; inset: -4px; border-radius: 999px;
  background: var(--bm-whatsapp); opacity: 0.25; z-index: -1;
  animation: tn-pulse 2.4s var(--bm-ease) infinite;
}
@keyframes tn-pulse {
  0% { transform: scale(1); opacity: 0.25; }
  100% { transform: scale(1.15); opacity: 0; }
}
@media (max-width: 600px) {
  .tn-wapp { right: 14px; bottom: 14px; padding: 12px 14px; }
  .tn-wapp .label { display: none; }
}


/* ---------- QUEM TE ATENDE (Sobre + foto) ---------- */
.tn-bio { background: var(--bm-paper-100); }
.tn-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .tn-bio-grid { grid-template-columns: 1fr; gap: var(--bm-space-6); } }
.tn-bio-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--bm-radius-md);
  background: var(--bm-paper-200);
}
.tn-bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.tn-bio-photo::after {
  /* sutil borda dourada-borgonha */
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--bm-rule);
  pointer-events: none;
}
.tn-bio-photo-tag {
  position: absolute; left: 0; bottom: 0;
  background: var(--bm-red-700); color: white;
  padding: 12px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
}
.tn-bio-quote {
  font-family: var(--bm-font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 500; letter-spacing: -0.015em;
  line-height: 1.25;
  margin: var(--bm-space-4) 0 var(--bm-space-5);
  color: var(--bm-ink-900);
  text-wrap: balance;
}
.tn-bio-quote em { font-style: italic; color: var(--bm-red-700); font-weight: 400; }
.tn-bio-body { font-size: 1rem; line-height: 1.7; color: var(--bm-ink-700); font-weight: 300; }
.tn-bio-body p { margin: 0 0 var(--bm-space-3); }
.tn-bio-body p:last-child { margin-bottom: 0; }
.tn-bio-credentials {
  display: flex; flex-wrap: wrap; gap: var(--bm-space-4);
  margin-top: var(--bm-space-5);
  padding-top: var(--bm-space-5);
  border-top: 1px solid var(--bm-rule);
}
.tn-bio-credentials .item .label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bm-ink-500); margin-bottom: 4px; font-weight: 500; }
.tn-bio-credentials .item .value { font-family: var(--bm-font-display); font-size: 1.1rem; font-weight: 500; color: var(--bm-ink-900); line-height: 1.2; }
