/* Bootstrap reboot alters body's font-family/line-height, which the
   shared header/footer (from estilo.css) were not built expecting.
   Pin them back so header/footer keep their original proportions. */
body {
  font-family: Arial, sans-serif;
  line-height: normal;
}

.footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.footer-bottom {
  background-color: #787878;
  color: #fff;
}
.footer-bottom-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: Roboto, sans-serif;
}
.footer-bottom-logo a {
  display: inline-block;
}
.footer-bottom-logo img {
  display: block;
}

.content-trabalheconosco {
  width: 100%;
}
.tc-secao {
  --vinho: #722045;
  --vinho-suave: #f7f0f3;
  --texto: #2b2b30;
  --texto-suave: #6c6a70;
  --borda: #e9e4e7;
  --raio: 12px;
  padding: 5rem 0;
  color: var(--texto);
}

.tc-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "titulo"
    "painel"
    "vagas";
  row-gap: 3rem;
}
@media (min-width: 992px) {
  .tc-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "titulo painel"
      "vagas  painel";
    column-gap: 3rem;
    row-gap: 0;
  }
  .tc-secao .container {
    max-width: 1140px;
  }
  .tc-col-titulo {
    padding-left: 1.5rem;
  }
}
.tc-col-titulo { grid-area: titulo; }
.tc-painel { grid-area: painel; }
.tc-vagas { grid-area: vagas; }

@media (max-width: 991.98px) {
  .tc-col-titulo { text-align: center; }
  .tc-sociais { justify-content: center; }
}

/* COLUNA ESQUERDA: TITULO */
.tc-titulo {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 8px;
  margin-bottom: 1.25rem;
}
.tc-titulo span { display: block; color: var(--vinho); }

.tc-divisor {
  width: 56px;
  height: 3px;
  background: var(--vinho);
  border: 0;
  opacity: 1;
  margin: 0 0 1.5rem;
}

/* SOCIAIS */
.tc-sociais { display: flex; gap: .75rem; margin-bottom: 2.5rem; }
.tc-sociais a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--vinho-suave);
  color: var(--vinho);
  transition: background .15s ease;
}
.tc-sociais a:hover { background: #efe2e8; }
.tc-sociais svg { width: 17px; height: 17px; fill: currentColor; }

/* CARDS DE VAGAS */
.tc-vagas { display: flex; flex-direction: column; gap: 1rem; }

.tc-vaga {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 1.75rem 2rem;
}
.tc-vaga-label {
  display: block;
  margin: 0 0 .75rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vinho);
}
.tc-vaga-titulo {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.tc-vaga-texto {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--texto-suave);
  margin: 0;
}

/* COLUNA DIREITA: PAINEL DO FORMULARIO */
.tc-painel {
  background: var(--vinho-suave);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* NOTA ANCORADA NA BASE DO PAINEL */
.tc-painel-rodape {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(114, 32, 69, .12);
  font-size: .85rem;
  color: var(--texto-suave);
}
.tc-painel-rodape p { margin: 0; }
.tc-painel-titulo {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.tc-painel-texto {
  font-size: .92rem;
  color: var(--texto-suave);
  margin-bottom: 1.75rem;
}

/* CAMPOS */
.tc-form .form-label {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .375rem;
}
.tc-form .form-control,
.tc-form .form-select {
  border-color: var(--borda);
  border-radius: 8px;
  padding: .625rem .875rem;
  font-size: .95rem;
}
.tc-form .form-control::placeholder { color: #a8a5ab; }
.tc-form .form-control:focus,
.tc-form .form-select:focus {
  border-color: var(--vinho);
  box-shadow: 0 0 0 .2rem rgba(114, 32, 69, .12);
}

/* RITMO VERTICAL UNICO PARA TODOS OS GRUPOS */
.tc-grupo { margin-bottom: 1.25rem; overflow: hidden; }
.tc-grupo .row { --bs-gutter-y: 1.25rem; }

/* BOTAO */
.tc-enviar {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid var(--vinho);
  border-radius: 999px;
  background: #fff;
  color: var(--vinho);
  font-weight: 600;
  padding: .7rem 2.25rem;
  margin-top: .5rem;
  transition: background .15s ease, color .15s ease;
}
.tc-enviar:hover { background: var(--vinho); color: #fff; }