<style>
/* Premium Careers / Talent Page specific styles */
.talent-page-main {
    background-color: #FAF6F0;
    width: 100%;
}
.talent-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 0 24px;
    font-family: 'Saans', sans-serif;
    color: #2A2822;
}

/* Stunning Hero section (Full-width open layout with mesh gradient & dotted pattern) */
.talent-hero-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* .site-main ya recibe padding-top:76px !important del bloque
       page-interior global — este valor solo necesita cubrir el resto
       del respiro visual, no duplicar los 220px originales. */
    padding: 48px 24px 100px 24px;
    text-align: center;
    background-color: #ffffff;
    border-bottom: 1px solid #E2DED4;
    margin-bottom: 80px;
}
.talent-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.talent-hero-tag {
    display: block;
    color: #2A2822;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
}
.talent-hero-inner h1 {
    font-family: 'Saans', sans-serif;
    font-size: clamp(34px, 5.5vw, 50px);
    font-weight: 400;
    line-height: 1.15;
    color: #1D1B16 !important;
    margin-bottom: 24px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}
.talent-hero-inner h1 span {
    font-weight: 800;
    color: #1D1B16;
}
.talent-hero-inner .description {
    font-size: 19px;
    line-height: 1.65;
    color: #635E54;
    max-width: 850px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}
.talent-hero-inner .callout-box {
    /* Texto plano, sin apariencia de botón. */
    background: none;
    border: none;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: #635E54;
    display: block;
    border-radius: 0;
    box-shadow: none;
    margin-top: 12px;
}

/* Blueprint divider */
.blueprint-divider {
    border-top: 1px dashed #E2DED4;
    margin: 64px 0;
    position: relative;
    text-align: center;
}
.blueprint-divider-mark {
    background: #FAF6F0;
    color: #7F786C;
    font-family: monospace;
    font-size: 12px;
    padding: 0 16px;
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- New Bento Grid for Talento --- */
.talent-benefits-section {
    margin-bottom: 96px;
    /* Banda full-width con fondo diferenciado. */
    background: #F5F3EF;
    margin-inline: calc(50% - 50vw);
    padding: 72px max(24px, calc(50vw - 50%));
}
.talent-section-title {
    text-align: center;
    font-family: 'Saans', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #1D1B16 !important;
    margin-bottom: 60px;
}
.talent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.talent-card {
    background: #FFFFFF;
    border: 1px solid #E2DED4;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(29, 27, 22, 0.02);
    display: flex;
    flex-direction: column;
}
.talent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(51, 77, 207, 0.06);
    border-color: #C8D5F9;
}
.talent-card-num {
    font-family: 'Saans', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #F4F3F0; /* Very subtle light background number */
    position: absolute;
    top: 24px;
    right: 32px;
    line-height: 1;
    z-index: 1;
    transition: color 0.3s ease;
}
.talent-card:hover .talent-card-num {
    color: #E0E4F7;
}
.talent-card-content {
    position: relative;
    z-index: 2;
}
.talent-card-tag {
    font-family: 'Saans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #334DCF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}
.talent-card h3 {
    font-family: 'Saans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1D1B16 !important;
    margin: 0 0 16px 0;
    line-height: 1.25;
}
.talent-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #635E54;
    margin: 0;
}

/* Profiles Section */
.talent-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.talent-profile-card {
    background: #FFFFFF;
    border: 1px solid #E2DED4;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 4px 12px rgba(29,27,22,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-align: left;
}
.talent-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(51,77,207,0.05);
    border-color: #334DCF;
}
.talent-profile-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.talent-profile-icon {
    font-size: 32px;
    margin-bottom: 4px;
}
.talent-profile-info h4 {
    font-family: 'Saans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0E0E90;
    margin: 0;
}
.talent-profile-info p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #635E54;
    margin: 0;
}
.talent-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 24px;
}
.talent-profile-tag {
    font-size: 11px;
    font-weight: 700;
    background: #FAF6F0;
    color: #7F786C;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}
.talent-profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #FAF6F0;
    color: #334DCF;
    border: 1px solid #E2DED4;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.talent-profile-btn:hover {
    background-color: #334DCF;
    color: #FFFFFF;
    border-color: #334DCF;
}

/* Contact Form grid */
.talent-contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    margin-top: 32px;
}
.talent-form-card {
    background: #FFFFFF;
    border: 1px solid #E2DED4;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 12px rgba(29,27,22,0.02);
}
.talent-alternative-card {
    background: #0E0E90;
    border-radius: 24px;
    padding: 48px;
    color: #FAF6F0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    text-align: left;
}
.talent-alternative-title {
    font-family: 'Saans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
}
.talent-alternative-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #DBE1F5;
    margin: 0;
}
.talent-email-box {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    background: rgba(255,255,255,0.08);
    border: 1px dashed rgba(255,255,255,0.2);
    padding: 16px 20px;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

/* Custom form elements */
.talent-form-card label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #1D1B16;
    margin-bottom: 8px;
    text-align: left;
}
.talent-form-card input[type="text"],
.talent-form-card input[type="email"],
.talent-form-card select {
    width: 100%;
    border: 1px solid #E2DED4;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14.5px;
    box-sizing: border-box;
    background-color: #FAF6F0;
    color: #1D1B16;
    outline: none;
    transition: border-color 0.2s;
}
.talent-form-card input[type="text"]:focus,
.talent-form-card input[type="email"]:focus,
.talent-form-card select:focus {
    border-color: #334DCF;
}
.talent-form-card select {
    height: 48px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%231D1B16' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 36px;
}
.form-fields-row {
    display: flex;
    gap: 20px;
}
.form-field-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.privacy-accept-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 500 !important;
    color: #635E54 !important;
    font-size: 13px !important;
    margin-top: 20px;
    line-height: 1.4;
}
.privacy-accept-label input {
    margin-top: 3px;
}
.privacy-accept-label a {
    color: #334DCF;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .talent-hero-section {
        padding: 160px 24px 60px 24px;
        margin-bottom: 48px;
    }
    .talent-hero-inner h1 {
        font-size: 28px;
    }
    .talent-hero-inner .description {
        font-size: 16px;
    }
    .talent-hero-inner .callout-box {
        padding: 0;
        font-size: 14px;
    }
    .talent-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .talent-card {
        padding: 32px 24px;
    }
    .talent-profiles-grid {
        grid-template-columns: 1fr;
    }
    .talent-contact-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .talent-form-card {
        padding: 32px 24px;
    }
    .talent-alternative-card {
        padding: 32px 24px;
    }
}
