/* =========================================================
   PÁGINA TRABALHE CONOSCO
   ========================================================= */

/* ----- Hero (split humanizado) ----- */
.tc-hero {
  padding: 140px 0 80px;
  background:
    radial-gradient(circle at 75% 25%, rgba(0, 151, 178, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 20% 75%, rgba(8, 86, 177, 0.22) 0%, transparent 55%),
    var(--azul-profundo);
  position: relative;
  overflow: hidden;
}
.tc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.tc-hero .container { position: relative; z-index: 1; }

.tc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.tc-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 151, 178, 0.1);
  border: 1px solid rgba(0, 151, 178, 0.3);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--azul-claro);
  margin-bottom: 28px;
}
.tc-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 151, 178, 0.25);
}

.tc-hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--texto-claro);
  margin-bottom: 24px;
  text-wrap: balance;
}
.tc-hero-h1 .accent { color: var(--coral); }

.tc-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--texto-sec-claro);
  margin: 0 0 36px;
  text-wrap: pretty;
  max-width: 540px;
}

.tc-hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tc-hero-cta-wrap .btn-large {
  font-size: 17px;
  padding: 16px 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tc-hero-link-secondary {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--texto-claro);
  text-decoration: none;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.tc-hero-link-secondary:hover {
  color: var(--azul-claro);
  border-color: var(--coral);
}

/* Hero visual (foto + decorações) */
.tc-hero-visual {
  position: relative;
  aspect-ratio: 2 / 1;
}
.tc-hero-photo-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(-1.5deg);
  transition: transform 0.5s var(--ease-out-expo);
}
.tc-hero-photo-frame:hover { transform: rotate(0deg); }
.tc-hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tc-hero-photo-deco {
  position: absolute;
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
}
.tc-hero-photo-deco--top {
  top: -22px;
  right: -22px;
  width: 60%;
  height: 60%;
  background: var(--coral);
  opacity: 0.25;
  transform: rotate(3deg);
}
.tc-hero-photo-deco--bottom {
  bottom: -22px;
  left: -22px;
  width: 50%;
  height: 50%;
  background: linear-gradient(135deg, var(--azul-medio), var(--coral));
  opacity: 0.18;
  transform: rotate(-4deg);
}
.tc-hero-photo-badge {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.95);
  color: var(--azul-profundo);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}
.tc-hero-photo-badge svg { color: var(--coral); }

