/* ============================================
   TRABALHE COM A GENTE
============================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.lp-careers-hero {
    background-color: #032f5a;
    padding: 60px 0 0;
    overflow: hidden;
    position: relative;
}

.lp-careers-hero__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.lp-careers-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-careers-hero__media {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.lp-careers-hero__media img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.35));
}

.lp-careers-hero__content {
    padding: 0 0 60px;
    color: #fff;
}

.lp-careers-hero__title {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.lp-careers-hero__title--highlight {
    color: #ffa100;
    text-shadow: 0 0 40px rgba(255,161,0,0.25);
}

.lp-careers-hero__sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
}

.lp-careers-hero__sub--highlight {
    color: #ffa100;
}

/* ── WAVES ────────────────────────────────────────────────── */
.lp-careers-wave {
    display: block;
    line-height: 0;
}

.lp-careers-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

.lp-careers-culture__wave-top {
    display: block;
    line-height: 0;
    margin-bottom: -1px;
}

.lp-careers-culture__wave-top svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* ── FORM ─────────────────────────────────────────────────── */
.lp-careers-form {
    background-color: #032f5a;
    padding: 60px 0 0;
}

.lp-careers-form__header {
    text-align: center;
    margin-bottom: 32px;
}

.lp-careers-form__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #ffa100;
    margin-bottom: 10px;
}

.lp-careers-form__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

.lp-careers-form__feedback {
    max-width: 860px;
    margin: 0 auto 24px;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

.lp-careers-form__feedback--success {
    background: rgba(40, 167, 69, 0.18);
    color: #6ee07a;
    border: 1px solid rgba(40, 167, 69, 0.35);
}

.lp-careers-form__feedback--error {
    background: rgba(220, 53, 69, 0.18);
    color: #f88;
    border: 1px solid rgba(220, 53, 69, 0.35);
}

/* Glass card */
.lp-careers-form__card {
    max-width: 860px;
    margin: 0 auto 60px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 20px;
    padding: 40px;
}

.lp-careers-form__row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.lp-careers-form__field {
    display: flex;
    flex-direction: column;
    flex: 1 1 200px;
    min-width: 0;
}

.lp-careers-form__field--wide {
    flex: 2 1 300px;
}

.lp-careers-form__field--upload {
    flex: 1 1 200px;
}

.lp-careers-form__label {
    font-size: 0.83rem;
    font-weight: 600;
    color: rgba(255,255,255,0.78);
    margin-bottom: 7px;
    letter-spacing: 0.03em;
}

.lp-careers-form__label span {
    color: #ffa100;
}

.lp-careers-form__input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 11px 14px;
    outline: none;
    width: 100%;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lp-careers-form__input:focus {
    border-color: #ffa100;
    background: rgba(255,255,255,0.11);
    box-shadow: 0 0 0 3px rgba(255,161,0,0.14);
}

.lp-careers-form__input::placeholder {
    color: rgba(255,255,255,0.28);
}

/* Dropzone */
.lp-careers-form__dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
    min-height: 90px;
    border: 2px dashed rgba(255,255,255,0.22);
    border-radius: 10px;
    padding: 16px 12px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}

.lp-careers-form__dropzone:hover {
    border-color: #ffa100;
    background: rgba(255,161,0,0.07);
}

.lp-careers-form__dropzone input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.lp-careers-form__dropzone-icon {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
}

.lp-careers-form__dropzone-main {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.82);
    word-break: break-all;
    line-height: 1.3;
}

.lp-careers-form__dropzone-hint {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.38);
}

/* Submit */
.lp-careers-form__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
    background: #ffa100;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.lp-careers-form__btn:hover {
    background: #e08800;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,161,0,0.32);
}

/* ── QUEM SOMOS ───────────────────────────────────────────── */
.lp-careers-about {
    background: #fff;
    padding: 70px 0;
}

.lp-careers-about__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #ffa100;
    text-align: center;
    margin-bottom: 40px;
}

.lp-careers-about__title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: #ffa100;
    border-radius: 2px;
    margin: 14px auto 0;
}

/* Stats row */
.lp-careers-about__stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.lp-careers-about__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 140px;
    padding: 22px 24px;
    background: #f3f7ff;
    border: 1px solid #dbe8ff;
    border-top: 3px solid #ffa100;
    border-radius: 12px;
    text-align: center;
}

