/* ============================================================
   TC-STYLES.CSS — Trabalhe Conosco | Eco Fonte
   Paleta: laranja #fe8f00 · branco · cinza-chumbo #1a1a1a
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --tc-orange:        #fe8f00;
  --tc-orange-dark:   #e07e00;
  --tc-orange-light:  #fff3e0;
  --tc-orange-rgb:    254, 143, 0;

  /* Neutral Colors */
  --tc-dark:          #1a1a1a;
  --tc-dark-2:        #222222;
  --tc-gray-600:      #4a4a4a;
  --tc-gray-500:      #6b6b6b;
  --tc-gray-400:      #9a9a9a;
  --tc-gray-200:      #e5e5e5;
  --tc-gray-100:      #f2f2f2;
  --tc-bg-light:      #f7f7f7;
  --tc-white:         #ffffff;

  /* Typography */
  --tc-font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shadows */
  --tc-shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --tc-shadow-md:     0 8px 24px rgba(0,0,0,0.08);
  --tc-shadow-lg:     0 20px 48px rgba(0,0,0,0.10);
  --tc-shadow-orange: 0 8px 24px rgba(254,143,0,0.30);

  /* Radii */
  --tc-radius-sm:     8px;
  --tc-radius-md:     16px;
  --tc-radius-lg:     24px;
  --tc-radius-xl:     32px;

  /* Transitions */
  --tc-ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --tc-transition:    all 0.3s var(--tc-ease);

  /* Layout */
  --tc-max-width:     1220px;
  --tc-header-h:      72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--tc-font);
  color: var(--tc-dark);
  background-color: var(--tc-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--tc-transition);
}

button {
  cursor: pointer;
  font-family: var(--tc-font);
}

img { max-width: 100%; height: auto; display: block; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--tc-gray-100); }
::-webkit-scrollbar-thumb { background: var(--tc-orange); border-radius: 4px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.tc-container {
  width: 100%;
  max-width: var(--tc-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.tc-section {
  padding: 112px 0;
}

.tc-bg-light {
  background-color: var(--tc-bg-light);
}

.tc-bg-dark {
  background-color: #121212;
  color: var(--tc-white);
}

.tc-bg-dark .tc-section-title {
  color: var(--tc-white);
}

.tc-bg-dark .tc-section-sub {
  color: var(--tc-gray-400);
}

/* Diferenciais cards in dark section */
.tc-bg-dark .tc-diff-card {
  background: var(--tc-dark-2);
  border-color: rgba(255, 255, 255, 0.08);
}
.tc-bg-dark .tc-diff-card h3 {
  color: var(--tc-white);
}
.tc-bg-dark .tc-diff-card p {
  color: var(--tc-gray-400);
}

/* Vagas cards in dark section */
.tc-bg-dark .tc-vaga-card {
  background: var(--tc-dark-2);
  border-color: rgba(255, 255, 255, 0.08);
}
.tc-bg-dark .tc-vaga-title {
  color: var(--tc-white);
}
.tc-bg-dark .tc-vaga-desc {
  color: var(--tc-gray-400);
}
.tc-bg-dark .tc-vaga-info {
  color: var(--tc-gray-400);
}

/* Filter buttons in dark section */
.tc-bg-dark .tc-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--tc-gray-400);
}
.tc-bg-dark .tc-filter-btn:hover {
  border-color: var(--tc-orange);
  color: var(--tc-orange);
}
.tc-bg-dark .tc-filter-btn.active {
  background: var(--tc-orange);
  border-color: var(--tc-orange);
  color: var(--tc-white);
}


.tc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--tc-ease), transform 0.7s var(--tc-ease);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.tc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--tc-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: var(--tc-transition);
  white-space: nowrap;
  cursor: pointer;
}

.tc-btn-primary {
  background-color: var(--tc-orange);
  color: var(--tc-white);
  border-color: var(--tc-orange);
}
.tc-btn-primary:hover {
  background-color: var(--tc-orange-dark);
  border-color: var(--tc-orange-dark);
  box-shadow: var(--tc-shadow-orange);
  transform: translateY(-2px);
  color: var(--tc-white);
}

.tc-btn-ghost {
  background-color: transparent;
  color: var(--tc-white);
  border-color: rgba(255,255,255,0.4);
}
.tc-btn-ghost:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: var(--tc-white);
}

