/* 2P Energia Solar — página Trabalhe Conosco (/trabalhe-conosco/) */

/* ------------------------------ HERO ------------------------------ */
.tc-hero { position: relative; max-width: 1240px; margin: 0 auto; padding: 150px 24px 76px; }
.tc-hero__title { font-family: var(--font-title); font-weight: 800; font-size: clamp(32px, 5vw, 52px); line-height: 1.08; letter-spacing: -0.02em; margin: 14px 0 18px; max-width: 720px; }
.tc-hero__title span { color: var(--orange); }
.tc-hero__lead { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 0 28px; }
.tc-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------- POR QUE A 2P --------------------------- */
.tc-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tc-card { background: #FFFFFF; border: 1px solid var(--line-soft); border-radius: 16px; padding: 24px; }
.tc-card__title { margin: 0 0 8px; font-family: var(--font-title); font-weight: 700; font-size: 17px; color: var(--text); }
.tc-card__title::before { content: ''; display: block; width: 30px; height: 3px; border-radius: 3px; background: var(--orange); margin-bottom: 14px; }
.tc-card__desc { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ---------------------------- FORMULÁRIO ---------------------------- */
.tc-form-section { padding: 72px 0; }
.tc-form-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.tc-form-title { margin-top: 10px; }
.tc-form-lead { margin: 14px 0 22px; font-size: 15.5px; line-height: 1.65; color: var(--muted); }
.tc-contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.tc-contact-list li { display: flex; flex-direction: column; gap: 2px; }
.tc-contact-list span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.tc-contact-list a { font-size: 15px; font-weight: 700; color: var(--text); text-decoration: none; }
.tc-contact-list a:hover { color: var(--orange); }

.tc-form-card { background: #FFFFFF; border: 1px solid var(--line-soft); border-radius: 20px; box-shadow: 0 24px 60px rgba(12,18,32,0.08); padding: 30px; }
.tc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tc-field { display: flex; flex-direction: column; }
.tc-field--full { grid-column: 1 / -1; }
.tc-field__label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.tc-input {
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; background: #FFFFFF; width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
select.tc-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235C6572' d='M6 8 0 2 1.4.6 6 5.2 10.6.6 12 2z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.tc-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,104,32,0.12); }
.tc-input.is-error { border-color: #E4572E; }
textarea.tc-input { resize: vertical; min-height: 84px; }
.tc-field__error { margin: 6px 0 0; font-size: 12.5px; color: #C23B14; }

.tc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.tc-consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.tc-consent input { margin-top: 3px; flex-shrink: 0; }
.tc-consent a { color: var(--orange); }
.tc-consent-error { margin: 8px 0 0; font-size: 13px; color: #C23B14; }
.tc-submit {
  margin-top: 22px; width: 100%; border: none; cursor: pointer;
  background: var(--orange); color: #FFFFFF; font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 15px 22px; border-radius: 12px; transition: background .2s ease, transform .2s ease;
}
.tc-submit:hover { background: var(--orange-dark); }
.tc-submit:active { transform: translateY(1px); }

/* ------------------------------ SUCESSO ------------------------------ */
.tc-done { text-align: center; padding: 20px 6px; }
.tc-done__badge { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: #E9F7EF; color: #1B9E5A; font-size: 24px; margin-bottom: 16px; }
.tc-done__title { margin: 0 0 10px; font-family: var(--font-title); font-weight: 800; font-size: 22px; color: var(--text); }
.tc-done__text { margin: 0 auto 22px; max-width: 420px; font-size: 15px; line-height: 1.7; color: var(--muted); }
.tc-done__whats { display: inline-block; background: var(--ink); color: #FFFFFF; text-decoration: none; font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: 10px; }

/* ---------------------------- RESPONSIVO ---------------------------- */
@media (max-width: 900px) {
  .tc-grid { grid-template-columns: repeat(2, 1fr); }
  .tc-form-wrap { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .tc-hero { padding: 128px 20px 56px; }
  .tc-grid { grid-template-columns: 1fr; }
  .tc-fields { grid-template-columns: 1fr; }
  .tc-form-card { padding: 22px; }
}