.lp-careers-about__stat-num {
    font-size: 1.75rem;
    font-weight: 900;
    color: #032f5a;
    line-height: 1;
}

.lp-careers-about__stat-label {
    font-size: 0.75rem;
    color: #5d7899;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-careers-about__text {
    font-size: 1rem;
    color: #5d7899;
    line-height: 1.78;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 20px;
}

.lp-careers-about__highlight {
    color: #ffa100;
    font-weight: 700;
}

.lp-careers-about__highlight--green {
    color: #28a745;
}

.lp-careers-about__cta {
    text-align: center;
    font-size: 1.15rem;
    color: #032f5a;
    font-weight: 700;
    margin-top: 12px;
}

/* ── NOSSA CULTURA ────────────────────────────────────────── */
.lp-careers-culture {
    background-color: #032f5a;
    padding: 0 0 80px;
    color: #fff;
}

.lp-careers-culture__title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    padding-top: 56px;
    margin-bottom: 50px;
}

.lp-careers-culture__sparkle {
    color: #ffa100;
    font-style: normal;
}

.lp-careers-culture__mv {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.lp-careers-culture__mv-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.11);
    border-top: 3px solid #ffa100;
    border-radius: 16px;
    padding: 32px 28px;
    transition: background 0.2s, transform 0.2s;
}

.lp-careers-culture__mv-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
}

.lp-careers-culture__mv-icon {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 20px;
}

.lp-careers-culture__mv-label {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffa100;
    margin-bottom: 10px;
}

.lp-careers-culture__mv-text {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
}

.lp-careers-culture__highlight {
    color: #ffa100;
    font-weight: 700;
}

.lp-careers-culture__valores {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-careers-culture__valores-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 12px;
}

.lp-careers-culture__valores-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffa100;
    margin-bottom: 28px;
}

.lp-careers-culture__valores-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 1000px;
}

.lp-careers-culture__valor {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-top: 3px solid #ffa100;
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
}

.lp-careers-culture__valor:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-3px);
}

.lp-careers-culture__valor-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.lp-careers-culture__valor-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ── AINDA COM DÚVIDAS ────────────────────────────────────── */
.lp-careers-support {
    background: #f7f9fc;
    padding: 64px 0;
    border-top: 1px solid #e5ecf5;
}

.lp-careers-support__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.lp-careers-support__text {
    flex: 1 1 300px;
    max-width: 540px;
}

.lp-careers-support__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #032f5a;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}

.lp-careers-support__title strong {
    color: #2b4e74;
}

.lp-careers-support__text p {
    font-size: 0.95rem;
    color: #5d7899;
    margin-bottom: 6px;
    line-height: 1.6;
}

.lp-careers-support__link {
    color: #003087;
    font-weight: 600;
    text-decoration: underline;
}

.lp-careers-support__btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.lp-careers-support__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
}

.lp-careers-support__btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.lp-careers-support__btn--wa {
    background: #ffa100;
    color: #fff;
}

.lp-careers-support__btn--dark {
    background: #032f5a;
    color: #fff;
}

/* ── RESPONSIVIDADE ───────────────────────────────────────── */
@media (max-width: 900px) {
    .lp-careers-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lp-careers-hero__media {
        order: -1;
        max-width: 440px;
        margin: 0 auto;
    }

    .lp-careers-hero__content {
        padding: 0 0 40px;
    }

    .lp-careers-form__card {
        padding: 28px 20px;
    }

    .lp-careers-culture__valores-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lp-careers-about__stats {
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .lp-careers-form__row {
        flex-direction: column;
    }

    .lp-careers-form__card {
        padding: 22px 16px;
    }

    .lp-careers-form__field--wide,
    .lp-careers-form__field {
        flex: 1 1 auto;
    }

    .lp-careers-about__stats {
        flex-direction: column;
        align-items: center;
    }

    .lp-careers-about__stat {
        width: 100%;
        max-width: 280px;
    }

    .lp-careers-culture__mv {
        gap: 20px;
    }

    .lp-careers-culture__valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-careers-support__body {
        flex-direction: column;
        text-align: center;
    }

    .lp-careers-support__btns {
        width: 100%;
        align-items: center;
    }

    .lp-careers-support__btn {
        width: 100%;
        justify-content: center;
    }
}