.tc-btn-outline {
  background-color: transparent;
  color: var(--tc-orange);
  border-color: var(--tc-orange);
}
.tc-btn-outline:hover {
  background-color: var(--tc-orange);
  color: var(--tc-white);
  box-shadow: var(--tc-shadow-orange);
  transform: translateY(-2px);
}

.tc-btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: var(--tc-radius-md);
}

.tc-btn-full { width: 100%; justify-content: center; }

.tc-btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.tc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--tc-header-h);
  background: transparent;
  transition: background 0.4s var(--tc-ease), box-shadow 0.4s var(--tc-ease);
}

.tc-header.tc-scrolled {
  background: rgba(26,26,26,0.98);
  box-shadow: var(--tc-shadow-md);
  backdrop-filter: blur(8px);
}

.tc-header.tc-scrolled .tc-nav-link {
  color: rgba(255,255,255,0.85);
}

.tc-header.tc-scrolled .tc-nav-link:hover {
  color: var(--tc-white);
}

.tc-header.tc-scrolled .tc-menu-toggle span {
  background-color: var(--tc-white);
}

.tc-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--tc-header-h);
  gap: 32px;
}

.tc-logo img {
  height: 36px;
  width: auto;
}

.tc-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.tc-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding: 4px 0;
  transition: var(--tc-transition);
}

.tc-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--tc-orange);
  transition: width 0.3s var(--tc-ease);
}

.tc-nav-link:hover::after,
.tc-nav-link.active::after {
  width: 100%;
}

.tc-nav-link:hover {
  color: var(--tc-white);
}

.tc-nav-cta {
  flex-shrink: 0;
}

.tc-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.tc-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: var(--tc-transition);
}

/* ============================================================
   HERO
   ============================================================ */
.tc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--tc-header-h);
}

.tc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.75) 60%, rgba(254,143,0,0.15) 100%),
    url('../images/hero_bg.png') center/cover no-repeat;
  z-index: 0;
}

.tc-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(254,143,0,0.12) 0%, transparent 60%);
}

.tc-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 80px;
}

/* Badge */
.tc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,143,0,0.15);
  border: 1px solid rgba(254,143,0,0.4);
  color: var(--tc-orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tc-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tc-orange);
  animation: pulseDot 2.5s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Hero Headline */
.tc-hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--tc-white);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.tc-highlight {
  color: var(--tc-orange);
}

.tc-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 44px;
}

.tc-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tc-hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
}

.tc-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tc-hero-stat strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tc-orange);
  line-height: 1;
}

.tc-hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

.tc-hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.tc-hero-visual {
  position: relative;
}

.tc-hero-img-wrapper {
  position: relative;
  border-radius: var(--tc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--tc-shadow-lg), 0 0 0 1px rgba(255,255,255,0.08);
}

.tc-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,143,0,0.15) 0%, transparent 60%);
}

/* Floating cards */
.tc-hero-card-float {
  position: absolute;
  background: var(--tc-white);
  border-radius: var(--tc-radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--tc-shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tc-dark);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.tc-hero-card-1 { top: -14px; left: -20px; animation-delay: 0s; }
.tc-hero-card-2 { bottom: 40px; left: -28px; animation-delay: 1.3s; }
.tc-hero-card-3 { top: 30px; right: -20px; animation-delay: 0.7s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Scroll hint */
.tc-hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.tc-scroll-dot {
  width: 30px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 15px;
  position: relative;
}

.tc-scroll-dot::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--tc-orange);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  100% { top: 28px; opacity: 0; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.tc-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.tc-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tc-orange);
  margin-bottom: 14px;
}

.tc-label-white {
  color: rgba(255,255,255,0.7);
}

.tc-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--tc-dark);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.tc-section-sub {
  font-size: 1rem;
  color: var(--tc-gray-500);
  line-height: 1.7;
}

/* ============================================================
   DIFERENCIAIS CARDS
   ============================================================ */
.tc-cards-grid {
  display: grid;
  gap: 24px;
}

.tc-diff-card {
  background: var(--tc-white);
  border-radius: var(--tc-radius-md);
  padding: 36px 28px;
  border: 1px solid var(--tc-gray-200);
  transition: var(--tc-transition);
  position: relative;
  overflow: hidden;
}

.tc-diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--tc-orange);
  border-radius: 0 0 4px 0;
  transition: height 0.4s var(--tc-ease);
}

