/* ═══════════════════════════════════════════════════
   TREINAMENTO — CSS base para páginas de treinamento
   Prefixo: .tr-
═══════════════════════════════════════════════════ */

/* ─── BOTÕES ─────────────────────────────────────── */
.btn-tr-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: var(--radius-btn);
  background: var(--branco);
  color: var(--marrom);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-tr-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.2);
}
.btn-tr-primary:active { transform: translateY(0); }

.btn-tr-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--branco);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.45);
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.btn-tr-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-tr-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--laranja);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: var(--radius-btn);
  padding: 18px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-tr-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(241,90,42,0.4);
}

/* ─── EYEBROW / HEADING COMPARTILHADOS ──────────── */
.tr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Age', 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 18px;
}
.tr-eyebrow--light {
  color: var(--amarelo);
}

.tr-heading {
      font-weight: var(--fw-display);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    background: var(--grad-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tr-heading--light {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  color: #fff;
}

.tr-body-text {
  font-weight: 400;
    font-size: 19px;
    line-height: 1.6;
    color: var(--cinza);
    max-width: 600px;
}

.tr-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 60px;
}
.tr-section-header .tr-eyebrow {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
}

/* Eyebrow estilo sec-tag para seção de pilares (laranja) */
.tr-pilares-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Age', 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--laranja);
}
/* ─── SEÇÃO 1: HERO ─────────────────────────────── */
.tr-hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #14110f;
  padding-top: 96px;
}

.tr-hero-bg-img {
  position: absolute;
  inset: 0;
}
.tr-hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.tr-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20,17,15,0.92) 0%, transparent 55%),
    linear-gradient(to top, rgba(20,17,15,0.80) 0%, transparent 35%);
}


.tr-hero-turma {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: clamp(220px, 28vw, 400px);
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.08em;
}

.tr-hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241,90,42,0.2) 40%, transparent);
}

.tr-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 80px;
  display: flex;
  align-items: center;
}

.tr-hero-left {
  max-width: 880px;
}

.tr-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid rgba(251, 174, 66, 0.28);
}

/* cada item: ícone + texto */
.tr-hero-eyebrow-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.tr-hero-eyebrow-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--amarelo);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
/* separador entre itens */
.tr-hero-eyebrow-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(251, 174, 66, 0.55);
  flex-shrink: 0;
}

/* compat: estilo antigo (caso alguma página ainda use line+text) */
.tr-hero-eyebrow-line {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--amarelo);
  flex-shrink: 0;
}
.tr-hero-eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amarelo);
}

.tr-hero-logo {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.tr-hero-name {
  font-family: 'Raleway', sans-serif;
  font-weight: var(--fw-display);
  font-size: clamp(64px, 9vw, 90px);
  line-height: 1.02;
    letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);;
  margin-bottom: 12px;
}

.tr-hero-tagline {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 28px);
  color: rgba(255,255,255,0.80);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.tr-hero-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  border-left: 2px solid rgba(251,174,66,0.4);
  padding-left: 20px;
  max-width: 880px;
  margin-bottom: 32px;
}

.tr-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
}
.tr-hero-badge svg {
  flex-shrink: 0;
  opacity: 0.65;
}

.tr-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* ─── SEÇÃO 2: SOBRE ────────────────────────────── */
.tr-sobre {
  background: var(--branco);
  padding: 110px 80px;
}

.tr-sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.tr-sobre-logo {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}

.tr-sobre-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.tr-sobre-text .btn-tr-outline {
  align-self: flex-start;
}

.tr-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--off-white);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.08),
    0 32px 64px rgba(0,0,0,0.08);
  position: relative;
}
.tr-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(20,17,15,0.06);
  pointer-events: none;
  z-index: 1;
}

.tr-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ede7df, #ddd5cb);
  cursor: pointer;
  transition: filter 0.25s var(--ease);
}
.tr-video-placeholder:hover { filter: brightness(0.97); }

.tr-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tr-play-btn svg { margin-left: 4px; }
.tr-video-placeholder:hover .tr-play-btn {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(241,90,42,0.25);
}

/* ─── SEÇÃO 3: PILARES ──────────────────────────── */
.tr-pilares {
  background: var(--off-white);
  padding: 110px 80px;
  position: relative;
  overflow: hidden;
}

.tr-pilares .tr-section-header {
  position: relative;
  z-index: 1;
}