.tc-hero-stats {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.tc-hero-stat {
  text-align: center;
}
.tc-hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tc-hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ----- Valores / Propósito / Visão / Missão ----- */
.tc-valores {
  background: #f4f7fb;
  position: relative;
  overflow: hidden;
}
.tc-valores-track {
  position: relative;
}
.tc-valores-stage {
  position: relative;
  padding: 110px 0;
}
.tc-valores-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 151, 178, 0.10), transparent 38%),
    radial-gradient(circle at 90% 80%, rgba(8, 86, 177, 0.08), transparent 42%);
  pointer-events: none;
}
.tc-valores-stage .container { position: relative; z-index: 1; }
.tc-valores-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.tc-valores-head .eyebrow { margin-bottom: 14px; }
.tc-valores-head .section-h2 {
  color: var(--azul-profundo);
  margin-bottom: 16px;
}
.tc-valores-lead {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.tc-valores-deck {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
/* Efeito scroll-driven SEM palco sticky:
   Sessao mantem altura natural (sem track alto). JS controla transform/opacity
   das cartas conforme a sessao passa pelo viewport. Evita o espaco vazio que
   o sticky deixava na saida. */
.tc-valores--scroll .tc-valor-card {
  will-change: transform, opacity;
  opacity: 0;
  transform: translate3d(-70vw, 0, 0) rotate(-5deg);
}
.tc-valor-card {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 20px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #ffffff;
  border: 1px solid rgba(8, 39, 100, 0.08);
  box-shadow: 0 14px 36px -22px rgba(8, 39, 100, 0.18);
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)), border-color .35s ease, box-shadow .4s ease;
}
.tc-valor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(0, 150, 255, 0.07), transparent 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(8, 39, 100, 0.05), transparent 60%);
  z-index: -1;
  pointer-events: none;
  transition: opacity .4s ease;
}
.tc-valor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 150, 255, 0.36);
  box-shadow: 0 28px 56px -22px rgba(8, 39, 100, 0.28);
}
.tc-valor-numeral {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(8, 39, 100, 0.06);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  transition: color .4s ease, transform .5s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.tc-valor-card:hover .tc-valor-numeral {
  color: rgba(0, 150, 255, 0.22);
  transform: translate(-2px, 4px);
}
.tc-valor-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.tc-valor-title {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
  color: var(--azul-profundo);
}
.tc-valor-rule {
  display: block;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--azul-medio), var(--azul-claro, #0096ff));
  transition: width .45s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.tc-valor-card:hover .tc-valor-rule {
  width: 64px;
}
.tc-valor-text {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  color: #374151;
  position: relative;
  z-index: 1;
}
.tc-valor-text strong {
  font-weight: 700;
  color: var(--azul-profundo);
  position: relative;
  display: inline-block;
}
.tc-valor-text strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(0, 150, 255, 0.22);
  z-index: -1;
  border-radius: 1px;
  transition: background .25s ease;
}
.tc-valor-card:hover .tc-valor-text strong::after {
  background: rgba(0, 150, 255, 0.32);
}
.tc-valor-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.tc-valor-tags li {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--azul-profundo);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 150, 255, 0.08);
  border: 1px solid rgba(0, 150, 255, 0.20);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  cursor: default;
}
.tc-valor-tags li:hover {
  background: var(--azul-medio);
  border-color: var(--azul-medio);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 960px) {
  .tc-valores-stage { padding: 84px 0; }
  .tc-valores-deck { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tc-valor-card { min-height: 320px; padding: 30px 24px 28px; }
  .tc-valor-numeral { font-size: 64px; }
}
@media (max-width: 768px) {
  /* Mobile: cards renderizam normais, sem animacao scroll-linked. */
  .tc-valores--scroll .tc-valor-card {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 560px) {
  .tc-valores-deck { grid-template-columns: 1fr; gap: 18px; }
  .tc-valor-card { min-height: 0; padding: 28px 24px; }
}

/* ----- Manifesto humanizado ----- */
.tc-manifesto {
  background: white;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.tc-manifesto::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.08), transparent 70%);
  pointer-events: none;
}
.tc-manifesto .container { position: relative; z-index: 1; }
.tc-manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.tc-manifesto-content .eyebrow { margin-bottom: 14px; }
.tc-manifesto-content .section-h2 {
  text-align: left;
  margin-bottom: 24px;
}
.tc-manifesto-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto-sec-escuro);
  margin-bottom: 36px;
  text-wrap: pretty;
}
.tc-manifesto-quote {
  position: relative;
  padding: 28px 28px 28px 32px;
  background: var(--offwhite);
  border-left: 4px solid var(--coral);
  border-radius: 0 16px 16px 0;
  margin: 0;
}
.tc-manifesto-quote p {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  color: var(--azul-profundo);
  font-style: italic;
  margin: 0 0 18px;
  font-weight: 500;
}
.tc-manifesto-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--texto-sec-escuro);
  line-height: 1.4;
}
.tc-manifesto-signature picture { display: contents; }
.tc-manifesto-signature img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(8, 39, 100, 0.18);
}
.tc-manifesto-signature strong {
  font-family: var(--font-display);
  color: var(--azul-profundo);
  font-size: 14px;
  font-weight: 700;
}
.tc-manifesto-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(8, 39, 100, 0.35);
}
.tc-manifesto-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tc-manifesto-visual-tag {
  position: absolute;
  bottom: 18px;
  right: 18px;
  padding: 8px 14px;
  background: rgba(8, 39, 100, 0.85);
  color: white;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* ----- Pilares culturais ----- */
.tc-pilares {
  background: var(--offwhite);
  padding: 110px 0;
}
.tc-pilares-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 64px;
}
.tc-pilar {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(8, 39, 100, 0.2);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.tc-pilar:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -25px rgba(8, 39, 100, 0.3);
}
.tc-pilar:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}
.tc-pilar:nth-child(even) .tc-pilar-visual { order: 2; }
.tc-pilar:nth-child(even) .tc-pilar-content { order: 1; }
.tc-pilar-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--azul-profundo);
}
.tc-pilar-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}
.tc-pilar:hover .tc-pilar-visual img { transform: scale(1.06); }
.tc-pilar-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tc-pilar-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 151, 178, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 24px;
}
.tc-pilar--azul .tc-pilar-icon {
  background: rgba(8, 86, 177, 0.12);
  color: var(--azul-medio);
}
.tc-pilar-title {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--azul-profundo);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  text-wrap: balance;
}
.tc-pilar-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--texto-sec-escuro);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.tc-pilar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tc-pilar-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--texto-sec-escuro);
  font-weight: 500;
}
.tc-pilar-list svg { color: var(--coral); flex-shrink: 0; }
.tc-pilar--azul .tc-pilar-list svg { color: var(--azul-medio); }