.tc-diff-card:hover,
.tc-diff-card:focus {
  transform: translateY(-6px);
  box-shadow: var(--tc-shadow-lg);
  border-color: rgba(254,143,0,0.2);
  outline: none;
}

.tc-diff-card:hover::before,
.tc-diff-card:focus::before {
  height: 60%;
}

.tc-diff-icon {
  width: 52px;
  height: 52px;
  background: var(--tc-orange-light);
  border-radius: var(--tc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tc-orange);
  margin-bottom: 20px;
  transition: var(--tc-transition);
}

.tc-diff-card:hover .tc-diff-icon,
.tc-diff-card:focus .tc-diff-icon {
  background: var(--tc-orange);
  color: var(--tc-white);
}

.tc-diff-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tc-dark);
  margin-bottom: 10px;
}

.tc-diff-card p {
  font-size: 0.9rem;
  color: var(--tc-gray-500);
  line-height: 1.65;
}

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.tc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tc-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--tc-white);
  border-radius: var(--tc-radius-md);
  padding: 28px 24px;
  border: 1px solid var(--tc-gray-200);
  transition: var(--tc-transition);
}

.tc-benefit-item:hover,
.tc-benefit-item:focus {
  box-shadow: var(--tc-shadow-md);
  border-color: rgba(254,143,0,0.25);
  transform: translateY(-3px);
  outline: none;
}

.tc-benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--tc-orange-light);
  border-radius: var(--tc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tc-orange);
  transition: var(--tc-transition);
}

.tc-benefit-item:hover .tc-benefit-icon {
  background: var(--tc-orange);
  color: var(--tc-white);
}

.tc-benefit-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tc-dark);
  margin-bottom: 5px;
}

.tc-benefit-item p {
  font-size: 0.85rem;
  color: var(--tc-gray-500);
  line-height: 1.6;
}

/* ============================================================
   FILTRO DE VAGAS
   ============================================================ */
.tc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.tc-filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--tc-gray-200);
  background: var(--tc-white);
  color: var(--tc-gray-500);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tc-transition);
  white-space: nowrap;
}

.tc-filter-btn:hover {
  border-color: var(--tc-orange);
  color: var(--tc-orange);
}

.tc-filter-btn:focus {
  outline: 2px solid var(--tc-orange);
  outline-offset: 2px;
}

.tc-filter-btn.active {
  background: var(--tc-orange);
  border-color: var(--tc-orange);
  color: var(--tc-white);
  box-shadow: var(--tc-shadow-orange);
}

/* ============================================================
   VAGAS GRID & CARDS
   ============================================================ */
.tc-vagas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tc-vaga-card {
  background: var(--tc-white);
  border-radius: var(--tc-radius-md);
  padding: 28px 26px;
  border: 1px solid var(--tc-gray-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: var(--tc-transition);
  animation: fadeInUp 0.4s var(--tc-ease) both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.tc-vaga-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--tc-shadow-lg);
  border-color: rgba(254,143,0,0.3);
}

.tc-vaga-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tc-vaga-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tc-dark);
  line-height: 1.3;
  flex: 1;
}

.tc-vaga-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  background: var(--tc-orange-light);
  color: var(--tc-orange);
  border: 1px solid rgba(254,143,0,0.25);
  flex-shrink: 0;
}

.tc-vaga-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tc-orange);
}

.tc-vaga-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tc-vaga-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--tc-gray-400);
}

.tc-vaga-info svg {
  flex-shrink: 0;
}

.tc-vaga-desc {
  font-size: 0.85rem;
  color: var(--tc-gray-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tc-vaga-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--tc-gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tc-vaga-setor-label {
  font-size: 0.78rem;
  color: var(--tc-gray-400);
  font-weight: 500;
}

/* ============================================================
   ESTADO VAZIO
   ============================================================ */
.tc-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
}

.tc-empty-icon {
  width: 80px;
  height: 80px;
  background: var(--tc-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--tc-orange);
}

.tc-empty-state h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tc-dark);
  margin-bottom: 10px;
}

.tc-empty-state p {
  font-size: 0.95rem;
  color: var(--tc-gray-500);
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

/* ============================================================
   PROCESSO SELETIVO — TIMELINE
   ============================================================ */
.tc-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}

.tc-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
}