.tr-pilares-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.tr-pilares-grid {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.tr-pilar-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
  cursor: default;
}
.tr-pilar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.tr-pilar-card:hover { background: #fdfaf7; }
.tr-pilar-card:nth-child(odd) { background: var(--off-white); }
.tr-pilar-card:nth-child(odd):hover { background: var(--off-white); }
.tr-pilar-card:hover::before { transform: scaleX(1); }

.tr-pilar-number {
  font-weight: var(--fw-display);
  font-size: 52px;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  position: absolute;
  top: 24px; right: 24px;
  letter-spacing: -0.04em;
  transition: opacity 0.3s;
}
.tr-pilar-card:hover .tr-pilar-number { opacity: 0.5; }

.tr-pilar-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(251,174,66,0.15), rgba(241,90,42,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.tr-pilar-card:hover .tr-pilar-icon {
  background: linear-gradient(135deg, rgba(251,174,66,0.25), rgba(241,90,42,0.2));
}
.tr-pilar-icon svg {
  width: 24px; height: 24px;
  stroke: var(--laranja);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tr-pilar-title {
  font-weight: var(--fw-heading);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.tr-pilar-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: var(--cinza);
  flex: 1;
}

/* ─── SEÇÃO 4: PARA QUEM É ──────────────────────── */
.tr-para-quem {
  background: var(--branco);
  padding: 110px 80px;
}

.tr-para-quem-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.tr-para-quem-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.tr-chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 120px;
  margin-top: 48px;
}

.tr-para-quem-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.tr-chip {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--marrom);
  padding: 10px 12px 10px 22px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.50) 0%, rgba(204,204,204,0.50) 50%, rgba(255, 123, 0, 0.6) 100%);
  backdrop-filter: blur(5px);
  transition: opacity 0.2s var(--ease);
  cursor: default;
}
.tr-chip::after {
  content: '+';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff8f6d;
  color: #F15A2A;
  font-size: 28px;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.tr-chip:hover { opacity: 0.85; }

/* ─── SEÇÃO 5: RESULTADOS ───────────────────────── */
.tr-resultados {
  background: var(--escuro);
  padding: 110px 80px;
  position: relative;
  overflow: hidden;
}
.tr-resultados::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(34,30,26,0.8) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 50% 110%, rgba(241,90,42,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.tr-resultados::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241,90,42,0.25) 30%, rgba(251,174,66,0.15) 60%, transparent);
}

.tr-resultados-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.tr-metricas {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 60px 0 52px;
  padding: 56px 48px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.tr-metrica {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
}

.tr-metrica-valor {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #FBAE42, #F15A2A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.tr-metrica-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.40);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tr-metrica-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
  margin: 8px 0;
}

/* ─── SEÇÃO 6: MENTORES ─────────────────────────── */
.tr-mentores {
  background: var(--branco);
  padding: 110px 80px;
}

.tr-mentores-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tr-mentor-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid rgba(20,17,15,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tr-mentor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.tr-mentor-photo {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(145deg, #ede7df, #ddd5cb);
  position: relative;
}
.tr-mentor-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(20,17,15,0.15), transparent);
  pointer-events: none;
}

.tr-mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease);
}
.tr-mentor-card:hover .tr-mentor-photo img {
  transform: scale(1.06);
}

.tr-mentor-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tr-mentor-photo--placeholder span {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(34,30,26,0.35);
}

.tr-mentor-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid rgba(20,17,15,0.06);
}

.tr-mentor-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--escuro);
  letter-spacing: -0.02em;
}

.tr-mentor-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(34,30,26,0.45);
  font-style: italic;
}

/* ─── SEÇÃO 7: DEPOIMENTOS ──────────────────────── */
.tr-depos {
  background: var(--off-white);
  padding: 110px 80px;
}

.tr-depos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tr-depo-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tr-depo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

.tr-depo-video {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.tr-depo-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── SEÇÃO 8: CTA FINAL ────────────────────────── */
.section-cta .cta-bg-img {
  background: url('../ptz_background.jpg') center/cover no-repeat;
}

.tr-cta-final {
  background: var(--escuro);
  padding: 140px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tr-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(241,90,42,0.13) 0%, rgba(189,32,47,0.06) 40%, transparent 70%),
    linear-gradient(160deg, #2a0d05 0%, #14110f 50%, #0d0502 100%);
}

.tr-cta-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.tr-cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,90,42,0.16) 0%, rgba(189,32,47,0.06) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: tr-glow-pulse 5s ease-in-out infinite;
}

.tr-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.tr-cta-headline {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
}

