/* Trabalhe Conosco - Visual alinhado ao index */
.tc-hero {
    position: relative;
    padding: clamp(3rem, 6vw, 5.5rem) 0;
    overflow: hidden;
}

.tc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, transparent 25%, #000 120%),
        linear-gradient(90deg, rgba(0, 255, 234, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 234, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.tc-title {
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.tc-lede {
    font-size: 1.1rem;
    max-width: 640px;
    margin-bottom: 1.75rem;
    color: var(--text-tech);
}

.tc-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tc-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.tc-chip {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-tech);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tc-hero .tech-card,
.tc-form-section .tech-card {
    border-radius: 0;
    clip-path: polygon(15px 0,
            100% 0,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            0 100%,
            0 15px);
}

.tc-hero-card {
    padding: 1.8rem;
}

.tc-step-list,
.tc-info-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.tc-step,
.tc-info-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.tc-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
    background: rgba(0, 255, 234, 0.1);
}

.tc-step strong,
.tc-info-item strong {
    display: block;
    font-size: 0.95rem;
}

.tc-step span,
.tc-info-item span {
    color: var(--text-tech);
    font-size: 0.9rem;
}

.tc-card-note {
    margin: 1rem 0 0;
    color: var(--text-tech);
}

.btn-prioridade {
    color: var(--neon-blue) !important;
    border-color: var(--neon-blue) !important;
    justify-content: center;
    text-align: center;
    min-width: 180px;
}

.btn-prioridade:hover {
    background: rgba(0, 255, 234, 0.15);
    box-shadow: 0 0 18px rgba(0, 255, 234, 0.45);
    color: #fff !important;
}

.tc-form-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.tc-form-card {
    padding: 1.75rem;
}

.tc-form-head h2 {
    margin-bottom: 0.4rem;
}

.tc-form-head p {
    margin-bottom: 1.5rem;
    color: var(--text-tech);
}

.tc-input {
    background: rgba(5, 11, 20, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
}

.tc-input:focus {
    border-color: rgba(0, 255, 234, 0.6) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 234, 0.15) !important;
}

.tc-field label {
    color: var(--text-tech);
}

.tc-field .tc-icon {
    margin-right: 6px;
}

.tc-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.tc-info-card {
    padding: 1.5rem;
}

.tc-tips {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--text-tech);
}

.tc-tips li {
    margin-bottom: 0.5rem;
}

.tc-alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 255, 234, 0.06);
    color: #fff;
    clip-path: polygon(15px 0,
            100% 0,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            0 100%,
            0 15px);
}

.tc-alert--success {
    border-color: rgba(0, 255, 157, 0.4);
}

.tc-alert--error {
    border-color: rgba(255, 77, 29, 0.4);
    background: rgba(255, 77, 29, 0.08);
}

@media (max-width: 991px) {
    .tc-form-actions {
        justify-content: stretch;
    }
}

@media (max-width: 576px) {
    .tc-hero {
        padding: 2.5rem 0;
    }

    .tc-cta {
        flex-direction: column;
        align-items: stretch;
    }
}