.tc-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.tc-timeline-icon {
  width: 64px;
  height: 64px;
  background: var(--tc-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tc-white);
  box-shadow: var(--tc-shadow-orange);
  transition: var(--tc-transition);
}

.tc-timeline-step:hover .tc-timeline-icon {
  transform: scale(1.1);
}

.tc-timeline-step-final .tc-timeline-icon {
  background: var(--tc-dark);
}

.tc-timeline-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tc-orange);
}

.tc-timeline-content {
  text-align: center;
  padding: 0 12px;
}

.tc-timeline-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tc-dark);
  margin-bottom: 6px;
}

.tc-timeline-content p {
  font-size: 0.82rem;
  color: var(--tc-gray-500);
  line-height: 1.6;
}

.tc-timeline-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(to right, var(--tc-orange), rgba(254,143,0,0.3));
  z-index: 0;
}

.tc-timeline-last .tc-timeline-connector {
  display: none;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.tc-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tc-testimonial-card {
  background: var(--tc-white);
  border-radius: var(--tc-radius-md);
  padding: 36px 32px;
  border: 1px solid var(--tc-gray-200);
  position: relative;
  transition: var(--tc-transition);
}

.tc-testimonial-card:hover,
.tc-testimonial-card:focus {
  box-shadow: var(--tc-shadow-lg);
  border-color: rgba(254,143,0,0.2);
  transform: translateY(-4px);
  outline: none;
}

.tc-testimonial-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--tc-orange);
  font-family: Georgia, serif;
  opacity: 0.25;
  margin-bottom: -16px;
}

.tc-testimonial-text {
  font-size: 0.92rem;
  color: var(--tc-gray-600);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.tc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tc-author-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--tc-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tc-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.tc-testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tc-dark);
  margin-bottom: 2px;
}

.tc-testimonial-author span {
  font-size: 0.78rem;
  color: var(--tc-gray-400);
}

/* ============================================================
   CTA / BANCO DE TALENTOS
   ============================================================ */
.tc-cta-section {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.tc-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.tc-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.tc-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.tc-cta-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--tc-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.tc-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Form */
.tc-talent-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tc-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tc-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}

.tc-form-group input,
.tc-form-group select {
  padding: 13px 16px;
  border-radius: var(--tc-radius-sm);
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: var(--tc-white);
  font-size: 0.9rem;
  font-family: var(--tc-font);
  transition: var(--tc-transition);
}

.tc-form-group input::placeholder {
  color: rgba(255,255,255,0.3);
}

.tc-form-group input:focus,
.tc-form-group select:focus {
  outline: none;
  border-color: var(--tc-orange);
  background: rgba(254,143,0,0.06);
}

.tc-form-group select option {
  background: var(--tc-dark-2);
  color: var(--tc-white);
}

/* Radio Bar replacing Select */
.tc-radio-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.tc-radio-btn {
  position: relative;
  cursor: pointer;
}
.tc-radio-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.tc-radio-btn span {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--tc-transition);
  white-space: nowrap;
  user-select: none;
}
.tc-radio-btn:hover span {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  color: var(--tc-white);
}
.tc-radio-btn input:checked + span {
  background: var(--tc-orange);
  color: var(--tc-white);
  border-color: var(--tc-orange);
  box-shadow: 0 4px 16px rgba(254,143,0,0.25);
}
.tc-radio-btn input:focus-visible + span {
  outline: 2px solid var(--tc-orange);
  outline-offset: 2px;
}

/* File Upload */
.tc-file-upload {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: var(--tc-radius-sm);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--tc-transition);
  position: relative;
  text-align: center;
}

.tc-file-upload:hover,
.tc-file-upload:focus {
  border-color: var(--tc-orange);
  background: rgba(254,143,0,0.06);
  color: rgba(255,255,255,0.7);
  outline: none;
}

.tc-file-upload svg {
  color: var(--tc-orange);
}

.tc-file-upload span {
  font-size: 0.85rem;
  line-height: 1.5;
}

.tc-file-upload strong {
  color: var(--tc-orange);
  font-weight: 600;
}

.tc-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.tc-form-actions {
  margin-top: 4px;
}

.tc-form-actions .tc-btn-primary {
  background: var(--tc-orange);
  color: var(--tc-white);
  border-color: var(--tc-orange);
  border-radius: 100px;
  padding: 16px 32px;
  font-size: 1.05rem;
}