.tr-cta-gold {
  background: linear-gradient(120deg, #FBAE42, #F15A2A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tr-cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 52px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1728px) {
  .tr-hero { max-height: 94svh; }
  .tr-hero-inner { padding: 60px 60px; }
  .tr-hero-logo { height: 72px; }
  .tr-hero-name { font-size: clamp(56px, 7vw, 80px); }
  .tr-hero-sub { font-size: clamp(15px, 1.1vw, 18px); }
  .tr-heading { font-size: clamp(36px, 4vw, 55px); }
  .tr-chips-grid { padding: 0 60px; }
}

@media (max-width: 1504px) {
  .tr-heading { font-size: clamp(36px, 4vw, 53px); }
  .tr-chips-grid { padding: 0 40px; }
}

@media (max-width: 1350px) {
  .tr-hero-left { max-width: 700px; }
  .tr-hero-name { font-size: clamp(64px, 9vw, 70px); }
  .tr-heading { font-size: clamp(36px, 4vw, 45px); }
  .tr-body-text { font-size: 16px; }
  .tr-chips-grid { padding: 0 20px; }
  .tr-para-quem { padding: 110px 30px; }
  .tr-chip { font-size: 13.5px; }
}

@media (max-width: 1024px) {
  .tr-heading { font-size: 40px; }
  .tr-depos { padding: 80px 30px; }
  .tr-sobre { padding: 80px 30px; }
  .tr-pilares { padding: 110px 30px; }
  .tr-sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .tr-sobre-text { order: 1; }
  .tr-sobre-video { order: 2; }
  .tr-sobre-text .btn-tr-outline { display: none; }
  .tr-sobre-text { order: 1; margin-bottom: 24px; }
  .tr-sobre-video { display: flex; flex-direction: column; align-items: center; gap: 40px; }
  .tr-sobre-video::after {
    content: 'Quero Entender o Método';
    display: inline-block;
    background: var(--laranja);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 17px;
    border-radius: var(--radius-btn);
    padding: 18px 40px;
    cursor: pointer;
  }

  .tr-hero { min-height: 100svh; max-height: 100svh; }
  .tr-hero-bg-img img { object-position: center 10%; }
  .tr-hero-inner { padding: 160px 24px 0; flex-direction: column; align-items: center; text-align: center; }
  .tr-hero-overlay { background: linear-gradient(to right, rgba(20,17,15,0.92) 0%, transparent 55%), linear-gradient(to top, rgba(20,17,15,0.95) 0%,rgba(20, 17, 15, 0.85) 40%, transparent 55%); }
  .tr-hero-name { font-size: clamp(52px, 9vw, 72px); }
  .tr-hero-sub { font-size: 14px; border-left: none; border-top: 2px solid rgba(251,174,66,0.4); padding-left: 0; padding-top: 16px; }
  .tr-hero-left { max-width: 100%; margin-top: auto; }
  .tr-hero-eyebrow { justify-content: center; margin-bottom: 12px; }
  .tr-hero-badges { justify-content: center; }
  .tr-hero-btns { justify-content: center; }
  .tr-hero-logo { display: block; margin: 0 0 16px; align-self: flex-start; }
  .tr-chip { font-size: 13px; }
  .tr-chips-grid { grid-template-columns: repeat(2, 1fr); padding: 0; gap: 10px; }
}

.tr-hero-sub--mobile { display: none; }

@media (max-width: 768px) {
  .tr-hero-sub--desktop { display: none; }
  .tr-hero-sub--mobile { display: block; }
  .tr-chip { font-size: 17px; }
  .tr-hero-logo { display: none; }
  .tr-hero-eyebrow-text { color: #fff; font-size: 9px; }
  .tr-hero-eyebrow {
    gap: 8px;
    padding: 8px 12px;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .tr-hero-eyebrow-item { gap: 5px; font-size: 9.5px; letter-spacing: 0.08em; }
  .tr-hero-eyebrow-item svg { width: 12px; height: 12px; }
  .tr-hero-eyebrow-sep { width: 2.5px; height: 2.5px; }
  /* .tr-hero-badge--imersao { display: none; } */
  .tr-hero-badge { font-size: 12px; padding: 7px 12px; }
  .tr-hero-btns { flex-wrap: nowrap; gap: 10px; }
  .btn-tr-primary, .btn-tr-ghost { font-size: 13px; padding: 12px 18px; white-space: nowrap; }
  .tr-hero-name { font-size: clamp(36px, 9vw, 48px); }
  .tr-hero-inner { padding-top: 220px; }
  .tr-hero-badges { margin-bottom: 24px; }
}

/* Telas bem estreitas (iPhone SE/mini, ~375px): comprime mais o eyebrow p/ caber numa linha */
@media (max-width: 400px) {
  .tr-hero-eyebrow { gap: 6px; padding: 7px 10px; }
  .tr-hero-eyebrow-item { gap: 4px; font-size: 9px; letter-spacing: 0.06em; }
  .tr-hero-eyebrow-item svg { width: 11px; height: 11px; }
  .tr-hero-eyebrow-sep { width: 2px; height: 2px; }
}

@media (max-width: 608px) {
  .tr-pilares-grid { grid-template-columns: 1fr; }
  .tr-chips-grid { grid-template-columns: 1fr; }
  .tr-depos-grid { grid-template-columns: 1fr; }
  .tr-chip { font-size: 13px; }
  .tr-chip--hide-mobile { display: none; }
}
