/* Trabalhe Conosco v2 — Redesign completo */

/* Reset da página */
.tc-page {
    font-family: 'Roboto', 'Helvetica Neue', sans-serif;
    color: #333;
}

    .tc-page * {
        box-sizing: border-box;
    }

/* ===== HERO ===== */
.tc-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 20px 50px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .tc-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/Content/img/banner-trabalhe-conosco.webp') center/cover no-repeat;
        opacity: 0.15;
    }

    .tc-hero > * {
        position: relative;
        z-index: 1;
    }

    .tc-hero h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .tc-hero .tc-hero-sub {
        font-size: 1rem;
        color: rgba(255,255,255,0.8);
        margin-bottom: 24px;
    }

    .tc-hero .tc-hero-stats {
        display: flex;
        justify-content: center;
        gap: 32px;
        margin-bottom: 28px;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.7);
    }

        .tc-hero .tc-hero-stats strong {
            color: #fff;
            font-size: 1.1rem;
            display: block;
        }

.tc-hero-search {
    display: flex;
    max-width: 420px;
    margin: 0 auto;
}

    .tc-hero-search select {
        width: 100%;
        border: none;
        padding: 14px 40px 14px 18px;
        font-size: 15px;
        color: #333;
        background: #fff;
        border-radius: 8px;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        outline: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
    }

        .tc-hero-search select:hover {
            box-shadow: 0 6px 24px rgba(0,0,0,0.35);
        }

    .tc-hero-search input {
        flex: 1;
        border: none;
        padding: 14px 18px;
        font-size: 15px;
        color: #333;
        outline: none;
    }

    .tc-hero-search button {
        background: #c10230;
        color: #fff;
        border: none;
        padding: 14px 24px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: background 0.2s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

        .tc-hero-search button:hover {
            background: #990025;
        }

.tc-hero-link {
    margin-top: 16px;
    font-size: 0.85rem;
}

    .tc-hero-link a {
        color: rgba(255,255,255,0.7);
        text-decoration: underline;
    }

        .tc-hero-link a:hover {
            color: #fff;
        }

/* ===== SEÇÃO GENÉRICA ===== */
.tc-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tc-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c10230;
    margin-bottom: 4px;
}

.tc-section-sub {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 24px;
}

.tc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.tc-section-count {
    font-size: 0.85rem;
    color: #888;
}

/* ===== VAGAS GRID ===== */
.tc-vagas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.tc-vaga-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

    .tc-vaga-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

.tc-vaga-header {
    background: #c10230;
    color: #fff;
    padding: 16px 18px;
}

    .tc-vaga-header h3 {
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0 0 4px;
    }

    .tc-vaga-header .tc-vaga-local {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.85);
    }

    .tc-vaga-header .tc-vaga-cidade {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.6);
        margin-top: 2px;
    }

.tc-vaga-body {
    padding: 16px 18px;
    flex: 1;
}

.tc-vaga-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

    .tc-vaga-info i {
        color: #c10230;
        min-width: 20px;
        margin-right: 8px;
        margin-top: 3px;
        flex-shrink: 0;
        text-align: center;
        font-size: 14px;
    }

    .tc-vaga-info strong {
        color: #333;
    }

.tc-vaga-footer {
    padding: 14px 18px;
    text-align: center;
}

.tc-btn-candidatar {
    width: 80%;
    height: 40px;
    margin: 0 auto;
    border-radius: 4px;
    font-size: 0.95rem;
    background-color: #fff;
    color: #c10230;
    border: 1px solid #c10230;
    transition: background-color 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

    .tc-btn-candidatar:hover {
        background-color: #c10230;
        color: #fff;
    }

.tc-btn-primary {
    display: inline-block;
    background: #c10230;
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none !important;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

    .tc-btn-primary:hover {
        background: #990025;
    }

.tc-btn-outline {
    display: inline-block;
    border: 2px solid #c10230;
    color: #c10230 !important;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none !important;
    transition: all 0.2s;
}

    .tc-btn-outline:hover {
        background: #c10230;
        color: #fff !important;
    }

/* ===== COBERTURA CTA ===== */
.tc-cobertura-cta {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

    .tc-cobertura-cta h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2e7d32;
        margin: 0 0 4px;
    }

    .tc-cobertura-cta p {
        font-size: 0.88rem;
        color: #555;
        margin: 0;
    }

.tc-btn-green {
    display: inline-block;
    background: #2e7d32;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none !important;
    transition: background 0.2s;
    white-space: nowrap;
}

    .tc-btn-green:hover {
        background: #1b5e20;
    }

/* ===== DEPOIMENTOS ===== */
.tc-depoimentos {
    background: #f9f9f9;
    padding: 40px 20px;
}

.tc-depoimentos-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.tc-depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.tc-depoimento {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    gap: 16px;
}

.tc-depoimento-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e0e0e0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #999;
}

.tc-depoimento-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    font-style: italic;
}

.tc-depoimento-author {
    font-size: 0.8rem;
    color: #999;
    margin-top: 8px;
    font-style: normal;
}

/* ===== BENEFÍCIOS ===== */
.tc-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.tc-beneficio {
    padding: 24px 16px;
}

    .tc-beneficio i {
        font-size: 2rem;
        color: #c10230;
        margin-bottom: 12px;
        display: block;
    }

    .tc-beneficio h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .tc-beneficio p {
        font-size: 0.85rem;
        color: #888;
        line-height: 1.4;
    }