/* ----- Benefícios ----- */
.tc-beneficios {
  background: var(--offwhite);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.tc-beneficios::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 39, 100, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 39, 100, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.tc-beneficios .container { position: relative; z-index: 1; }
.tc-beneficios .section-h2 { color: var(--azul-profundo); }
.tc-beneficios .section-sub { color: var(--texto-sec-escuro); }

.tc-beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.tc-beneficio-item {
  background: #fff;
  border: 1px solid var(--cinza-suave);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s var(--ease-out-expo);
}
.tc-beneficio-item:hover {
  border-color: rgba(0, 151, 178, 0.4);
  box-shadow: 0 18px 40px -22px rgba(8, 39, 100, 0.25);
  transform: translateY(-4px);
}
.tc-beneficio-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(0, 151, 178, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}
.tc-beneficio-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--azul-profundo);
  margin-bottom: 4px;
}
.tc-beneficio-desc {
  font-size: 13px;
  color: var(--texto-sec-escuro);
  line-height: 1.5;
}

/* ----- Áreas ----- */
.tc-areas {
  background: var(--offwhite);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.tc-areas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/carreiras/logo-mark-blue.webp');
  background-repeat: no-repeat;
  background-position: right -60px center;
  background-size: auto 70vh;
  background-attachment: fixed;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.tc-areas .container {
  position: relative;
  z-index: 1;
}
.tc-areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(8, 39, 100, 0.10);
  border: 1px solid rgba(8, 39, 100, 0.10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px -32px rgba(8, 39, 100, 0.22);
}
.tc-area-card {
  position: relative;
  padding: 20px 20px 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: auto;
  cursor: default;
  isolation: isolate;
  overflow: hidden;
  transition: background .35s ease;
}
.tc-area-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--azul-medio), var(--azul-claro, #0096ff));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
  z-index: 1;
}
.tc-area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(0, 150, 255, 0.07), transparent 55%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
  pointer-events: none;
}
.tc-area-card:hover { background: #fbfdff; }
.tc-area-card:hover::before { transform: scaleY(1); }
.tc-area-card:hover::after { opacity: 1; }

.tc-area-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: rgba(8, 39, 100, 0.30);
  -webkit-user-select: none;
  user-select: none;
  transition: color .35s ease, transform .4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.tc-area-card:hover .tc-area-num {
  color: var(--azul-medio);
  transform: translateX(-2px);
}

.tc-area-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-medio);
  margin: 0 0 4px;
  background: transparent;
  border-radius: 0;
  transition: color .35s ease, transform .4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.tc-area-icon svg { width: 18px; height: 18px; display: block; }
.tc-area-card:hover .tc-area-icon {
  color: var(--azul-claro, #0096ff);
  transform: translateY(-2px);
}

.tc-area-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--azul-profundo);
  letter-spacing: -0.01em;
  line-height: 1.22;
  margin: 0;
}
.tc-area-desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(8, 39, 100, 0.62);
  margin: 0;
  text-wrap: pretty;
}

/* ----- Depoimentos de colaboradores ----- */
.tc-depoimentos {
  background: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.tc-depoimentos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 151, 178, 0.06), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(8, 86, 177, 0.05), transparent 42%);
  pointer-events: none;
}
.tc-depoimentos .container { position: relative; z-index: 1; }

/* ---- Carrossel ---- */
.tc-depoimento-carousel {
  position: relative;
  margin: 56px auto 0;
  max-width: 1180px;
  padding: 0 28px;
}

/* Modo padrão: grid estatico (até 3 cards cabem em uma visualizacao) */
.tc-depoimento-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 8px 4px 8px;
}

/* Modo carrossel: ativa quando JS detecta cards > slots visiveis */
.tc-depoimento-carousel[data-mode="carousel"] .tc-depoimento-track {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3); /* 3 visiveis, gap de 22px */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 4px 28px;
  /* Fade nas bordas indica "tem mais conteudo" sem visual pesado */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.tc-depoimento-track::-webkit-scrollbar { display: none; }
.tc-depoimento-carousel[data-mode="carousel"] .tc-depoimento-track:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
  border-radius: 24px;
}

.tc-depoimento-card {
  position: relative;
  scroll-snap-align: start;
  padding: 32px 26px 26px;
  background: #fff;
  border: 1px solid var(--cinza-suave);
  border-radius: 18px;
  box-shadow: 0 14px 38px -24px rgba(8, 39, 100, 0.22);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}
.tc-depoimento-card:hover {
  border-color: rgba(0, 151, 178, 0.32);
  box-shadow: 0 20px 50px -28px rgba(8, 39, 100, 0.28);
  transform: translateY(-3px);
}