.tc-form-actions .tc-btn-primary:hover {
  background: var(--tc-orange-dark);
  border-color: var(--tc-orange-dark);
  box-shadow: var(--tc-shadow-orange);
}

/* ============================================================
   CENTRALIZANDO TEXTOS
   ============================================================ */
.tc-hero-text-center,
.tc-diff-card,
.tc-benefit-item,
.tc-timeline-content,
.tc-vaga-card,
.tc-cta-content {
  text-align: center;
}

.tc-hero-text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.tc-hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.tc-benefit-item {
  flex-direction: column;
  align-items: center;
}

.tc-diff-icon {
  margin-left: auto;
  margin-right: auto;
}

.tc-form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.tc-form-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1.5px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  padding: 14px 18px;
  border-radius: var(--tc-radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}

.tc-form-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1.5px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  padding: 14px 18px;
  border-radius: var(--tc-radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}

/* ============================================================
   FOOTER — Estilo Eco Fonte (3 colunas: Brand | Contato | Dados Legais)
   ============================================================ */
.tc-footer {
  background: #0e0e0e;
  padding: 72px 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.tc-footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.tc-footer-brand .tc-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.tc-footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 290px;
}

/* Generic column: Contato + Dados Legais */
.tc-footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tc-orange);
  margin-bottom: 22px;
}

/* Contact list */
.tc-footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tc-footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.tc-footer-contact-list svg {
  color: var(--tc-orange);
  flex-shrink: 0;
}

.tc-footer-contact-list a {
  color: rgba(255,255,255,0.55);
  transition: var(--tc-transition);
}

.tc-footer-contact-list a:hover {
  color: var(--tc-orange);
}

/* CNPJ */
.tc-footer-cnpj {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  font-weight: 400;
}

/* LGPD notice box */
.tc-footer-lgpd {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--tc-radius-sm);
  padding: 16px 18px;
}

.tc-footer-lgpd svg {
  color: var(--tc-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.tc-footer-lgpd p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  margin: 0;
}

/* Bottom bar */
.tc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 0;
}

.tc-footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.tc-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tc-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .tc-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
  }

  .tc-hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .tc-hero-card-1,
  .tc-hero-card-2,
  .tc-hero-card-3 {
    display: none;
  }

  .tc-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tc-vagas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tc-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tc-testimonials-grid .tc-testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .tc-cta-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tc-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .tc-timeline {
    flex-wrap: wrap;
    gap: 40px;
  }

  .tc-timeline-connector {
    display: none;
  }

  .tc-timeline-item {
    min-width: 140px;
    flex: none;
    width: calc(33.333% - 28px);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .tc-section {
    padding: 64px 0;
  }

  /* Header */
  .tc-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--tc-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--tc-header-h) + 24px) 32px 40px;
    gap: 8px;
    z-index: 1000;
    transition: right 0.4s var(--tc-ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
  }

  .tc-nav-menu.active {
    right: 0;
  }

  .tc-nav-link {
    color: var(--tc-dark);
    font-size: 1.05rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--tc-gray-100);
  }

  .tc-nav-link:hover {
    color: var(--tc-orange);
  }

  .tc-nav-cta {
    display: none;
  }

  .tc-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  /* Toggle active state */
  .tc-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--tc-dark);
  }
  .tc-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .tc-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--tc-dark);
  }

  /* Hero */
  .tc-hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .tc-hero-headline {
    font-size: 2rem;
  }

  .tc-hero-stats {
    gap: 18px;
  }

  .tc-hero-stat strong {
    font-size: 1.3rem;
  }

  /* Grids */
  .tc-grid-4,
  .tc-benefits-grid,
  .tc-vagas-grid,
  .tc-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .tc-testimonials-grid .tc-testimonial-card:last-child {
    max-width: 100%;
    grid-column: 1;
  }

  /* Section header */
  .tc-section-header {
    margin-bottom: 40px;
  }

  /* Timeline */
  .tc-timeline-item {
    width: calc(50% - 20px);
  }

  /* CTA Form */
  .tc-form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .tc-footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tc-footer-bottom {
    text-align: center;
  }

  /* Filter bar */
  .tc-filter-bar {
    gap: 8px;
  }

  .tc-filter-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .tc-hero-ctas {
    flex-direction: column;
  }

  .tc-btn-lg {
    width: 100%;
    justify-content: center;
  }

  .tc-timeline-item {
    width: 100%;
  }
}