/* ===== FORMULÁRIO ===== */
.tc-form-section {
    background: #1a1a2e;
    padding: 50px 20px;
    color: #fff;
}

.tc-form-inner {
    max-width: 700px;
    margin: 0 auto;
}

.tc-form-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
}

.tc-form-section .tc-form-sub {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
}

.tc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

    .tc-form-grid .tc-form-full {
        grid-column: 1 / -1;
    }

    .tc-form-grid input,
    .tc-form-grid select,
    .tc-form-grid textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.08);
        color: #fff;
        border-radius: 6px;
        font-size: 0.9rem;
        transition: border 0.2s;
        outline: none;
    }

        .tc-form-grid input::placeholder,
        .tc-form-grid select option,
        .tc-form-grid textarea::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .tc-form-grid input:focus,
        .tc-form-grid select:focus,
        .tc-form-grid textarea:focus {
            border-color: #c10230;
        }

    .tc-form-grid select {
        height: 44px;
    }

        .tc-form-grid select option {
            background: #1a1a2e;
            color: #fff;
        }

    .tc-form-grid textarea {
        resize: vertical;
        min-height: 80px;
    }

.tc-form-submit {
    text-align: center;
    margin-top: 20px;
}

    .tc-form-submit button {
        background: #c10230;
        color: #fff;
        border: none;
        padding: 14px 40px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: background 0.2s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

        .tc-form-submit button:hover {
            background: #990025;
        }

/* ===== PROCESSO ===== */
.tc-processo-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.tc-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 12px;
}

    .tc-step::after {
        content: '';
        position: absolute;
        top: 24px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: #ddd;
    }

    .tc-step:last-child::after {
        display: none;
    }

.tc-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #c10230;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
}

.tc-step h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.tc-step p {
    font-size: 0.78rem;
    color: #888;
}

/* ===== FAQ ===== */
.tc-faq {
    background: #f9f9f9;
    padding: 40px 20px;
}

.tc-faq-inner {
    max-width: 700px;
    margin: 0 auto;
}

.tc-faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
}

    .tc-faq-item summary {
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        color: #333;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .tc-faq-item summary::after {
            content: '+';
            font-size: 1.2rem;
            color: #c10230;
        }

    .tc-faq-item[open] summary::after {
        content: '−';
    }

    .tc-faq-item p {
        font-size: 0.88rem;
        color: #666;
        line-height: 1.5;
        margin-top: 8px;
    }

/* ===== intlTelInput overrides ===== */
/* Container ocupa largura total na grid e no modal */
.tc-form-section .iti,
.tc-form-grid .iti,
#modalCandidaturaVaga .iti {
    width: 100% !important;
    display: block !important;
}
/* Forçar o parent do intl (que o JS seta width inline) a ocupar 100% */
.tc-form-grid #telefone {
    width: 100% !important;
}
/* Input dentro do intl no formulário escuro */
.tc-form-section .iti input.iti__tel-input,
.tc-form-grid .iti input.iti__tel-input {
    width: 100% !important;
    padding: 12px 14px 12px 52px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    outline: none;
    transition: border 0.2s;
}

    .tc-form-section .iti input.iti__tel-input:focus,
    .tc-form-grid .iti input.iti__tel-input:focus {
        border-color: #c10230;
    }

    .tc-form-section .iti input.iti__tel-input::placeholder {
        color: rgba(255,255,255,0.4);
    }

#modalCandidaturaVaga .iti input.iti__tel-input {
    border-color: #ddd;
    color: #333;
    background: #fff;
    padding: 10px 12px 10px 52px;
    border-radius: 6px;
    font-size: 0.9rem;
}
/* Dropdown legível */
.iti__dropdown-content {
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}

.iti__country-list {
    max-height: 220px !important;
}

.iti__country {
    padding: 8px 12px !important;
    font-size: 14px !important;
    color: #333 !important;
}

    .iti__country:hover,
    .iti__country.iti__highlight {
        background-color: #f5f5f5 !important;
    }

.iti__country-name {
    color: #333 !important;
    margin-right: 8px !important;
}

.iti__dial-code {
    color: #888 !important;
}

.iti__search-input {
    padding: 8px 12px !important;
    font-size: 14px !important;
    border: none !important;
    border-bottom: 1px solid #eee !important;
    outline: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .tc-hero h1 {
        font-size: 1.6rem;
    }

    .tc-hero-search {
        flex-direction: column;
        border-radius: 8px;
    }

        .tc-hero-search input, .tc-hero-search button {
            border-radius: 0;
        }

    .tc-hero .tc-hero-stats {
        flex-direction: column;
        gap: 8px;
    }

    .tc-vagas-grid {
        grid-template-columns: 1fr;
    }

    .tc-beneficios-grid {
        grid-template-columns: 1fr;
    }

    .tc-cobertura-cta {
        flex-direction: column;
        text-align: center;
    }

    .tc-processo-steps {
        flex-direction: column;
        gap: 16px;
    }

    .tc-step::after {
        display: none;
    }

    .tc-form-grid {
        grid-template-columns: 1fr;
    }

    .tc-depoimentos-grid {
        grid-template-columns: 1fr;
    }
}