/* ---- Controles (setas + dots): so aparecem em modo carrossel ---- */
.tc-depoimento-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}
.tc-depoimento-carousel[data-mode="carousel"] .tc-depoimento-controls {
  display: flex;
}
.tc-depoimento-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--cinza-suave);
  background: #fff;
  color: var(--azul-profundo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px -10px rgba(8, 39, 100, 0.18);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease-out-expo);
}
.tc-depoimento-arrow:hover:not([disabled]) {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}
.tc-depoimento-arrow:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}
.tc-depoimento-arrow[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.tc-depoimento-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tc-depoimento-dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(8, 39, 100, 0.18);
  cursor: pointer;
  transition: width 0.3s var(--ease-out-expo), background 0.25s ease;
}
.tc-depoimento-dot.is-active {
  background: var(--coral);
  width: 22px;
  border-radius: 4px;
}
.tc-depoimento-dot:hover:not(.is-active) { background: rgba(8, 39, 100, 0.36); }
.tc-depoimento-dot:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}
.tc-depoimento-mark {
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 0.55;
  color: var(--coral);
  opacity: 0.18;
  display: block;
  margin: 0 0 6px;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.tc-depoimento-quote {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--azul-profundo);
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}

.tc-depoimento-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--cinza-suave);
  margin-top: auto;
}
.tc-depoimento-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--offwhite);
  border: 2px solid var(--cinza-suave);
}
.tc-depoimento-avatar picture,
.tc-depoimento-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.tc-depoimento-author-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tc-depoimento-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--azul-profundo);
  letter-spacing: -0.005em;
}
.tc-depoimento-role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--coral-text);
  text-transform: uppercase;
}

/* Tablet: 2 colunas no grid, 2 visiveis no carrossel */
@media (max-width: 1024px) and (min-width: 721px) {
  .tc-depoimento-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tc-depoimento-carousel[data-mode="carousel"] .tc-depoimento-track {
    grid-auto-columns: calc((100% - 22px) / 2);
  }
}

@media (max-width: 720px) {
  .tc-depoimentos { padding: 80px 0; }
  .tc-depoimento-carousel { padding: 0 16px; margin-top: 40px; }
  .tc-depoimento-track {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 6px 4px 8px;
  }
  .tc-depoimento-carousel[data-mode="carousel"] .tc-depoimento-track {
    grid-auto-columns: 100%;
    gap: 16px;
    padding: 6px 4px 24px;
  }
  .tc-depoimento-card { padding: 28px 22px 24px; }
  .tc-depoimento-mark { font-size: 64px; }
  .tc-depoimento-quote { margin-bottom: 20px; font-size: 14.5px; }
  .tc-depoimento-arrow { width: 38px; height: 38px; }
}

/* ----- Como contratamos (processo) ----- */
.tc-processo {
  background: var(--azul-profundo);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.tc-processo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.tc-processo .container { position: relative; z-index: 1; }
.tc-processo .section-h2 { color: var(--texto-claro); }
.tc-processo .section-sub { color: var(--texto-sec-claro); }
.tc-processo-grid {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: processo;
}
.tc-processo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.35s var(--ease-out-expo);
}
.tc-processo-card:hover {
  background: rgba(0, 151, 178, 0.08);
  border-color: rgba(0, 151, 178, 0.4);
  transform: translateY(-6px);
}
.tc-processo-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--coral);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  opacity: 0.85;
}
.tc-processo-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 151, 178, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 18px;
}
.tc-processo-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--texto-claro);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.tc-processo-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--texto-sec-claro);
  margin: 0;
}

/* ----- FAQ ----- */
.tc-faq {
  background: white;
  padding: 110px 0;
}
.tc-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.tc-faq-head { position: sticky; top: 100px; }
.tc-faq-head .eyebrow { margin-bottom: 14px; }
.tc-faq-head .section-h2 {
  text-align: left;
  margin-bottom: 18px;
}
.tc-faq-head .section-sub {
  text-align: left;
  margin: 0;
}
.tc-faq-head a {
  color: var(--azul-medio);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.tc-faq-head a:hover { color: var(--coral-text); }
.tc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tc-faq-item {
  background: var(--offwhite);
  border: 1px solid var(--cinza-suave);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.tc-faq-item[open] {
  border-color: rgba(0, 151, 178, 0.4);
  box-shadow: 0 12px 30px -15px rgba(8, 39, 100, 0.2);
  background: white;
}
.tc-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--azul-profundo);
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
  letter-spacing: -0.01em;
}
.tc-faq-item summary::-webkit-details-marker { display: none; }
.tc-faq-item summary::marker { content: ""; }
.tc-faq-chevron {
  flex-shrink: 0;
  color: var(--coral);
  transition: transform 0.3s var(--ease-out-expo);
}
.tc-faq-item[open] .tc-faq-chevron { transform: rotate(180deg); }
.tc-faq-item p {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--texto-sec-escuro);
  margin: 0;
  text-wrap: pretty;
}

/* ----- Canais sociais ----- */
.tc-canais {
  background: var(--offwhite);
  padding: 110px 0;
}
.tc-canais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.tc-canal {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 28px;
  background: white;
  border: 1px solid var(--cinza-suave);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo), border-color 0.3s ease;
}
.tc-canal:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(8, 39, 100, 0.25);
  border-color: rgba(0, 151, 178, 0.4);
}
.tc-canal-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-canal > div:not(.tc-canal-icon) { flex: 1; min-width: 0; }
.tc-canal-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--azul-profundo);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tc-canal-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--texto-sec-escuro);
}
.tc-canal-arrow {
  flex-shrink: 0;
  color: var(--coral);
  transition: transform 0.3s var(--ease-out-expo);
}
.tc-canal:hover .tc-canal-arrow { transform: translateX(4px); }

/* ----- Responsive ----- */
@media (max-width: 1240px) {
  .tc-areas-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 980px) {
  .tc-areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .tc-hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .tc-hero-content { align-items: center; }
  .tc-hero-sub { margin-left: auto; margin-right: auto; }
  .tc-hero-cta-wrap { justify-content: center; }
  .tc-hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .tc-manifesto-grid { grid-template-columns: 1fr; gap: 48px; }
  .tc-pilar,
  .tc-pilar:nth-child(even) { grid-template-columns: 1fr; }
  .tc-pilar:nth-child(even) .tc-pilar-visual { order: 0; }
  .tc-pilar:nth-child(even) .tc-pilar-content { order: 0; }
  .tc-pilar-visual { min-height: 280px; }
  .tc-pilar-content { padding: 40px 32px; }
  .tc-processo-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .tc-faq-head { position: static; }
  .tc-canais-grid { grid-template-columns: 1fr; }
  .tc-beneficios-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-areas-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-area-card { padding: 18px 18px 16px; }
}
@media (max-width: 640px) {
  .tc-hero { padding: 120px 0 70px; }
  .tc-hero-grid { gap: 40px; margin-bottom: 48px; }
  .tc-hero-cta-wrap { flex-direction: column; gap: 12px; width: 100%; }
  .tc-hero-cta-wrap .btn-large { width: 100%; justify-content: center; }
  .tc-hero-stats { gap: 24px; justify-content: space-around; padding-top: 32px; }
  .tc-hero-photo-deco--top,
  .tc-hero-photo-deco--bottom { display: none; }
  .tc-hero-photo-badge { bottom: 14px; left: 14px; font-size: 11px; padding: 8px 12px; }
  .tc-manifesto,
  .tc-pilares,
  .tc-processo,
  .tc-faq,
  .tc-canais { padding: 72px 0; }
  .tc-pilar-content { padding: 32px 24px; }
  .tc-pilar-title { font-size: 20px; }
  .tc-processo-grid { grid-template-columns: 1fr; }
  .tc-faq-item summary { padding: 18px 20px; font-size: 15px; }
  .tc-faq-item p { padding: 0 20px 20px; }
  .tc-canal { padding: 22px 22px; }
  .tc-beneficios-grid { grid-template-columns: 1fr; }
  .tc-areas-grid { grid-template-columns: 1fr; }
  .tc-areas::before {
    background-attachment: scroll;
    background-size: auto 50%;
    background-position: right -40px center;
    opacity: 0.06;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tc-areas::before { background-attachment: scroll; }
}

/* CTA pro portal de carreiras */
.car-cta { padding: 80px 0; background: #f8fafc; }
.car-cta-card {
  background: linear-gradient(135deg, var(--azul-profundo), var(--azul-medio));
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  color: #fff;
}
.car-cta-card h2 { font-size: var(--fs-h3); margin: 12px 0 16px; }
.car-cta-card p { font-size: 15px; opacity: .9; max-width: 620px; margin: 0 auto 28px; }
.car-cta-card .btn-large {
  font-size: 18px; padding: 16px 36px;
  background: var(--coral-hover); color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
}
.car-cta-secondary { margin-top: 24px; font-size: 14px; opacity: .8; }
.car-cta-secondary a { color: #fff; text-decoration: underline; }
@media (max-width: 720px) {
  .car-cta-card { padding: 40px 24px; }
  .car-cta-card h2 { font-size: 24px; }
}
