:root {
    --wk-blue: #164194;
    --wk-blue2: #0C74BB;
    --wk-gray: #7A7A7A;
    --wk-soft: #F3F3F3;
    --wk-dark: #12387F;
    --header: 116px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--wk-blue);
    overflow-x: hidden;
    background: #fff
}

body.loaded {
    opacity: 1
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: Karla, system-ui, sans-serif;
    letter-spacing: -.025em
}

main {
    padding-top: var(--header)
}

.wk-container {
    width: min(1440px, calc(100vw - 48px));
    margin-inline: auto
}

.section-pad {
    padding: 86px 0
}

.section-title {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.03;
    font-weight: 800;
    color: var(--wk-blue)
}

.eyebrow {
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--wk-blue2)
}

/* ---------- Header corregido WERKON ---------- */

.site-header {
    box-shadow: none !important;
    border: none !important;
}

.topbar {
    border: none !important;
    box-shadow: none !important;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #7A7A7A !important;
    text-decoration: none !important;
    line-height: 1;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.22s ease;
}

.topbar-link:hover,
.topbar-link.active {
    color: #164194 !important;
}

.topbar-icon-link {
    width: 28px;
    height: 28px;
    justify-content: center;
}

.topbar-icon {
    width: 19px;
    height: 19px;
    object-fit: contain;
    display: block;
    opacity: 0.86;
    transition: all 0.22s ease;
}

.topbar-link:hover .topbar-icon {
    opacity: 1;
    transform: translateY(-1px);
}

.topbar-lang {
    gap: 8px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 84px;
    padding: 0 15px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #164194;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover,
.nav-item:focus-within .nav-link {
    color: #0C74BB;
}

.nav-item.active > .nav-link,
.nav-link.active {
    color: #0C74BB !important;
}

.nav-item.active > .nav-link::after,
.nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 18px;
    height: 3px;
    background: #0C74BB;
}

.arrow-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    color: currentColor;
}

.arrow-icon::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

.arrow-icon.light {
    color: #ffffff;
}

.rotate-180 {
    transform: rotate(180deg);
}

.icon-world {
    display: none;
}

/* Megamenú limpio controlado por JS */
.nav-item {
    position: static;
}

.mega-panel {
    position: absolute;
    top: 100%;
    left: var(--mega-left, 20px);
    width: 980px;
    max-width: calc(100vw - 40px);
    min-height: 340px;
    background: linear-gradient(135deg, #0C74BB 0%, #164194 100%);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 90;
    border: none !important;
    box-shadow: none !important;
}

/* Solo se abre cuando JS agrega .is-open */
.nav-item.is-open > .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Triángulo superior */
.mega-panel::before {
    content: "";
    position: absolute;
    top: -1px;
    left: var(--mega-triangle-left, 120px);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 24px solid #ffffff;
    z-index: 5;
}

/* Contenido interno */
.mega-content {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 340px;
    padding: 56px 60px;
    gap: 50px;
}

.mega-left {
    text-align: right;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.68);
}

.mega-left h2 {
    margin: 0 0 20px;
    font-family: "Karla", sans-serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
}

.mega-left p {
    margin: 0 0 30px auto;
    max-width: 350px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.94);
}

.mega-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 14px;
}

.mega-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mega-right a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    opacity: 0.95;
    transition: all 0.22s ease;
}

.mega-right a:hover,
.mega-right a.active {
    opacity: 1;
    transform: translateX(6px);
}

/* Botón cerrar */
.mega-close {
    position: absolute;
    top: 30px;
    right: 38px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.mega-close span {
    font-size: 13px;
    font-weight: 500;
    text-transform: lowercase;
}

.mega-close strong {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 42px;
    line-height: 1;
    font-weight: 200;
}

.mega-close:hover strong {
    background: rgba(255, 255, 255, 0.14);
}

/* Evita que el megamenú aparezca en móvil/tablet */
@media (max-width: 1180px) {
    .mega-panel {
        display: none !important;
    }
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    margin: 6px 0;
    background: #164194;
    border-radius: 99px;
}

.mobile-panel {
    background: #ffffff;
    padding: 18px 24px 28px;
    border-top: 1px solid rgba(22, 65, 148, 0.08);
}

.mobile-panel a {
    display: block;
    padding: 14px 0;
    color: #164194;
    text-decoration: none;
    font-weight: 750;
    border-bottom: 1px solid rgba(22, 65, 148, 0.08);
}

.site-search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 95;
    box-shadow: 0 22px 60px rgba(22, 65, 148, 0.14);
}

.site-search-box {
    display: grid;
    grid-template-columns: 1fr 82px 64px;
    min-height: 86px;
    background: #F3F3F3;
    border-top: 1px solid rgba(22, 65, 148, 0.08);
}

.site-search-box input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0 34px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #164194;
    outline: none;
}

.site-search-box input::placeholder {
    color: #7A7A7A;
}

.site-search-submit,
.site-search-close {
    border: none;
    background: #ffffff;
    border-left: 1px solid rgba(22, 65, 148, 0.08);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.site-search-submit img {
    width: 26px;
    height: 26px;
    opacity: 0.78;
}

.site-search-close {
    font-size: 38px;
    line-height: 1;
    color: #164194;
}

.site-search-submit:hover,
.site-search-close:hover {
    background: #F3F3F3;
}

.site-search-results {
    background: #ffffff;
    padding: 22px 34px 30px;
    color: #164194;
    border-top: 1px solid rgba(22, 65, 148, 0.08);
}

.site-search-results p {
    margin: 0;
    color: #7A7A7A;
}

.site-search-results a {
    display: block;
    padding: 13px 0;
    color: #164194;
    text-decoration: none;
    font-weight: 750;
    border-bottom: 1px solid rgba(22, 65, 148, 0.08);
}

.site-search-results a:hover {
    color: #0C74BB;
    transform: translateX(4px);
}

.site-search-results strong {
    display: block;
    color: #164194;
}

.site-search-results span {
    display: block;
    margin-top: 4px;
    color: #7A7A7A;
    font-weight: 500;
}

@media (max-width: 1180px) {
    .mega-panel,
    .topbar {
        display: none !important;
    }
}

/* ==================================================
   WERKON - Hero slider
   ================================================== */




.hero-slider {
    position: relative;
    height: min(860px, calc(100vh - var(--header)));
    min-height: 680px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: var(--wk-blue)
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .75s, visibility .75s
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2
}

.hero-media,
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hero-media {
    background-size: cover;
    background-position: center
}

.hero-video {
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(22, 65, 148, .94), rgba(22, 65, 148, .75) 42%, rgba(12, 116, 187, .28))
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff
}

.hero-eyebrow {
    color: #fff;
    opacity: .94
}

.hero-title {
    max-width: 980px;
    font-size: clamp(46px, 5vw, 78px);
    line-height: 1.02;
    font-weight: 800;
    color: #fff
}

.hero-text {
    max-width: 720px;
    color: rgba(255, 255, 255, .92);
    font-size: 19px;
    line-height: 1.6
}

.btn-primary,
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    font-weight: 850;
    border-radius: 6px
}

.btn-primary {
    background: var(--wk-blue2);
    color: #fff;
    padding: 15px 26px
}

.btn-primary:hover {
    background: var(--wk-blue);
    transform: translateY(-2px)
}

.btn-white {
    background: #fff;
    color: var(--wk-blue);
    padding: 13px 24px
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    color: #fff;
    background: rgba(22, 65, 148, .25);
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    cursor: pointer
}

.hero-arrow:hover {
    background: var(--wk-blue2)
}

.hero-arrow.prev {
    left: 34px
}

.hero-arrow.next {
    right: 34px
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 8;
    display: flex;
    gap: 12px
}

.hero-dots button {
    width: 38px;
    height: 4px;
    border: 0;
    background: rgba(255, 255, 255, .45);
    cursor: pointer
}

.hero-dots button.active {
    background: #fff
}

.opportunity-grid {
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 58%);
    align-items: center
}

.opportunity-card {
    background: var(--wk-soft);
    padding: 58px 56px;
    position: relative;
    z-index: 2;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06)
}

.opportunity-card:before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: var(--wk-blue)
}

.opportunity-card p {
    font-size: 17px;
    line-height: 1.72
}

.opportunity-media {
    margin-left: -42px;
    position: relative;
    z-index: 1
}

.opportunity-media img,
.demand-media img {
    width: 100%;
    height: 660px;
    object-fit: cover;
    display: block
}

/* ==================================================
   WERKON - Sección demanda talento técnico
   ================================================== */

.demand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.demand-media {
    width: 640px;
    flex: 0 0 640px;
    position: relative;
    z-index: 1;
}

.demand-media img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center center;
    display: block;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.demand-card {
    width: 650px;
    min-height: 500px;
    margin-left: -54px;
    background: var(--wk-soft);
    padding: 54px 60px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

/* Texto pequeño superior */
.demand-card > span,
.demand-card .eyebrow,
.demand-card .section-kicker,
.demand-card small {
    display: inline-block;
    max-width: 560px;
    margin-bottom: 22px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
    color: #164194;
}

/* Título principal más equilibrado */
.demand-card h2,
.demand-card .section-title {
    max-width: 560px !important;
    font-family: "Karla", sans-serif !important;
    font-size: clamp(42px, 3.3vw, 56px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.035em !important;
    font-weight: 800 !important;
    color: #164194 !important;
    margin: 0 0 30px 0 !important;
}

/* Párrafo */
.demand-card p {
    max-width: 540px;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #164194;
    margin: 0;
}

.demand-card p + p {
    margin-top: 18px;
}

/* Texto superior pequeño */
.demand-card .eyebrow,
.demand-card .section-kicker,
.demand-card small {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--wk-blue);
    letter-spacing: 0.01em;
}

/* Título principal */
.demand-card .section-title,
.demand-card h2 {
    max-width: 10.5ch;
    font-size: clamp(44px, 4.6vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: var(--wk-blue);
}

/* Párrafo */
.demand-card p {
    max-width: 30ch;
    font-size: 17px;
    line-height: 1.7;
    color: var(--wk-blue);
    margin: 0;
}

/* Si tienes más de un párrafo, les da separación */
.demand-card p + p {
    margin-top: 18px;
}

.model-hero {
    position: relative;
    min-height: 390px
}

.model-titlebox {
    width: 560px;
    background: #fff;
    padding: 48px 44px;
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 2
}

.model-image {
    width: 100vw;
    height: 370px;
    margin-left: calc(50% - 50vw);
    background-size: cover;
    background-position: center
}

.model-card h3 {
    font-size: 34px;
    line-height: 1.08;
    color: var(--wk-blue2);
    font-weight: 800
}

.work-section {
    background: var(--wk-soft)
}

.work-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 18px
}

.work-btn {
    height: 54px;
    background: var(--wk-blue);
    color: #fff;
    border-radius: 7px;
    padding: 0 20px;
    font-weight: 850;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.work-btn:hover {
    background: var(--wk-blue2);
    transform: translateX(4px)
}

.mvv-inner {
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 560px
}

.mvv-image {
    position: relative;
    min-height: 560px;
    overflow: hidden
}

.mvv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.mvv-accordion {
    position: relative;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff
}

.mvv-tab {
    width: 100%;
    height: 150px;
    border: 0;
    cursor: pointer;
    padding: 0 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    transition: .25s
}

.mvv-tab span {
    font-family: Karla, sans-serif;
    font-size: clamp(44px, 4.2vw, 72px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: .08em
}

.mvv-tab small {
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 12px
}

.mvv-tab.mision {
    background: var(--wk-blue);
    color: #fff
}

.mvv-tab.vision {
    background: #fff;
    color: var(--wk-blue);
    border-block: 1px solid rgba(22, 65, 148, .08)
}

.mvv-tab.valores {
    background: var(--wk-gray);
    color: #fff
}

.mvv-tab:hover {
    color: var(--wk-blue2)
}

.mvv-panel {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: none;
    min-height: 560px;
    padding: 82px 90px;
    color: #fff
}

.mvv-panel.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.mvv-panel.mision {
    background: linear-gradient(135deg, var(--wk-blue), var(--wk-blue2))
}

.mvv-panel.vision {
    background: #fff;
    color: var(--wk-blue)
}

.mvv-panel.valores {
    background: var(--wk-gray)
}

.mvv-panel h3 {
    font-size: clamp(48px, 5vw, 82px);
    line-height: .95;
    font-weight: 800;
    letter-spacing: .08em
}

.mvv-panel p {
    max-width: 850px;
    text-align: center;
    font-size: 20px;
    line-height: 1.5
}

.close-panel {
    position: absolute;
    right: 32px;
    top: 26px;
    width: 42px;
    height: 42px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer
}

.value-chip {
    border: 1px solid rgba(255, 255, 255, .55);
    padding: 12px 20px;
    border-radius: 999px;
    color: #fff;
    font-weight: 750
}

.campus-wrap {
    background: linear-gradient(180deg, #fff 0 8%, var(--wk-soft) 8% 72%, #fff 72%)
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(26px, 5vw, 90px)
}

.campus-hero {
    background: var(--wk-blue2);
    min-height: 330px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    padding: 58px 60px;
    color: #fff
}

.news-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    background: var(--wk-blue);
    color: #fff
}

.news-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.news-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(22, 65, 148, .82))
}

.news-card-content {
    position: absolute;
    z-index: 2;
    inset: auto 24px 22px
}

.program-card {
    background: #fff;
    padding: 42px 34px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08)
}

.content-card {
    background: var(--wk-soft);
    padding: 42px
}

.footer-col h3 {
    font-family: Karla, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 10px
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px)
}

.social-btn {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--wk-blue2);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 850;
    text-transform: uppercase;
    font-size: 12px
}

/* ==================================================
   WERKON - Footer profesional
   ================================================== */

.wk-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #164194;
    color: #ffffff;
    overflow: hidden;
}

/* Contenedor principal */
.wk-footer-main {
    width: min(1440px, calc(100vw - 96px));
    margin: 0 auto;
    padding: 64px 0 70px;
    display: grid;
    grid-template-columns: 1.35fr 0.95fr 0.95fr 0.95fr 1fr 0.95fr;
    gap: 54px;
    align-items: start;
}

/* Logo y texto */
.wk-footer-brand {
    max-width: 310px;
}

.wk-footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.wk-footer-logo img {
    width: 0px;
    height: auto;
    display: block;
}

.wk-footer-brand p {
    margin: 20;
    max-width: 300px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Columnas */
.wk-footer-col h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 14px;
    font-family: "Karla", sans-serif;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
}

.wk-footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: #0C74BB;
}

.wk-footer-col a {
    display: block;
    margin-bottom: 11px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: all 0.22s ease;
}

.wk-footer-col a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Redes */
.wk-footer-social {
    display: flex;
    gap: 11px;
    margin-top: 22px;
}

.wk-footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #0C74BB;
    color: #ffffff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    transition: all 0.22s ease;
}

.wk-footer-social a:hover {
    background: #ffffff;
    color: #164194;
    transform: translateY(-3px);
}

/* Franja inferior */
.wk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: #12387F;
    padding: 20px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.wk-footer-bottom p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.wk-footer-legal {
    display: flex;
    align-items: center;
    gap: 28px;
}

.wk-footer-legal a {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.wk-footer-legal a:hover {
    color: #ffffff;
}

/* Responsive tablet */
@media (max-width: 1180px) {
    .wk-footer-main {
        width: min(100% - 48px, 980px);
        grid-template-columns: repeat(3, 1fr);
        gap: 44px;
        padding: 56px 0 60px;
    }

    .wk-footer-brand {
        max-width: 100%;
    }
}

/* ==================================================
   WERKON - Footer profesional
   ================================================== */

.wk-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #164194;
    color: #ffffff;
    overflow: hidden;
}

/* Contenedor principal */
.wk-footer-main {
    width: min(1440px, calc(100vw - 96px));
    margin: 0 auto;
    padding: 64px 0 70px;
    display: grid;
    grid-template-columns: 1.35fr 0.95fr 0.95fr 0.95fr 1fr 0.95fr;
    gap: 54px;
    align-items: start;
}

/* Logo y texto */
.wk-footer-brand {
    max-width: 310px;
}

.wk-footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.wk-footer-logo img {
    width: 220px;
    height: auto;
    display: block;
}

.wk-footer-brand p {
    margin: 0;
    max-width: 300px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Columnas */
.wk-footer-col h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 14px;
    font-family: "Karla", sans-serif;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 800;
    color: #ffffff;
}

.wk-footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: #0C74BB;
}

.wk-footer-col a {
    display: block;
    margin-bottom: 11px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: all 0.22s ease;
}

.wk-footer-col a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Redes */
.wk-footer-social {
    display: flex;
    gap: 11px;
    margin-top: 22px;
}

.wk-footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #0C74BB;
    color: #ffffff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    transition: all 0.22s ease;
}

.wk-footer-social a:hover {
    background: #ffffff;
    color: #164194;
    transform: translateY(-3px);
}

/* Franja inferior */
.wk-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: #12387F;
    padding: 20px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.wk-footer-bottom p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.wk-footer-legal {
    display: flex;
    align-items: center;
    gap: 28px;
}

.wk-footer-legal a {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.wk-footer-legal a:hover {
    color: #ffffff;
}

/* Responsive tablet */
@media (max-width: 1180px) {
    .wk-footer-main {
        width: min(100% - 48px, 980px);
        grid-template-columns: repeat(3, 1fr);
        gap: 44px;
        padding: 56px 0 60px;
    }

    .wk-footer-brand {
        max-width: 100%;
    }
}

/* Responsive móvil */
@media (max-width: 720px) {
    .wk-footer-main {
        width: min(100% - 32px, 640px);
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 48px 0 52px;
    }

    .wk-footer-logo img {
        width: 205px;
    }

    .wk-footer-bottom {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .wk-footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


.page-hero {
    background: linear-gradient(135deg, var(--wk-blue), var(--wk-blue2));
    color: #fff;
    padding: 92px 0 82px
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 7px;
    background: var(--wk-blue2);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: .2s
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto
}

@media(max-width:1180px) {
    :root {
        --header: 84px
    }

    .wk-container {
        width: min(100% - 32px, 1120px)
    }

    .hero-slider {
        min-height: 640px
    }

    .hero-arrow {
        display: none
    }

    .opportunity-grid,
    .mvv-inner,
    .campus-hero {
        grid-template-columns: 1fr
    }

    .opportunity-media,
    .demand-card {
        margin-left: 0
    }

    .demand-row {
        flex-direction: column
    }

    .demand-media,
    .demand-card {
        width: 100%;
        flex-basis: auto
    }

    ..demand-card {
    min-height: auto;
    margin-left: 0;
    margin-top: -28px;
}

.demand-card h2,
.demand-card .section-title {
    max-width: 100% !important;
    font-size: 42px !important;
    line-height: 1.08 !important;
}

.demand-card p {
    max-width: 100%;
}

    .mvv-image,
    .mvv-accordion,
    .mvv-panel {
        min-height: 420px
    }

    .mvv-panel {
        position: relative;
        padding: 70px 30px
    }
}

@media(max-width:720px) {
    .hero-slider {
        min-height: 620px
    }

    .hero-title {
        font-size: 38px
    }

    .hero-text {
        font-size: 16px
    }

    .section-pad {
        padding: 60px 0
    }

    .opportunity-card,
    .demand-card {
        padding: 38px 26px
    }

    .opportunity-media img,
    .demand-media img {
        height: 380px
    }

    .model-titlebox {
        position: relative;
        top: 0;
        width: 100%
    }

    .model-image {
        height: 280px
    }

    .work-row {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .brand-row {
        flex-direction: column
    }

    .campus-hero {
        padding: 40px 24px
    }
}

.demand-media img {
    height: 320px !important;
}

.demand-card {
    padding: 34px 24px !important;
    margin-top: -20px !important;
}

.demand-card h2,
.demand-card .section-title {
    font-size: 34px !important;
    line-height: 1.08 !important;
    margin-bottom: 20px !important;
}

.demand-card p {
    font-size: 16px !important;
    line-height: 1.65 !important;
}

/* ==================================================
   Ajuste botón Hero / Banner principal
   ================================================== */

.hero-content .btn-primary {
    width: fit-content !important;
    min-width: 280px !important;
    max-width: 360px !important;
    height: 58px !important;
    padding: 0 28px !important;
    font-size: 16px !important;
    border-radius: 6px !important;
    justify-content: center !important;
}
/* ==================================================
   WERKON - Sección oportunidad + leer más
   ================================================== */

.opportunity-section .opportunity-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 48%) minmax(0, 58%) !important;
    align-items: center !important;
    position: relative !important;
}

.opportunity-section .opportunity-card {
    background: #F3F3F3 !important;
    padding: 58px 56px !important;
    position: relative !important;
    z-index: 2 !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06) !important;
}

.opportunity-section .opportunity-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: #164194;
}

.opportunity-section .opportunity-card p {
    font-size: 17px !important;
    line-height: 1.72 !important;
}

.opportunity-section .opportunity-media {
    margin-left: -42px !important;
    position: relative !important;
    z-index: 1 !important;
}

.opportunity-section .opportunity-media img {
    width: 100% !important;
    height: 660px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

/* Contenido oculto / desplegable */
.read-more-content {
    animation: readMoreFade 0.28s ease;
}

.read-more-content[hidden] {
    display: none !important;
}

.wk-context-keys {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(22, 65, 148, 0.16);
}

.wk-context-keys strong {
    display: block;
    font-family: "Karla", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #164194;
    margin-bottom: 14px;
}

.wk-context-keys ul {
    margin: 0;
    padding-left: 20px;
}

.wk-context-keys li {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #164194;
    margin-bottom: 4px;
}

/* Botón leer más */
.read-more-btn {
    margin-top: 28px;
    border: none;
    background: #0C74BB;
    color: #ffffff;
    min-width: 150px;
    height: 48px;
    padding: 0 22px;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 850;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.24s ease;
}

.read-more-btn:hover {
    background: #164194;
    transform: translateY(-2px);
}

.read-more-btn .arrow-icon {
    color: #ffffff;
    transition: transform 0.24s ease;
}

.read-more-btn.is-open .arrow-icon {
    transform: rotate(90deg);
}

@keyframes readMoreFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1180px) {
    .opportunity-section .opportunity-grid {
        grid-template-columns: 1fr !important;
    }

    .opportunity-section .opportunity-media {
        margin-left: 0 !important;
    }

    .opportunity-section .opportunity-media img {
        height: 520px !important;
    }
}

@media (max-width: 720px) {
    .opportunity-section .opportunity-card {
        padding: 38px 26px !important;
    }

    .opportunity-section .opportunity-media img {
        height: 380px !important;
    }
}

/* ==================================================
   WERKON - Alineación sección modelo integral
   ================================================== */

.model-intro-align {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    align-items: start;
}

.model-intro-main {
    grid-column: 1 / span 2;
}

.model-intro-side {
    grid-column: 4 / span 1;
}

.model-intro-side h4 {
    max-width: 320px;
}

.model-intro-side p {
    max-width: 320px;
    line-height: 1.65;
}

/* Tablet y móvil */
@media (max-width: 1180px) {
    .model-intro-align {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .model-intro-main,
    .model-intro-side {
        grid-column: auto;
    }

    .model-intro-side h4,
    .model-intro-side p {
        max-width: 100%;
    }
}

/* ==================================================
   WERKON - Página Líneas de negocio
   ================================================== */

.business-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 620px;
    position: relative;
    overflow: hidden;
    background: #164194;
}

.business-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1.02);
}

.business-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(22, 65, 148, 0.78) 0%,
            rgba(22, 65, 148, 0.42) 46%,
            rgba(22, 65, 148, 0.10) 100%
        );
}

.business-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.business-eyebrow {
    display: block;
    margin-bottom: 24px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 850;
    color: #ffffff;
}

.business-hero h1 {
    margin: 0;
    max-width: 620px;
    font-family: "Karla", sans-serif;
    font-size: clamp(68px, 8vw, 122px);
    line-height: 0.92;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #ffffff;
}

/* Franja introductoria */
.business-intro-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    position: relative;
    padding: 0 0 40px;
}

.business-intro-box {
    width: min(100%, 1440px);
    margin: 0 auto;
    background: #164194;
    padding: 46px 90px;
    text-align: center;
    color: #ffffff;
}

.business-intro-box p {
    max-width: 980px;
    margin: 0 auto;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    color: #ffffff;
}

.business-intro-box strong {
    font-weight: 850;
}

.business-color-bars {
    width: min(1440px, calc(100vw - 48px));
    margin: 0 auto;
    display: flex;
    height: 18px;
}

.business-color-bars span:nth-child(1) {
    width: 96px;
    background: #164194;
}

.business-color-bars span:nth-child(2) {
    width: 96px;
    background: #0C74BB;
}

.business-color-bars span:nth-child(3) {
    width: 96px;
    background: #7A7A7A;
}

.business-color-bars-top {
    justify-content: flex-start;
}

.business-color-bars-bottom {
    justify-content: flex-end;
}

/* Bloques de líneas */
.business-line {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    padding: 0;
}

.business-line-grid {
    width: min(1440px, calc(100vw - 48px));
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 520px;
    overflow: hidden;
}

.business-line-copy {
    min-height: 520px;
    padding: 78px 80px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.business-blue-dark {
    background: #164194;
}

.business-blue {
    background: #0C74BB;
}

.business-gray {
    background: #7A7A7A;
}

.business-line-logo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 34px;
    color: #ffffff;
}

.business-line-logo-text strong {
    display: block;
    font-family: "Karla", sans-serif;
    font-size: 46px;
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.business-line-logo-text small {
    display: block;
    margin-top: 6px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
}

.business-mini-symbol {
    width: 58px;
    height: 58px;
    position: relative;
    display: inline-block;
}

.business-mini-symbol::before,
.business-mini-symbol::after {
    content: "";
    position: absolute;
    left: 0;
    width: 58px;
    height: 11px;
    background: #ffffff;
    transform: skewY(-28deg);
}

.business-mini-symbol::before {
    top: 10px;
    box-shadow: 0 18px 0 #ffffff, 0 36px 0 #ffffff;
}

.business-mini-symbol::after {
    top: -6px;
    width: 30px;
    height: 9px;
    background: rgba(255, 255, 255, 0.9);
}

.business-line-kicker {
    max-width: 560px;
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.business-line-copy p {
    max-width: 640px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.58;
    color: rgba(255, 255, 255, 0.95);
}

.business-line-copy p strong {
    font-weight: 850;
    color: #ffffff;
}

.business-outline-btn {
    margin-top: 38px;
    min-width: 280px;
    height: 54px;
    padding: 0 26px;
    border: 2px solid #ffffff;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 850;
    transition: all 0.24s ease;
}

.business-outline-btn:hover {
    background: #ffffff;
    color: #164194 !important;
}

.business-outline-btn:hover .arrow-icon {
    color: #164194;
}

.business-line-image {
    min-height: 520px;
    overflow: hidden;
}

.business-line-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}

.business-line-grid:hover .business-line-image img {
    transform: scale(1.035);
}

/* Responsive tablet */
@media (max-width: 1180px) {
    .business-hero {
        height: 540px;
    }

    .business-intro-box {
        padding: 40px 38px;
    }

    .business-intro-box p {
        font-size: 21px;
    }

    .business-line-grid {
        grid-template-columns: 1fr;
    }

    .business-line-copy,
    .business-line-image,
    .business-line-image img {
        min-height: 440px;
    }
}

/* Responsive móvil */
@media (max-width: 720px) {
    .business-hero {
        height: 500px;
    }

    .business-hero h1 {
        font-size: 64px;
    }

    .business-eyebrow {
        font-size: 15px;
    }

    .business-intro-box {
        padding: 34px 24px;
    }

    .business-intro-box p {
        font-size: 18px;
        line-height: 1.4;
    }

    .business-color-bars {
        width: min(100% - 32px, 640px);
    }

    .business-color-bars span:nth-child(1),
    .business-color-bars span:nth-child(2),
    .business-color-bars span:nth-child(3) {
        width: 64px;
    }

    .business-line-grid {
        width: min(100% - 32px, 640px);
        margin-bottom: 18px;
    }

    .business-line-copy {
        padding: 48px 26px;
        min-height: auto;
    }

    .business-line-logo-text strong {
        font-size: 34px;
    }

    .business-mini-symbol {
        width: 44px;
        height: 44px;
    }

    .business-mini-symbol::before,
    .business-mini-symbol::after {
        width: 44px;
        height: 9px;
    }

    .business-mini-symbol::before {
        box-shadow: 0 14px 0 #ffffff, 0 28px 0 #ffffff;
    }

    .business-line-image,
    .business-line-image img {
        min-height: 320px;
    }

    .business-outline-btn {
        min-width: 100%;
    }
}
/* ==================================================
   WERKON - Línea Talent en rojo institucional
   ================================================== */

.business-line-talent .business-line-copy {
    background: #E53212 !important;
}

.business-line-talent .business-outline-btn:hover {
    background: #ffffff !important;
    color: #E53212 !important;
}

.business-line-talent .business-outline-btn:hover .arrow-icon {
    color: #E53212 !important;
}

/* ==================================================
   WERKON Talent - Página interna
   ================================================== */

:root {
    --wk-talent-red: #E53212;
}

/* Banner */
.talent-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 540px;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.talent-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 290px;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

.talent-hero-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 340px;
    height: 20px;
    background: var(--wk-talent-red);
}

.talent-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 540px;
    display: flex;
    align-items: center;
}

.talent-hero-card {
    width: min(720px, 52vw);
    background: #ffffff;
    padding: 74px 70px 68px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

.talent-eyebrow {
    display: block;
    margin-bottom: 28px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #164194;
}

.talent-hero-card h1 {
    max-width: 620px;
    margin: 0;
    font-family: "Karla", sans-serif;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #164194;
}

.talent-hero-card p {
    max-width: 650px;
    margin: 48px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #164194;
}

.talent-hero-card strong {
    color: var(--wk-talent-red);
    font-weight: 850;
}

/* ==================================================
   WERKON Talent - tamaños unificados
   ================================================== */

:root {
    --wk-talent-red: #E53212;
    --wk-talent-shell-width: min(1240px, calc(100vw - 80px));
    --wk-talent-block-min-h: 390px;
    --wk-talent-shadow: 0 18px 45px rgba(0, 0, 0, 0.035);
    --wk-talent-shadow-hover: 0 24px 55px rgba(0, 0, 0, 0.065);
}

/* Secciones generales */
.talent-section,
.talent-model-section,
/*.talent-cta-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    padding: 20px 0;
} */

.talent-section-overlap {
    margin-top: 0;
}

/* Todas las tarjetas principales con el mismo ancho 
.talent-split-card,
.talent-split-card-alt,
.talent-split-card-narrow,
.talent-model-card {
    width: var(--wk-talent-shell-width);
    margin: 0 auto;
    min-height: var(--wk-talent-block-min-h);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    background: #ffffff;
    box-shadow: var(--wk-talent-shadow);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: talentFadeUp 0.7s ease both;
}
    */

.talent-split-card:hover,
.talent-model-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wk-talent-shadow-hover);
}

/* Igualar padding de contenido */
.talent-split-copy,
/* .talent-model-copy {
    padding: 56px 58px;
    color: #164194;
}  */

.talent-split-copy h2,
.talent-model-copy h2 {
    max-width: 720px;
    margin: 0 0 26px;
    font-family: "Karla", sans-serif;
    font-size: clamp(34px, 3vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #164194;
}

.talent-split-copy p,
.talent-model-copy p {
    max-width: 720px;
    margin: 0 0 20px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #164194;
}

.talent-split-copy strong,
.talent-model-copy strong {
    color: var(--wk-talent-red);
    font-weight: 850;
}

/* Bloque derecho unificado 
.talent-split-message,
.talent-model-message {
    border-left: 2px solid var(--wk-talent-red);
    padding: 56px 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
    */

.talent-split-message h3,
.talent-model-message h3 {
    max-width: 360px;
    margin: 0;
    font-family: "Karla", sans-serif;
    font-size: clamp(32px, 2.8vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: var(--wk-talent-red);
}

/* Procesos */
.talent-process {
    display: grid;
    gap: 20px;
}

.talent-process h4 {
    margin: 0 0 4px;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 850;
    color: #164194;
}

.talent-process p {
    margin: 0;
}

/* Listas */
.talent-list {
    margin: 26px 0 0;
    padding-left: 20px;
}

.talent-list li {
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #164194;
}

.talent-list li::marker {
    color: var(--wk-talent-red);
}

/* CTA */
.talent-cta {
    width: var(--wk-talent-shell-width);
    margin: 0 auto;
    text-align: center;
    animation: talentFadeUp 0.7s ease both;
}

.talent-cta h2 {
    margin: 0;
    font-family: "Karla", sans-serif;
    font-size: clamp(42px, 4vw, 66px);
    line-height: 1;
    font-weight: 800;
    color: #164194;
}

.talent-cta p {
    max-width: 720px;
    margin: 24px auto 0;
    font-size: 17px;
    line-height: 1.55;
    color: #164194;
}

.talent-cta p strong {
    color: var(--wk-talent-red);
}

/*.talent-cta-actions {
    margin-top: 30px;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
} */

.talent-cta-actions a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--wk-talent-red);
    text-decoration: none;
    font-weight: 850;
    transition: transform 0.25s ease, color 0.25s ease;
}

.talent-cta-actions a:hover {
    color: #164194;
    transform: translateX(5px);
}

/* Animación uniforme */
@keyframes talentFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1180px) {
    .talent-split-card,
    .talent-split-card-alt,
    .talent-split-card-narrow,
    .talent-model-card {
        width: min(100% - 40px, 980px);
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .talent-split-message,
    .talent-model-message {
        min-height: 240px;
        border-left: none;
        border-top: 2px solid var(--wk-talent-red);
    }

    .talent-cta {
        width: min(100% - 40px, 980px);
    }
}

@media (max-width: 720px) {
    .talent-section,
    .talent-model-section,
    .talent-cta-section {
        padding: 16px 0;
    }

    .talent-split-card,
    .talent-split-card-alt,
    .talent-split-card-narrow,
    .talent-model-card,
    .talent-cta {
        width: min(100% - 24px, 640px);
    }

    .talent-split-copy,
    .talent-model-copy {
        padding: 34px 24px;
    }

    .talent-split-message,
    .talent-model-message {
        padding: 34px 24px;
        min-height: 200px;
    }

    .talent-split-message h3,
    .talent-model-message h3 {
        font-size: 32px;
    }
}


/* Responsive */
@media (max-width: 1180px) {
    .talent-hero-image {
        width: 70%;
    }

    .talent-hero-card {
        width: min(760px, 76vw);
    }

    .talent-split-card,
    .talent-model-card {
        grid-template-columns: 1fr;
    }

    .talent-split-message,
    .talent-model-message {
        min-height: 260px;
        border-left: none;
        border-top: 2px solid var(--wk-talent-red);
    }
}

@media (max-width: 720px) {
    .talent-hero {
        min-height: auto;
        padding: 110px 0 54px;
    }

    .talent-hero-image {
        width: 100%;
        height: 190px;
    }

    .talent-hero-inner {
        min-height: auto;
    }

    .talent-hero-card {
        width: min(100% - 32px, 640px);
        margin-top: 120px;
        padding: 42px 28px;
    }

    .talent-hero-card h1 {
        font-size: 42px;
    }

    .talent-hero-card p {
        margin-top: 28px;
    }

    .talent-split-card,
    .talent-split-card-alt,
    .talent-split-card-narrow,
    .talent-model-card,
    .talent-cta {
        width: min(100% - 32px, 640px);
    }

    .talent-split-copy,
    .talent-model-copy {
        padding: 38px 26px;
    }

    .talent-split-message {
        padding: 42px 26px;
    }

    .talent-split-message h3 {
        font-size: 34px;
    }
}

/* ==================================================
   WERKON Academy
   Mismo sistema visual de Talent
   ================================================== */

:root {
    --wk-academy-blue: #0C74BB;
    --wk-academy-shell-width: min(1240px, calc(100vw - 80px));
    --wk-academy-block-min-h: 390px;
    --wk-academy-shadow: 0 18px 45px rgba(0, 0, 0, 0.035);
    --wk-academy-shadow-hover: 0 24px 55px rgba(0, 0, 0, 0.065);
}

/* Layout general */
.academy-page {
    background: #ffffff;
}

.academy-section,
.academy-cta-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    padding: 18px 0;
}

.academy-section-overlap {
    margin-top: 0;
}

/* =========================
   HERO
   ========================= */
.academy-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    padding: 32px 0 24px;
}

.academy-hero-shell {
    width: var(--wk-academy-shell-width);
    margin: 0 auto;
    position: relative;
    min-height: 520px;
}

.academy-hero-media {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
}

.academy-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.academy-hero-card {
    position: absolute;
    left: 0;
    top: 42px;
    width: min(760px, 58%);
    background: #ffffff;
    padding: 48px 46px 44px;
    z-index: 2;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

.academy-hero-card h1 {
    margin: 0 0 28px;
    max-width: 580px;
    font-family: "Karla", sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #164194;
}

.academy-hero-card p {
    margin: 0;
    max-width: 680px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #164194;
}

.academy-hero-card strong {
    color: var(--wk-academy-blue);
    font-weight: 800;
}

.academy-hero-accent {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: 280px;
    height: 16px;
    background: var(--wk-academy-blue);
    z-index: 1;
}

/* =========================
   Tarjetas de contenido
   ========================= */
.academy-split-card {
    width: var(--wk-academy-shell-width);
    margin: 0 auto;
    min-height: var(--wk-academy-block-min-h);
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    background: #ffffff;
    box-shadow: var(--wk-academy-shadow);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: academyFadeUp 0.7s ease both;
}

.academy-split-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wk-academy-shadow-hover);
}

.academy-split-card-compact {
    min-height: 290px;
}

.academy-split-copy {
    padding: 52px 54px;
    color: #164194;
}

.academy-split-copy h2 {
    max-width: 760px;
    margin: 0 0 24px;
    font-family: "Karla", sans-serif;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #164194;
}

.academy-split-copy p {
    max-width: 720px;
    margin: 0 0 18px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.58;
    color: #164194;
}

.academy-split-copy strong {
    color: var(--wk-academy-blue);
    font-weight: 850;
}

.academy-split-message {
    border-left: 2px solid var(--wk-academy-blue);
    padding: 52px 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.academy-split-message h3 {
    max-width: 360px;
    margin: 0;
    font-family: "Karla", sans-serif;
    font-size: clamp(32px, 2.7vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: var(--wk-academy-blue);
}

/* Listas */
.academy-list {
    margin: 18px 0 0;
    padding-left: 22px;
}

.academy-list li {
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #164194;
}

.academy-list li::marker {
    color: var(--wk-academy-blue);
}

/* Proceso */
.academy-process {
    display: grid;
    gap: 18px;
}

.academy-process h4 {
    margin: 0 0 4px;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 850;
    color: #164194;
}

.academy-process p {
    margin: 0;
}

/* CTA */
.academy-cta {
    width: var(--wk-academy-shell-width);
    margin: 0 auto;
    text-align: center;
    padding: 24px 0 12px;
    animation: academyFadeUp 0.7s ease both;
}

.academy-cta h2 {
    margin: 0;
    font-family: "Karla", sans-serif;
    font-size: clamp(44px, 4vw, 68px);
    line-height: 1;
    font-weight: 800;
    color: #164194;
}

.academy-cta p {
    max-width: 760px;
    margin: 22px auto 0;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: #164194;
}

.academy-cta-actions {
    margin-top: 28px;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.academy-cta-actions a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--wk-academy-blue);
    text-decoration: none;
    font-weight: 850;
    font-size: 18px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.academy-cta-actions a:hover {
    color: #164194;
    transform: translateX(4px);
}

/* Animación */
@keyframes academyFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1180px) {
    .academy-hero-shell,
    .academy-split-card,
    .academy-cta {
        width: min(100% - 40px, 980px);
    }

    .academy-hero-shell {
        min-height: auto;
    }

    .academy-hero-media {
        height: 380px;
    }

    .academy-hero-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-top: -40px;
        padding: 38px 32px;
    }

    .academy-hero-accent {
        right: 22px;
        bottom: 12px;
        width: 180px;
    }

    .academy-split-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .academy-split-message {
        border-left: none;
        border-top: 2px solid var(--wk-academy-blue);
        min-height: 220px;
    }
}

@media (max-width: 720px) {
    .academy-hero,
    .academy-section,
    .academy-cta-section {
        padding: 16px 0;
    }

    .academy-hero-shell,
    .academy-split-card,
    .academy-cta {
        width: min(100% - 24px, 640px);
    }

    .academy-hero-media {
        height: 260px;
    }

    .academy-hero-card {
        margin-top: -24px;
        padding: 28px 22px;
    }

    .academy-hero-card h1 {
        font-size: clamp(34px, 8vw, 52px);
    }

    .academy-hero-card p {
        font-size: 16px;
    }

    .academy-split-copy {
        padding: 32px 24px;
    }

    .academy-split-message {
        padding: 32px 24px;
        min-height: 180px;
    }

    .academy-split-message h3 {
        font-size: 30px;
    }

    .academy-cta h2 {
        font-size: clamp(36px, 8vw, 52px);
    }

    .academy-cta p,
    .academy-cta-actions a {
        font-size: 16px;
    }
}

/* ==================================================
   WERKON - Página sectores de especialización técnica
   Paleta: #164194 #0C74BB #7A7A7A #FFFFFF
   ================================================== */

.sectors-page {
    background: #ffffff;
}

/* Hero */
.sectors-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 520px;
    position: relative;
    overflow: hidden;
    background: #164194;
}

.sectors-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1.04);
    opacity: 0.36;
}

.sectors-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(22, 65, 148, 0.92) 0%,
        rgba(22, 65, 148, 0.78) 48%,
        rgba(12, 116, 187, 0.38) 100%
    );
}

.sectors-hero-inner {
    min-height: 520px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 60px;
}

.sectors-back {
    position: absolute;
    top: 28px;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
}

.sectors-back:hover {
    color: #ffffff;
    transform: translateX(-4px);
}

.sectors-hero-copy span {
    display: block;
    margin-bottom: 18px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.88);
}

.sectors-hero-copy h1 {
    max-width: 720px;
    margin: 0;
    font-family: "Karla", sans-serif;
    font-size: clamp(42px, 4.3vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #ffffff;
}

.sectors-hero-image {
    width: 100%;
    height: 330px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.sectors-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Intro */
.sectors-intro {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 62px 0 32px;
    background: #ffffff;
}

.sectors-intro h2 {
    margin: 0;
    font-family: "Karla", sans-serif;
    font-size: clamp(34px, 3.8vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #164194;
}

.sectors-intro p {
    max-width: 720px;
    margin: 18px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #7A7A7A;
}

.sectors-title-line {
    margin: 58px auto 0;
    max-width: 1040px;
    text-align: center;
}

.sectors-title-line h3 {
    display: inline-block;
    position: relative;
    margin: 0;
    padding-bottom: 16px;
    font-family: "Karla", sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #7A7A7A;
}

.sectors-title-line h3::after {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 0;
    height: 3px;
    background: #7A7A7A;
}

/* Grid de sectores */
.sectors-grid-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    padding: 20px 0 74px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    align-items: stretch;
}

.sector-card {
    background: #ffffff;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.045);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.sector-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.08);
}

.sector-card img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.sector-card:hover img {
    transform: scale(1.04);
}

.sector-card div {
    flex: 1;
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
}

.sector-card h3 {
    min-height: 78px;
    margin: 0 0 16px;
    font-family: "Karla", sans-serif;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: #164194;
}

.sector-card p {
    flex: 1;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.56;
    color: #7A7A7A;
}

.sector-card a {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 850;
    color: #164194;
    text-decoration: none;
}

.sector-card a:hover {
    color: #0C74BB;
    transform: translateX(4px);
}

/* Bloque mensaje industrial */
.sectors-industrial-message {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    padding: 10px 0 86px;
}

.sectors-message-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 440px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

.sectors-message-copy {
    background: #7A7A7A;
    color: #ffffff;
    padding: 70px 72px;
    display: flex;
    align-items: center;
}

.sectors-message-copy h2 {
    max-width: 440px;
    margin: 0;
    font-family: "Karla", sans-serif;
    font-size: clamp(36px, 3.5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #ffffff;
}

.sectors-message-image {
    overflow: hidden;
}

.sectors-message-image img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    display: block;
}

/* Cierre */
.sectors-closing {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    padding: 78px 0 96px;
}

.sectors-closing h2 {
    max-width: 1060px;
    margin: 0;
    font-family: "Karla", sans-serif;
    font-size: clamp(42px, 4vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #164194;
}

.sectors-closing p {
    max-width: 850px;
    margin: 28px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 19px;
    line-height: 1.6;
    color: #7A7A7A;
}

.sectors-closing p strong {
    color: #164194;
    font-weight: 850;
}

.sectors-cta-link {
    margin-top: 36px;
    min-width: 260px;
    height: 54px;
    padding: 0 24px;
    background: #0C74BB;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 850;
    border-radius: 6px;
    transition: all 0.24s ease;
}

.sectors-cta-link:hover {
    background: #164194;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1180px) {
    .sectors-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 100px 0 54px;
    }

    .sectors-hero {
        min-height: auto;
    }

    .sectors-hero-image {
        height: 360px;
    }

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

    .sectors-message-grid {
        grid-template-columns: 1fr;
    }

    .sectors-message-copy {
        padding: 56px 42px;
    }
}

@media (max-width: 720px) {
    .sectors-hero-inner {
        padding: 86px 0 42px;
    }

    .sectors-hero-copy h1 {
        font-size: 38px;
    }

    .sectors-hero-image {
        height: 260px;
    }

    .sectors-intro {
        padding: 48px 0 24px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sector-card {
        min-height: auto;
    }

    .sector-card h3 {
        min-height: auto;
    }

    .sectors-message-copy {
        padding: 42px 28px;
    }

    .sectors-message-image img {
        min-height: 300px;
    }

    .sectors-closing {
        padding: 58px 0 72px;
    }
}

/* ==================================================
   WERKON - Energía y combustibles limpios
   Paleta: #164194 #0C74BB #7A7A7A #FFFFFF
   ================================================== */

.energy-page {
    background: #ffffff;
}

/* HERO */

/* =========================================================
   WERKON - Hero general para páginas internas de sectores
   Versión flexible para títulos cortos y largos
========================================================= */

.sector-hero-detail {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: #ffffff;
    min-height: 760px;
    padding-bottom: 0;
}

/* Imagen de fondo a todo el ancho */
.sector-hero-bg {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 650px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Capa azul institucional */
.sector-hero-overlay {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 650px;
    background: linear-gradient(
        90deg,
        rgba(22, 65, 148, 0.86) 0%,
        rgba(22, 65, 148, 0.78) 48%,
        rgba(22, 65, 148, 0.34) 100%
    );
    z-index: 2;
}

/* Contenedor principal */
.sector-hero-detail .wk-container {
    position: relative;
    z-index: 3;
    width: min(1460px, calc(100vw - 64px));
    max-width: 1460px;
    margin: 0 auto;
}

/* Retícula interna */
.sector-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 56px;
    align-items: start;
    min-height: 720px;
    padding-top: 72px;
}

/* Botón atrás */
.sector-hero-back {
    position: absolute;
    top: 28px;
    right: 0;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    transition: all 0.22s ease;
}

.sector-hero-back:hover {
    opacity: 0.9;
    transform: translateX(-4px);
}

/* Texto izquierdo */
.sector-hero-copy {
    max-width: 760px;
    padding-top: 82px;
}

.sector-hero-copy span {
    display: block;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.35;
}

/* Título flexible para textos largos */
.sector-hero-copy h1 {
    margin: 0;
    max-width: 760px;
    color: #ffffff;
    font-family: "Karla", sans-serif;
    font-size: clamp(40px, 3.45vw, 56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

/* Imagen derecha flotante */
.sector-hero-image {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 760px;
    height: 450px;
    margin-top: 150px;
    margin-left: auto;
    background: #ffffff;
    overflow: hidden;
    box-shadow: none;
}

.sector-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* =========================
   Responsive tablet
========================= */

@media (max-width: 1180px) {
    .sector-hero-detail {
        min-height: auto;
        padding-bottom: 70px;
    }

    .sector-hero-bg,
    .sector-hero-overlay {
        height: 620px;
    }

    .sector-hero-detail .wk-container {
        width: min(100% - 40px, 1080px);
    }

    .sector-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
        padding-top: 72px;
    }

    .sector-hero-back {
        top: 18px;
        right: 0;
        font-size: 16px;
    }

    .sector-hero-copy {
        max-width: 820px;
        padding-top: 56px;
    }

    .sector-hero-copy h1 {
        max-width: 820px;
        font-size: clamp(38px, 6vw, 52px);
        line-height: 1.08;
    }

    .sector-hero-image {
        max-width: 100%;
        height: 360px;
        margin-top: 18px;
    }
}

/* =========================
   Responsive móvil
========================= */

@media (max-width: 720px) {
    .sector-hero-detail {
        padding-bottom: 38px;
    }

    .sector-hero-bg,
    .sector-hero-overlay {
        height: 540px;
    }

    .sector-hero-detail .wk-container {
        width: calc(100% - 24px);
    }

    .sector-hero-inner {
        padding-top: 62px;
        gap: 22px;
    }

    .sector-hero-back {
        top: 14px;
        font-size: 15px;
    }

    .sector-hero-copy {
        padding-top: 34px;
    }

    .sector-hero-copy span {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .sector-hero-copy h1 {
        font-size: 34px;
        line-height: 1.08;
        max-width: 100%;
    }

    .sector-hero-image {
        height: 240px;
        margin-top: 6px;
    }
}




/* ==================================================
   WERKON - Ajustes específicos Oil & Gas / Gas natural
   Reutiliza el sistema visual de páginas de sector
   ================================================== */

.oilgas-page .energy-hero-bg,
.oilgas-page .energy-hero-image img {
    object-position: center center;
}

.oilgas-page .energy-split-image img {
    object-position: center center;
}

.oilgas-page .energy-feature-image img {
    object-position: center center;
}

.oilgas-page .energy-final-image img {
    object-position: center center;
}

/* ==================================================
   WERKON - Introducción páginas de sector
   ================================================== */

.energy-intro {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    background: #ffffff !important;
    padding: 86px 0 74px !important;
}

.energy-intro-wrap {
    display: grid !important;
    grid-template-columns: 0.95fr 1.05fr !important;
    gap: 72px !important;
    align-items: start !important;
}

.energy-intro-heading {
    position: relative !important;
    padding-left: 28px !important;
}

.energy-intro-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 100%;
    max-height: 190px;
    background: #0C74BB;
}

.energy-intro-label {
    display: block;
    margin-bottom: 18px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0C74BB;
}

.energy-intro-heading h2 {
    margin: 0 !important;
    max-width: 640px !important;
    font-family: "Karla", sans-serif !important;
    font-size: clamp(38px, 3.5vw, 58px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    font-weight: 800 !important;
    color: #164194 !important;
}

.energy-intro-text {
    max-width: 760px !important;
    padding-top: 42px !important;
}

.energy-intro-text p {
    margin: 0 0 22px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 18px !important;
    line-height: 1.72 !important;
    font-weight: 400 !important;
    color: #7A7A7A !important;
}

.energy-intro-text p:last-child {
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 1180px) {
    .energy-intro {
        padding: 68px 0 58px !important;
    }

    .energy-intro-wrap {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .energy-intro-text {
        max-width: 860px !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 720px) {
    .energy-intro {
        padding: 52px 0 44px !important;
    }

    .energy-intro-heading {
        padding-left: 20px !important;
    }

    .energy-intro-heading h2 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    .energy-intro-text p {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }
}

/* ==================================================
   WERKON - Secciones internas sector energía
   Diseño basado en boceto, limpio y moderno
   ================================================== */

.sector-detail-section {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    background: #ffffff !important;
    padding: 34px 0 !important;
}

.sector-detail-section-soft {
    padding-top: 10px !important;
}

/* Tarjeta base */
.sector-detail-card {
    width: min(1280px, calc(100vw - 88px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: #ffffff !important;
    display: grid !important;
    align-items: stretch !important;
    overflow: hidden !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.045) !important;
}

/* Primer bloque */
.sector-detail-main {
    grid-template-columns: 0.95fr 1.05fr !important;
    min-height: 620px !important;
}

/* Bloque final */
.sector-detail-final {
    grid-template-columns: 0.95fr 1.05fr !important;
    min-height: 620px !important;
}

/* Bloque horizontal intermedio */
.sector-detail-feature {
    grid-template-columns: 1.05fr 0.95fr !important;
    min-height: 390px !important;
}

/* Texto principal */
.sector-detail-copy {
    padding: 68px 72px !important;
    color: #164194 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.sector-detail-copy h2 {
    max-width: 640px !important;
    margin: 0 0 32px 0 !important;
    font-family: "Karla", sans-serif !important;
    font-size: clamp(34px, 3.1vw, 54px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    font-weight: 800 !important;
    color: #164194 !important;
}

.sector-detail-copy p {
    max-width: 640px !important;
    margin: 0 0 22px 0 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 17px !important;
    line-height: 1.62 !important;
    color: #7A7A7A !important;
}

.sector-detail-copy ul {
    margin: 30px 0 0 0 !important;
    padding-left: 22px !important;
}

.sector-detail-copy li {
    margin-bottom: 10px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
    color: #164194 !important;
}

.sector-detail-copy li::marker {
    color: #0C74BB !important;
}

/* Imágenes */
.sector-detail-image {
    min-height: 100% !important;
    overflow: hidden !important;
    background: #F3F3F3 !important;
}

.sector-detail-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 390px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transition: transform 0.55s ease !important;
}

.sector-detail-card:hover .sector-detail-image img {
    transform: scale(1.035) !important;
}

.sector-detail-main .sector-detail-image img,
.sector-detail-final .sector-detail-image img {
    min-height: 620px !important;
}

.sector-detail-image-small img {
    min-height: 390px !important;
}

/* Mensaje derecho del bloque intermedio */
.sector-detail-message {
    padding: 56px 66px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: right !important;
}

.sector-detail-message h2 {
    max-width: 520px !important;
    margin: 0 0 26px auto !important;
    font-family: "Karla", sans-serif !important;
    font-size: clamp(32px, 3vw, 48px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    font-weight: 800 !important;
    color: #164194 !important;
}

.sector-detail-message span {
    display: block !important;
    margin-bottom: 26px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 19px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    color: #7A7A7A !important;
}

.sector-detail-message p {
    max-width: 560px !important;
    margin: 0 0 0 auto !important;
    font-family: "Inter", sans-serif !important;
    font-size: 18px !important;
    line-height: 1.58 !important;
    color: #7A7A7A !important;
}

/* Botón CTA */
.sector-detail-cta {
    margin-top: 24px !important;
    width: fit-content !important;
    min-width: 300px !important;
    height: 54px !important;
    padding: 0 26px !important;
    background: #0C74BB !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 15px !important;
    font-weight: 850 !important;
    border-radius: 6px !important;
    transition: all 0.24s ease !important;
}

.sector-detail-cta:hover {
    background: #164194 !important;
    transform: translateY(-3px) !important;
}

/* Responsive tablet */
@media (max-width: 1180px) {
    .sector-detail-card {
        width: min(100% - 40px, 980px) !important;
    }

    .sector-detail-main,
    .sector-detail-feature,
    .sector-detail-final {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .sector-detail-copy,
    .sector-detail-message {
        padding: 52px 42px !important;
    }

    .sector-detail-message {
        text-align: left !important;
    }

    .sector-detail-message h2,
    .sector-detail-message p {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .sector-detail-main .sector-detail-image img,
    .sector-detail-final .sector-detail-image img,
    .sector-detail-image img {
        min-height: 420px !important;
    }
}


/* Responsive móvil */
@media (max-width: 720px) {
    .sector-detail-section {
        padding: 22px 0 !important;
    }

    .sector-detail-card {
        width: min(100% - 28px, 640px) !important;
    }

    .sector-detail-copy,
    .sector-detail-message {
        padding: 38px 26px !important;
    }

    .sector-detail-copy h2,
    .sector-detail-message h2 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    .sector-detail-copy p,
    .sector-detail-message p,
    .sector-detail-copy li {
        font-size: 16px !important;
    }

    .sector-detail-main .sector-detail-image img,
    .sector-detail-final .sector-detail-image img,
    .sector-detail-image img {
        min-height: 300px !important;
    }

    .sector-detail-cta {
        width: 100% !important;
        min-width: 0 !important;
    }
}


/* ==================================================
   WERKON - Introducción general para páginas de sectores
   Aplica a Energía, Oil & Gas y próximas secciones
   ================================================== */

.sector-intro {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    background: #ffffff !important;
    padding: 46px 0 74px !important;
}

.sector-intro-wrap {
    display: grid !important;
    grid-template-columns: 0.95fr 1.05fr !important;
    gap: 72px !important;
    align-items: start !important;
}

.sector-intro-heading {
    position: relative !important;
    padding-left: 28px !important;
}

.sector-intro-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 100%;
    max-height: 190px;
    background: #0C74BB;
}

.sector-intro-label {
    display: block;
    margin-bottom: 18px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0C74BB;
}

.sector-intro-heading h2 {
    margin: 0 !important;
    max-width: 660px !important;
    font-family: "Karla", sans-serif !important;
    font-size: clamp(38px, 3.5vw, 58px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    font-weight: 800 !important;
    color: #164194 !important;
}

.sector-intro-text {
    max-width: 760px !important;
    padding-top: 42px !important;
}

.sector-intro-text p {
    margin: 0 0 22px !important;
    font-family: "Inter", sans-serif !important;
    font-size: 18px !important;
    line-height: 1.72 !important;
    font-weight: 400 !important;
    color: #7A7A7A !important;
}

.sector-intro-text p:last-child {
    margin-bottom: 0 !important;
}

/* Ajustes específicos para Oil & Gas */
.oilgas-page .sector-hero-bg,
.oilgas-page .sector-hero-image img,
.oilgas-page .sector-detail-image img {
    object-position: center center !important;
}

/* Responsive */
@media (max-width: 1180px) {
    .sector-intro {
        padding: 68px 0 58px !important;
    }

    .sector-intro-wrap {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .sector-intro-text {
        max-width: 860px !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 720px) {
    .sector-intro {
        padding: 52px 0 44px !important;
    }

    .sector-intro-heading {
        padding-left: 20px !important;
    }

    .sector-intro-heading h2 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    .sector-intro-text p {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }
}

/* ==================================================
   WERKON - Ajustes específicos Hidrógeno
   Usa el mismo sistema visual general de sectores
   ================================================== */

.hidrogeno-page .sector-hero-bg,
.hidrogeno-page .sector-hero-image img,
.hidrogeno-page .sector-detail-image img {
    object-position: center center !important;
}

/* ==================================================
   WERKON - Ajustes específicos Economía circular
   Usa el mismo sistema visual general de sectores
   ================================================== */

.economia-page .sector-hero-bg,
.economia-page .sector-hero-image img,
.economia-page .sector-detail-image img {
    object-position: center center !important;
}

/* ==================================================
   WERKON - Ajustes específicos CCS
   Usa el mismo sistema visual general de sectores
   ================================================== */

.ccs-page .sector-hero-bg,
.ccs-page .sector-hero-image img,
.ccs-page .sector-detail-image img {
    object-position: center center !important;
}

/* ==================================================
   WERKON - Ajustes específicos Activos existentes
   Usa el mismo sistema visual general de sectores
   ================================================== */

.activos-page .sector-hero-bg,
.activos-page .sector-hero-image img,
.activos-page .sector-detail-image img {
    object-position: center center !important;
}

/* ==================================================
   WERKON - Ajustes específicos Greenfield y Brownfield
   Usa el mismo sistema visual general de sectores
   ================================================== */

.greenfield-page .sector-hero-bg,
.greenfield-page .sector-hero-image img,
.greenfield-page .sector-detail-image img {
    object-position: center center !important;
}


/* ==================================================
   HOME - Demanda de talento técnico V2
   Diseño profesional alineado al sistema WERKON
   ================================================== */

.home-demand-v2 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #ffffff;
    padding: 60px 0 86px;
    overflow: hidden;
}

.home-demand-v2-wrap {
    width: min(1460px, calc(100vw - 88px));
    max-width: 1460px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 0;
    position: relative;
}

/* Imagen más grande y protagonista */
.home-demand-v2-image {
    height: 460px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.055);
}

.home-demand-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.55s ease;
}

.home-demand-v2-wrap:hover .home-demand-v2-image img {
    transform: scale(1.035);
}

/* Caja gris derecha */
.home-demand-v2-card {
    min-height: 500px;
    background: #f3f3f3;
    padding: 64px 70px;
    position: relative;
    z-index: 2;
    margin-left: -72px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.045);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Texto superior */
.home-demand-v2-card span {
    display: block;
    margin-bottom: 24px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    color: #164194;
}

/* Título principal */
.home-demand-v2-card h2 {
    max-width: 690px;
    margin: 0 0 30px;
    font-family: "Karla", sans-serif;
    font-size: clamp(38px, 3.3vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #164194;
}

/* Párrafo */
.home-demand-v2-card p {
    max-width: 600px;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
    color: #164194;
}

/* Detalle visual azul */
.home-demand-v2-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 64px;
    width: 6px;
    height: 120px;
    background: #0C74BB;
}

/* Responsive tablet */
@media (max-width: 1180px) {
    .home-demand-v2 {
        padding: 48px 0 70px;
    }

    .home-demand-v2-wrap {
        width: min(100% - 40px, 980px);
        grid-template-columns: 1fr;
    }

    .home-demand-v2-image {
        height: 380px;
    }

    .home-demand-v2-card {
        margin-left: 0;
        min-height: auto;
        padding: 52px 42px;
    }
}

/* Responsive móvil */
@media (max-width: 720px) {
    .home-demand-v2 {
        padding: 36px 0 54px;
    }

    .home-demand-v2-wrap {
        width: min(100% - 28px, 640px);
    }

    .home-demand-v2-image {
        height: 260px;
    }

    .home-demand-v2-card {
        padding: 38px 26px;
    }

    .home-demand-v2-card::before {
        top: 38px;
        height: 90px;
    }

    .home-demand-v2-card h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .home-demand-v2-card p {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* ==================================================
   WERKON - Ajuste final Header + Hero
   Quita espacio blanco y centra logo entre menús
   ================================================== */

/* Header limpio sin altura innecesaria */
#site-header,
.site-header,
.wk-header,
.header {
    margin: 0 !important;
    padding: 0 !important;
    min-height: auto !important;
    height: auto !important;
    background: #ffffff !important;
    box-shadow: none !important;
    border: none !important;
}

/* Eliminar espacio entre header y hero */
#site-header + main,
.site-header + main,
.wk-header + main,
.header + main,
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Si el hero tiene margen superior, lo quitamos */
.hero-slider,
.hero-section,
.home-hero,
.hero {
    margin-top: 0 !important;
}

/* Barra superior: Noticias, Contacto, English */
.topbar,
.header-top,
.wk-topbar,
.top-menu {
    height: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

/* Fila principal del logo + menú */
.header-main,
.wk-header-main,
.main-header,
.navbar,
.header-nav-wrap {
    height: 88px !important;
    min-height: 88px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* Contenedor interno del header */
.header-container,
.wk-header-container,
.site-header-container,
.nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 88px !important;
    width: min(1460px, calc(100vw - 80px)) !important;
    margin: 0 auto !important;
}

/* Logo más grande y centrado verticalmente */
.logo,
.site-logo,
.header-logo,
.brand,
.navbar-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 88px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Tamaño del logo */
.logo img,
.site-logo img,
.header-logo img,
.brand img,
.navbar-brand img {
    width: 190px !important;
    max-width: 190px !important;
    height: auto !important;
    display: block !important;
}

/* Menú principal centrado verticalmente */
.main-nav,
.primary-nav,
.header-nav,
.nav-menu {
    display: flex !important;
    align-items: center !important;
    height: 88px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Links del menú principal */
.main-nav > ul,
.primary-nav > ul,
.header-nav > ul,
.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 42px !important;
    height: 88px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Items del menú */
.main-nav li,
.primary-nav li,
.header-nav li,
.nav-menu li {
    display: flex !important;
    align-items: center !important;
    height: 88px !important;
}

/* Enlaces del menú */
.main-nav a,
.primary-nav a,
.header-nav a,
.nav-menu a {
    display: inline-flex !important;
    align-items: center !important;
    height: 88px !important;
    line-height: 1 !important;
}

/* Evita separación extra después del header */
#site-header::after,
.site-header::after,
.wk-header::after,
.header::after {
    display: none !important;
    content: none !important;
}

/* Responsive */
@media (max-width: 1180px) {
    .header-container,
    .wk-header-container,
    .site-header-container,
    .nav-container {
        width: calc(100vw - 40px) !important;
    }

    .logo img,
    .site-logo img,
    .header-logo img,
    .brand img,
    .navbar-brand img {
        width: 165px !important;
        max-width: 165px !important;
    }
}

/* ==================================================
   WERKON - SECTORES HERO FINAL PROFESIONAL
   Fondo full width + imagen sobrepuesta como boceto
   ================================================== */

.wk-sectors-hero-final {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  background: #ffffff;
  padding: 0 0 74px;
  overflow: visible;
}

/* Imagen de fondo en todo el ancho */
.wk-sectors-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 345px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Capa azul sobre la imagen */
.wk-sectors-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 345px;
  background: linear-gradient(
    90deg,
    rgba(22, 65, 148, 0.88) 0%,
    rgba(22, 65, 148, 0.72) 50%,
    rgba(12, 116, 187, 0.42) 100%
  );
  z-index: 2;
}

/* Contenedor interno */
.wk-sectors-hero-inner {
  width: min(1180px, calc(100vw - 80px));
  height: 390px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* Texto izquierdo */
.wk-sectors-hero-copy {
  position: relative;
  z-index: 4;
  width: 48%;
  max-width: 520px;
  padding-top: 88px;
  color: #ffffff;
}

.wk-sectors-hero-copy span {
  display: block;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
}

.wk-sectors-hero-copy h1 {
  margin: 0;
  font-family: "Karla", sans-serif;
  font-size: clamp(30px, 2.35vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #ffffff;
}

/* Imagen derecha sobrepuesta */
.wk-sectors-hero-image {
  position: absolute;
  right: 0;
  top: 92px;
  width: 560px;
  height: 300px;
  z-index: 5;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
}

.wk-sectors-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Botón atrás */
.wk-sectors-back {
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
}

.wk-sectors-back span {
  font-size: 22px;
  line-height: 1;
}

.wk-sectors-back:hover {
  opacity: 0.85;
}

/* Intro debajo del hero */
.wk-sectors-intro-final {
  width: 100%;
  background: #ffffff;
  padding: 20px 0 42px;
}

.wk-sectors-intro-inner {
  width: min(1180px, calc(100vw - 80px));
  margin: 0 auto;
}

.wk-sectors-intro-inner h2 {
  max-width: 820px;
  margin: 0 0 14px;
  font-family: "Karla", sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #164194;
}

.wk-sectors-intro-inner p {
  max-width: 560px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: #7A7A7A;
}

/* Responsive tablet */
@media (max-width: 1180px) {
  .wk-sectors-hero-final {
    padding-bottom: 48px;
  }

  .wk-sectors-hero-bg,
  .wk-sectors-hero-overlay {
    height: 100%;
    min-height: 640px;
  }

  .wk-sectors-hero-inner {
    width: calc(100vw - 44px);
    height: auto;
    min-height: 640px;
    padding-bottom: 40px;
  }

  .wk-sectors-hero-copy {
    width: 100%;
    max-width: 720px;
    padding-top: 92px;
  }

  .wk-sectors-hero-copy h1 {
    font-size: clamp(34px, 5vw, 52px);
  }

  .wk-sectors-hero-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 320px;
    margin-top: 42px;
  }

  .wk-sectors-back {
    right: 0;
  }

  .wk-sectors-intro-inner {
    width: calc(100vw - 44px);
  }
}

/* Responsive móvil */
@media (max-width: 720px) {
  .wk-sectors-hero-inner {
    width: calc(100vw - 28px);
    min-height: 560px;
  }

  .wk-sectors-hero-bg,
  .wk-sectors-hero-overlay {
    min-height: 560px;
  }

  .wk-sectors-hero-copy {
    padding-top: 76px;
  }

  .wk-sectors-hero-copy span {
    font-size: 12px;
  }

  .wk-sectors-hero-copy h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .wk-sectors-hero-image {
    height: 230px;
    margin-top: 32px;
  }

  .wk-sectors-back {
    top: 22px;
    right: 0;
    font-size: 13px;
  }

  .wk-sectors-intro-final {
    padding: 28px 0 34px;
  }

  .wk-sectors-intro-inner {
    width: calc(100vw - 28px);
  }

  .wk-sectors-intro-inner h2 {
    font-size: 33px;
  }
}


/* ==================================================
   WERKON TALENT - HERO PROFESIONAL FINAL
   Imagen full width + tarjeta sobrepuesta + línea roja
   ================================================== */

.talent-hero-pro {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  background: #ffffff;
  padding: 0 0 92px;
  overflow: visible;
}

/* Imagen al 100% del ancho */
.talent-hero-media {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
  background: #164194;
}

.talent-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 65, 148, 0.08) 0%,
    rgba(22, 65, 148, 0.03) 46%,
    rgba(22, 65, 148, 0.02) 100%
  );
  pointer-events: none;
}

/* Línea roja pegada al borde inferior real de la imagen */
.talent-hero-media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 18px;
  background: #E53212;
  z-index: 3;
  pointer-events: none;
}

.talent-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Contenedor de la tarjeta */
.talent-hero-inner {
  width: min(1320px, calc(100vw - 80px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* Caja blanca sobrepuesta */
.talent-hero-card {
  width: min(620px, 52vw);
  background: #ffffff;
  padding: 68px 72px 76px;
  margin-top: -315px;
  margin-left: 64px;
  position: relative;
  z-index: 4;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.10);
}

/* Título */
.talent-hero-card h1 {
  margin: 0 0 34px;
  font-family: "Karla", sans-serif;
  font-size: clamp(48px, 4.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: #164194;
}

/* Párrafo */
.talent-hero-card p {
  margin: 0;
  max-width: 520px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  color: #164194;
}

.talent-hero-card strong {
  font-weight: 850;
}

/* Línea roja debajo de la imagen */
.talent-hero-line {
  display: none !important;
}


/* Responsive tablet */
@media (max-width: 1180px) {
  .talent-hero-pro {
    padding-bottom: 70px;
  }

  .talent-hero-media {
    height: 380px;
  }

  .talent-hero-inner {
    width: calc(100vw - 44px);
  }

  .talent-hero-card {
    width: min(620px, 88vw);
    margin-left: 0;
    margin-top: -250px;
    padding: 58px 54px 64px;
  }

  .talent-hero-line {
  top: 380px;
  width: calc(100vw - 44px);
}
}

/* Responsive móvil */
@media (max-width: 720px) {
  .talent-hero-pro {
    padding-bottom: 56px;
  }

 .talent-hero-media {
  width: 100%;
  height: 430px;
  position: relative;
  overflow: hidden;
  background: #164194;
  z-index: 1;
}


  .talent-hero-inner {
    width: calc(100vw - 28px);
  }

  .talent-hero-card {
    width: 100%;
    margin-top: -130px;
    margin-left: 0;
    padding: 42px 28px 48px;
  }

  .talent-hero-card h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .talent-hero-card p {
    font-size: 15px;
  }

.talent-hero-line {
  top: 300px;
  width: calc(100vw - 28px);
  height: 14px;
}

}


/* Espacio específico Academy */
.werkon-academy-page .line-page-hero-bar,
body.academy-page .line-page-hero-bar {
  margin-bottom: 110px;
}

/* =========================
   CAJAS TALENT / ACADEMY / CONSULTING
   ========================= */

.line-content-section {
  width: min(1180px, calc(100vw - 80px));
  margin: 0 auto 42px;
}

.line-info-box h2 {
  color: var(--wk-blue);
  font-family: "Karla", sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.08;
  margin: 0 0 24px;
}

.line-info-box p,
.line-info-box li {
  color: var(--wk-blue);
  font-size: 16px;
  line-height: 1.55;
}

.line-info-box .line-callout {
  text-align: center;
  color: var(--line-color, var(--wk-light-blue));
  font-family: "Karla", sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
  font-weight: 800;
}

/* =========================
   CTA TALENT - SOY EMPRESA / SOY TALENTO
   ========================= */

.talent-cta-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 34px !important;
  flex-wrap: wrap !important;
  margin-top: 28px !important;
}

.talent-cta-actions a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: var(--wk-red) !important;
  text-decoration: none !important;
  font-weight: 850 !important;
  font-size: 18px !important;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1180px) {
  .home-services-logos-inner,
  .footer-grid,
  .business-line-card,
  .line-info-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    align-items: start;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mega-panel-inner,
  .mega-content,
  .mega-menu-content {
    grid-template-columns: 1fr !important;
    padding: 82px 34px 42px !important;
  }

  .mega-divider,
  .mega-menu-divider,
  .line-info-box::before {
    display: none !important;
  }

  .mega-left,
  .mega-menu-left {
    text-align: left !important;
  }

  .mega-left p,
  .mega-menu-left p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .has-mega > .mega-panel {
    top: 92px !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    transform: translateY(8px) !important;
    max-height: calc(100vh - 120px) !important;
    overflow-y: auto !important;
  }

  .has-mega:hover > .mega-panel,
  .has-mega:focus-within > .mega-panel,
  .has-mega.is-open > .mega-panel {
    transform: translateY(0) !important;
  }

  .has-mega > .mega-panel::before {
    left: 50% !important;
  }

  .line-page-hero-inner {
    margin-top: -260px;
  }

  .line-page-hero-card {
    width: min(620px, 90vw);
  }
}

@media (max-width: 720px) {
  .footer-container,
  .business-video-hero-content,
  .line-content-section,
  .line-page-hero-inner {
    width: calc(100vw - 28px);
  }

  .home-services-logos-inner {
    grid-template-columns: 1fr;
  }

  .line-page-hero-card {
    padding: 40px 28px;
  }

  .line-page-hero-media {
    width: calc(100vw - 28px);
    height: 280px;
  }
}


/* ==================================================
   WERKON - LÍNEAS DE NEGOCIO FINAL
   Diseño limpio, profesional y sin duplicidad
   ================================================== */

.lnb-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: #164194;
}

.lnb-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lnb-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 65, 148, 0.88) 0%, rgba(22, 65, 148, 0.58) 52%, rgba(22, 65, 148, 0.34) 100%);
  z-index: 1;
}

.lnb-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100vw - 80px));
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.lnb-hero-inner span {
  display: block;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 850;
  color: #ffffff;
}

.lnb-hero-inner h1 {
  margin: 0;
  font-family: "Karla", sans-serif;
  font-size: clamp(72px, 7.4vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #ffffff;
}


/* Intro azul */

.lnb-intro-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
  padding: 34px 0 44px;
}

.lnb-intro-container {
  width: min(1320px, calc(100vw - 80px));
  margin: 0 auto;
  position: relative;
}

.lnb-intro-card {
  background: #164194;
  color: #ffffff;
  padding: 58px 90px;
  text-align: center;
  box-shadow: 0 20px 54px rgba(22, 65, 148, 0.12);
}

.lnb-intro-card p {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.22;
  font-weight: 400;
  color: #ffffff;
}

.lnb-intro-card strong {
  font-weight: 850;
}

.lnb-bars {
  width: 300px;
  height: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  z-index: 2;
}

.lnb-bars span {
  display: block;
  height: 18px;
}

.lnb-bars .bar-red {
  background: #E53212;
}

.lnb-bars .bar-blue {
  background: #0C74BB;
}

.lnb-bars .bar-gray {
  background: #7A7A7A;
}

.lnb-bars-top {
  margin-left: 0;
  margin-bottom: 0;
  transform: translateY(0);
}

.lnb-bars-bottom {
  margin-left: auto;
  margin-top: 0;
}


/* Cards */

.lnb-lines-section {
  width: min(1320px, calc(100vw - 80px));
  margin: 0 auto;
  padding: 36px 0 88px;
  display: grid;
  gap: 34px;
}

.lnb-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 460px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(22, 65, 148, 0.08);
}

.lnb-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 70px 76px;
  text-align: center;
  color: #ffffff;
}

.lnb-card-talent .lnb-card-content {
  background: #E53212;
}

.lnb-card-academy .lnb-card-content {
  background: #0C74BB;
}

.lnb-card-consulting .lnb-card-content {
  background: #7A7A7A;
}

.lnb-logo {
  width: 310px;
  max-width: 82%;
  height: auto;
  display: block;
  margin: 0 auto 34px;
}

.lnb-logo-fallback {
  display: none;
  margin-bottom: 34px;
  font-family: "Karla", sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.lnb-logo-fallback small {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
}

.lnb-card-content p {
  max-width: 560px;
  margin: 0 auto 18px;
  font-family: "Inter", sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 500;
  color: #ffffff;
}

.lnb-card-content .lnb-card-lead {
  margin-bottom: 18px;
  font-weight: 750;
}

.lnb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 250px;
  margin-top: 18px;
  padding: 16px 28px;

  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;

  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  line-height: 1;
  font-weight: 850;

  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.lnb-btn:hover {
  background: #ffffff;
  color: #164194;
  transform: translateY(-2px);
}

.lnb-card-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #f4f5f7;
}

.lnb-card-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

.lnb-card:hover .lnb-card-media img {
  transform: scale(1.035);
}


/* Responsive */

@media (max-width: 1100px) {
  .lnb-hero-inner,
  .lnb-intro-container,
  .lnb-lines-section {
    width: calc(100vw - 44px);
  }

  .lnb-card {
    grid-template-columns: 1fr;
  }

  .lnb-card-media {
    min-height: 360px;
  }

  .lnb-card-media img {
    min-height: 360px;
  }

  .lnb-card-content {
    padding: 58px 34px;
  }
}

@media (max-width: 720px) {
  .lnb-hero {
    min-height: 460px;
  }

  .lnb-hero-inner {
    min-height: 460px;
    width: calc(100vw - 32px);
  }

  .lnb-hero-inner h1 {
    font-size: 64px;
  }

  .lnb-hero-inner span {
    font-size: 15px;
  }

  .lnb-intro-container,
  .lnb-lines-section {
    width: calc(100vw - 28px);
  }

  .lnb-intro-card {
    padding: 42px 26px;
  }

  .lnb-intro-card p {
    font-size: 21px;
  }

  .lnb-bars {
    width: 210px;
  }

  .lnb-logo {
    width: 240px;
  }

  .lnb-card-content p {
    font-size: 15.5px;
  }
}

/* ==================================================
   WERKON - Separador vertical final definitivo
   Apaga líneas viejas y crea línea elegante con degradado
   ================================================== */

/* 1. Aseguramos que la caja permita posicionar la línea */
.line-info-box {
  position: relative !important;
}

/* 2. Apagamos cualquier separador anterior */
.line-info-box::before {
  display: none !important;
  content: none !important;
}

.line-info-box > span {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  background: none !important;
  border: none !important;
}

/* 3. Quitamos bordes que puedan estar generando esa línea completa */
.line-info-box > div,
.line-info-box > div:first-child,
.line-info-box > div:last-child,
.line-info-box .line-callout {
  border-left: none !important;
  border-right: none !important;
}

/* 4. Creamos la nueva línea elegante */
.line-info-box::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;

  width: 2px !important;
  height: 58% !important;
  min-height: 180px !important;
  max-height: 320px !important;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 10%,
    var(--line-color, #E53212) 34%,
    var(--line-color, #E53212) 66%,
    rgba(255, 255, 255, 0) 90%,
    rgba(255, 255, 255, 0) 100%
  ) !important;

  pointer-events: none !important;
  z-index: 2 !important;
}

/* 5. Colores por línea de negocio */
.line-hero-talent {
  --line-color: #E53212 !important;
}

.line-hero-academy {
  --line-color: #0C74BB !important;
}

.line-hero-consulting {
  --line-color: #7A7A7A !important;
}

/* 6. Aseguramos que el contenido quede encima si hace falta */
.line-info-box > * {
  position: relative;
  z-index: 3;
}

/* 7. En móvil quitamos la línea porque las columnas se apilan */
@media (max-width: 900px) {
  .line-info-box::after {
    display: none !important;
  }
}

/* ==================================================
   WERKON TALENT - CONTENIDO FINAL UNIFICADO
   Corrige textos en negrilla, espaciado y CTA final
   ================================================== */

.talent-section,
.talent-model-section {
  width: 100%;
  background: #ffffff;
  padding: 46px 0;
}

.talent-split-card,
.talent-model-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: 88px;
  align-items: center;

  background: #ffffff;
  min-height: 390px;
  padding: 72px 90px;

  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

/* Apagar líneas anteriores */
.talent-split-card::before,
.talent-model-card::before {
  display: none !important;
  content: none !important;
}

/* Línea elegante central */
.talent-split-card::after,
.talent-model-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 2px;
  height: 62%;
  min-height: 170px;
  max-height: 310px;

  background: linear-gradient(
    to bottom,
    rgba(229, 50, 18, 0) 0%,
    rgba(229, 50, 18, 0.35) 22%,
    #E53212 38%,
    #E53212 62%,
    rgba(229, 50, 18, 0.35) 78%,
    rgba(229, 50, 18, 0) 100%
  );

  pointer-events: none;
  z-index: 1;
}

.talent-split-card > *,
.talent-model-card > * {
  position: relative;
  z-index: 2;
}

/* Columna izquierda */
.talent-split-copy,
.talent-model-copy {
  max-width: 620px;
}

.talent-split-copy h2,
.talent-model-copy h2 {
  margin: 0 0 28px;
  font-family: "Karla", sans-serif;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #164194;
}

/* Párrafos normales, no en negrilla */
.talent-split-copy p,
.talent-model-copy p {
  max-width: 620px;
  margin: 0 0 22px;
  font-family: "Inter", sans-serif;
  font-size: 16.5px;
  line-height: 1.62;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  color: #164194;
}

.talent-split-copy p:last-child,
.talent-model-copy p:last-child {
  margin-bottom: 0;
}

.talent-split-copy strong,
.talent-model-copy strong {
  color: #E53212;
  font-weight: 850 !important;
}

/* Listas limpias */
.talent-split-copy ul,
.talent-model-copy ul {
  margin: 26px 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.talent-split-copy li,
.talent-model-copy li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 400 !important;
  color: #164194;
}

/* Mensaje derecho */
.talent-split-message,
.talent-model-message {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 240px;
  padding: 24px 34px;
  text-align: center;

  border: none !important;
  border-left: none !important;
  border-right: none !important;
}

.talent-split-message h3,
.talent-model-message h3 {
  margin: 0;
  max-width: 430px;
  font-family: "Karla", sans-serif;
  font-size: clamp(38px, 3.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #E53212;
}

/* Ajuste específico de la última tarjeta */
.talent-model-section {
  padding-top: 54px;
  padding-bottom: 24px;
}

.talent-model-card {
  min-height: 340px;
}


/* ==================================================
   WERKON TALENT - CTA FINAL
   ================================================== */

.talent-cta-section {
  width: 100%;
  background: #ffffff;
  padding: 36px 0 96px;
}

.talent-cta {
  width: min(980px, calc(100vw - 80px));
  margin: 0 auto;
  text-align: center;
}

.talent-cta h2 {
  margin: 0 0 18px;
  font-family: "Karla", sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #164194;
}

.talent-cta p {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 400 !important;
  color: #164194;
}

.talent-cta strong {
  color: #E53212;
  font-weight: 850 !important;
}

/* Soy empresa | Soy talento en una sola línea limpia */
.talent-cta-actions {
  margin: 30px auto 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
}

.talent-cta-actions a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;

  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  color: #E53212 !important;
  text-decoration: none !important;

  transition: transform 0.22s ease, opacity 0.22s ease !important;
}

.talent-cta-actions a:hover {
  transform: translateX(4px);
  opacity: 0.82;
}

.talent-cta-separator {
  color: rgba(229, 50, 18, 0.45);
  font-weight: 700;
}


/* Responsive */
@media (max-width: 980px) {
  .talent-split-card,
  .talent-model-card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 34px;
  }

  .talent-split-card::after,
  .talent-model-card::after {
    display: none;
  }

  .talent-split-message,
  .talent-model-message {
    min-height: auto;
    padding: 24px 0 0;
  }

  .talent-split-message h3,
  .talent-model-message h3 {
    max-width: 100%;
    font-size: 34px;
  }

  .talent-cta {
    width: calc(100vw - 44px);
  }
}

@media (max-width: 620px) {
  .talent-section,
  .talent-model-section {
    padding: 30px 0;
  }

  .talent-split-card,
  .talent-model-card {
    padding: 42px 26px;
  }

  .talent-split-copy h2,
  .talent-model-copy h2 {
    font-size: 34px;
  }

  .talent-split-copy p,
  .talent-model-copy p,
  .talent-cta p {
    font-size: 15.5px;
  }

  .talent-cta-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .talent-cta-separator {
    display: none;
  }
}


/* =========================
   CTA FINAL TALENT
   ========================= */

/* .talent-cta-section {
  width: 100%;
  background: #ffffff;
  padding: 34px 0 90px;
} */

.talent-cta {
  width: min(980px, calc(100vw - 80px));
  margin: 0 auto;
  text-align: center;
}

.talent-cta h2 {
  margin: 0 0 18px;
  font-family: "Karla", sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #164194;
}

.talent-cta p {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  color: #164194;
}

.talent-cta strong {
  color: #E53212;
  font-weight: 850;
}

/* Links Soy empresa / Soy talento en una sola frase */
.talent-cta-actions {
  margin-top: 28px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
}

.talent-cta-actions a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  font-weight: 850 !important;
  color: #E53212 !important;
  text-decoration: none !important;
  transition: transform 0.22s ease, opacity 0.22s ease !important;
}

.talent-cta-actions a:hover {
  transform: translateX(4px);
  opacity: 0.82;
}

.talent-cta-separator {
  color: rgba(229, 50, 18, 0.45);
  font-weight: 700;
}


/* Responsive */
@media (max-width: 980px) {
  .talent-model-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px 34px;
  }

  .talent-model-card::after {
    display: none;
  }

  .talent-model-message {
    min-height: auto;
    padding-top: 18px;
  }

  .talent-model-message h3 {
    font-size: 34px;
  }

  .talent-cta {
    width: calc(100vw - 44px);
  }
}

@media (max-width: 620px) {
  .talent-cta-actions {
    gap: 10px !important;
  }

  .talent-cta-separator {
    display: none;
  }

  .talent-cta-actions {
    flex-direction: column !important;
  }
}

/* ==================================================
   WERKON ACADEMY - HERO + CONTENIDO FINAL
   Mismo sistema visual de Talent, color Academy
   ================================================== */

.academy-hero-pro {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  background: #ffffff;
  padding: 0 0 92px;
  overflow: visible;
}

.academy-hero-media {
  width: 100%;
  height: 430px;
  position: relative;
  overflow: hidden;
  background: #164194;
  z-index: 1;
}

.academy-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 65, 148, 0.08) 0%,
    rgba(22, 65, 148, 0.03) 46%,
    rgba(22, 65, 148, 0.02) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Línea azul Academy pegada al borde inferior de la imagen */
.academy-hero-media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 18px;
  background: #0C74BB;
  z-index: 3;
  pointer-events: none;
}

.academy-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.academy-hero-inner {
  width: min(1320px, calc(100vw - 80px));
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.academy-hero-card {
  width: min(640px, 52vw);
  background: #ffffff;
  padding: 68px 72px 76px;
  margin-top: -315px;
  margin-left: 64px;
  position: relative;
  z-index: 5;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.10);
}

.academy-hero-card h1 {
  margin: 0 0 34px;
  font-family: "Karla", sans-serif;
  font-size: clamp(48px, 4.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: #164194;
}

.academy-hero-card p {
  margin: 0;
  max-width: 540px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 400;
  color: #164194;
}

.academy-hero-card strong {
  color: #0C74BB;
  font-weight: 850;
}


/* ==================================================
   WERKON ACADEMY - BLOQUES DE CONTENIDO
   ================================================== */

.academy-section,
.academy-model-section {
  width: 100%;
  background: #ffffff;
  padding: 46px 0;
}

.academy-split-card,
.academy-model-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: 88px;
  align-items: center;

  background: #ffffff;
  min-height: 390px;
  padding: 72px 90px;

  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

/* Línea vertical azul con difuminado */
.academy-split-card::after,
.academy-model-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 2px;
  height: 62%;
  min-height: 170px;
  max-height: 310px;

  background: linear-gradient(
    to bottom,
    rgba(12, 116, 187, 0) 0%,
    rgba(12, 116, 187, 0.35) 22%,
    #0C74BB 38%,
    #0C74BB 62%,
    rgba(12, 116, 187, 0.35) 78%,
    rgba(12, 116, 187, 0) 100%
  );

  pointer-events: none;
  z-index: 1;
}

.academy-split-card > *,
.academy-model-card > * {
  position: relative;
  z-index: 2;
}

.academy-split-copy,
.academy-model-copy {
  max-width: 620px;
}

.academy-split-copy h2,
.academy-model-copy h2 {
  margin: 0 0 28px;
  font-family: "Karla", sans-serif;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #164194;
}

.academy-split-copy p,
.academy-model-copy p {
  max-width: 620px;
  margin: 0 0 22px;
  font-family: "Inter", sans-serif;
  font-size: 16.5px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: normal;
  color: #164194;
}

.academy-split-copy p:last-child,
.academy-model-copy p:last-child {
  margin-bottom: 0;
}

.academy-split-copy strong,
.academy-model-copy strong {
  color: #0C74BB;
  font-weight: 850;
}

.academy-split-copy ul,
.academy-model-copy ul {
  margin: 26px 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.academy-split-copy li,
.academy-model-copy li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 400;
  color: #164194;
}

.academy-split-message,
.academy-model-message {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 240px;
  padding: 24px 34px;
  text-align: center;

  border: none;
}

.academy-split-message h3,
.academy-model-message h3 {
  margin: 0;
  max-width: 430px;
  font-family: "Karla", sans-serif;
  font-size: clamp(38px, 3.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #0C74BB;
}


/* ==================================================
   WERKON ACADEMY - CTA FINAL
   ================================================== */

.academy-cta-section {
  width: 100%;
  background: #ffffff;
  padding: 36px 0 96px;
}

.academy-cta {
  width: min(980px, calc(100vw - 80px));
  margin: 0 auto;
  text-align: center;
}

.academy-cta h2 {
  margin: 0 0 18px;
  font-family: "Karla", sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #164194;
}

.academy-cta p {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 400;
  color: #164194;
}

.academy-cta-actions {
  margin: 30px auto 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.academy-cta-actions a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;

  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  color: #0C74BB !important;
  text-decoration: none !important;

  transition: transform 0.22s ease, opacity 0.22s ease !important;
}

.academy-cta-actions a:hover {
  transform: translateX(4px);
  opacity: 0.82;
}


/* Responsive */
@media (max-width: 1180px) {
  .academy-hero-media {
    height: 380px;
  }

  .academy-hero-inner {
    width: calc(100vw - 44px);
  }

  .academy-hero-card {
    width: min(640px, 88vw);
    margin-left: 0;
    margin-top: -250px;
    padding: 58px 54px 64px;
  }
}

@media (max-width: 980px) {
  .academy-split-card,
  .academy-model-card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 34px;
  }

  .academy-split-card::after,
  .academy-model-card::after {
    display: none;
  }

  .academy-split-message,
  .academy-model-message {
    min-height: auto;
    padding: 24px 0 0;
  }

  .academy-split-message h3,
  .academy-model-message h3 {
    max-width: 100%;
    font-size: 34px;
  }

  .academy-cta {
    width: calc(100vw - 44px);
  }
}

@media (max-width: 620px) {
  .academy-hero-media {
    height: 300px;
  }

  .academy-hero-inner {
    width: calc(100vw - 28px);
  }

  .academy-hero-card {
    width: 100%;
    margin-top: -130px;
    margin-left: 0;
    padding: 42px 28px 48px;
  }

  .academy-hero-card h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .academy-hero-card p {
    font-size: 15px;
  }

  .academy-section,
  .academy-model-section {
    padding: 30px 0;
  }

  .academy-split-card,
  .academy-model-card {
    padding: 42px 26px;
  }

  .academy-split-copy h2,
  .academy-model-copy h2 {
    font-size: 34px;
  }

  .academy-split-copy p,
  .academy-model-copy p,
  .academy-cta p {
    font-size: 15.5px;
  }
}

/* ==================================================
   WERKON CONSULTING & ENGINEERING - HERO + CONTENIDO FINAL
   Mismo sistema visual de Talent y Academy, color Consulting
   ================================================== */

.consulting-hero-pro {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  background: #ffffff;
  padding: 0 0 92px;
  overflow: visible;
}

.consulting-hero-media {
  width: 100%;
  height: 430px;
  position: relative;
  overflow: hidden;
  background: #164194;
  z-index: 1;
}

.consulting-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 65, 148, 0.08) 0%,
    rgba(22, 65, 148, 0.03) 46%,
    rgba(22, 65, 148, 0.02) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Línea gris Consulting pegada al borde inferior de la imagen */
.consulting-hero-media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 18px;
  background: #7A7A7A;
  z-index: 3;
  pointer-events: none;
}

.consulting-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.consulting-hero-inner {
  width: min(1320px, calc(100vw - 80px));
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.consulting-hero-card {
  width: min(660px, 52vw);
  background: #ffffff;
  padding: 68px 72px 76px;
  margin-top: -315px;
  margin-left: 64px;
  position: relative;
  z-index: 5;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.10);
}

.consulting-hero-card h1 {
  margin: 0 0 34px;
  font-family: "Karla", sans-serif;
  font-size: clamp(48px, 4.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: #164194;
}

.consulting-hero-card p {
  margin: 0;
  max-width: 560px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 400;
  color: #164194;
}

.consulting-hero-card strong {
  color: #7A7A7A;
  font-weight: 850;
}


/* ==================================================
   WERKON CONSULTING - BLOQUES DE CONTENIDO
   ================================================== */

.consulting-section,
.consulting-model-section {
  width: 100%;
  background: #ffffff;
  padding: 46px 0;
}

.consulting-split-card,
.consulting-model-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: 88px;
  align-items: center;

  background: #ffffff;
  min-height: 390px;
  padding: 72px 90px;

  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

/* Línea vertical gris con difuminado */
.consulting-split-card::after,
.consulting-model-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 2px;
  height: 62%;
  min-height: 170px;
  max-height: 310px;

  background: linear-gradient(
    to bottom,
    rgba(122, 122, 122, 0) 0%,
    rgba(122, 122, 122, 0.35) 22%,
    #7A7A7A 38%,
    #7A7A7A 62%,
    rgba(122, 122, 122, 0.35) 78%,
    rgba(122, 122, 122, 0) 100%
  );

  pointer-events: none;
  z-index: 1;
}

.consulting-split-card > *,
.consulting-model-card > * {
  position: relative;
  z-index: 2;
}

.consulting-split-copy,
.consulting-model-copy {
  max-width: 620px;
}

.consulting-split-copy h2,
.consulting-model-copy h2 {
  margin: 0 0 28px;
  font-family: "Karla", sans-serif;
  font-size: clamp(38px, 3vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #164194;
}

.consulting-split-copy p,
.consulting-model-copy p {
  max-width: 620px;
  margin: 0 0 22px;
  font-family: "Inter", sans-serif;
  font-size: 16.5px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: normal;
  color: #164194;
}

.consulting-split-copy p:last-child,
.consulting-model-copy p:last-child {
  margin-bottom: 0;
}

.consulting-split-copy strong,
.consulting-model-copy strong {
  color: #7A7A7A;
  font-weight: 850;
}

.consulting-split-copy ul,
.consulting-model-copy ul {
  margin: 26px 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.consulting-split-copy li,
.consulting-model-copy li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 400;
  color: #164194;
}

.consulting-split-message,
.consulting-model-message {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 240px;
  padding: 24px 34px;
  text-align: center;

  border: none;
}

.consulting-split-message h3,
.consulting-model-message h3 {
  margin: 0;
  max-width: 430px;
  font-family: "Karla", sans-serif;
  font-size: clamp(38px, 3.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #7A7A7A;
}


/* ==================================================
   WERKON CONSULTING - CTA FINAL
   ================================================== */

.consulting-cta-section {
  width: 100%;
  background: #ffffff;
  padding: 36px 0 96px;
}

.consulting-cta {
  width: min(980px, calc(100vw - 80px));
  margin: 0 auto;
  text-align: center;
}

.consulting-cta h2 {
  margin: 0 0 18px;
  font-family: "Karla", sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #164194;
}

.consulting-cta p {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 400;
  color: #164194;
}

.consulting-cta strong {
  color: #7A7A7A;
  font-weight: 850;
}

.consulting-cta-actions {
  margin: 30px auto 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.consulting-cta-actions a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;

  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  color: #7A7A7A !important;
  text-decoration: none !important;

  transition: transform 0.22s ease, opacity 0.22s ease !important;
}

.consulting-cta-actions a:hover {
  transform: translateX(4px);
  opacity: 0.82;
}


/* Responsive */
@media (max-width: 1180px) {
  .consulting-hero-media {
    height: 380px;
  }

  .consulting-hero-inner {
    width: calc(100vw - 44px);
  }

  .consulting-hero-card {
    width: min(660px, 88vw);
    margin-left: 0;
    margin-top: -250px;
    padding: 58px 54px 64px;
  }
}

@media (max-width: 980px) {
  .consulting-split-card,
  .consulting-model-card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 34px;
  }

  .consulting-split-card::after,
  .consulting-model-card::after {
    display: none;
  }

  .consulting-split-message,
  .consulting-model-message {
    min-height: auto;
    padding: 24px 0 0;
  }

  .consulting-split-message h3,
  .consulting-model-message h3 {
    max-width: 100%;
    font-size: 34px;
  }

  .consulting-cta {
    width: calc(100vw - 44px);
  }
}

@media (max-width: 620px) {
  .consulting-hero-media {
    height: 300px;
  }

  .consulting-hero-inner {
    width: calc(100vw - 28px);
  }

  .consulting-hero-card {
    width: 100%;
    margin-top: -130px;
    margin-left: 0;
    padding: 42px 28px 48px;
  }

  .consulting-hero-card h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .consulting-hero-card p {
    font-size: 15px;
  }

  .consulting-section,
  .consulting-model-section {
    padding: 30px 0;
  }

  .consulting-split-card,
  .consulting-model-card {
    padding: 42px 26px;
  }

  .consulting-split-copy h2,
  .consulting-model-copy h2 {
    font-size: 34px;
  }

  .consulting-split-copy p,
  .consulting-model-copy p,
  .consulting-cta p {
    font-size: 15.5px;
  }
}

/* ==================================================
   WERKON - HEADER SIEMPRE VISIBLE AL HACER SCROLL
   ================================================== */

#site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  width: 100% !important;
  background: #ffffff !important;
}

/* Header interno */
#site-header .site-header,
#site-header header,
.site-header,
.wk-header {
  position: relative !important;
  top: 0 !important;
  z-index: 99999 !important;
  background: #ffffff !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Evita que algún script lo esconda al hacer scroll */
#site-header.is-hidden,
#site-header.header-hidden,
#site-header.hide,
.site-header.is-hidden,
.site-header.header-hidden,
.site-header.hide,
.wk-header.is-hidden,
.wk-header.header-hidden {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  top: 0 !important;
}

/* Sombra elegante cuando queda fijo arriba */
#site-header {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06) !important;
}

/* Asegura que el mega menú quede encima del contenido */
.mega-menu-panel,
.mega-panel,
.nav-mega,
.werkon-mega-panel {
  z-index: 999999 !important;
}

/* ==================================================
   WERKON - HEADER FIJO DEFINITIVO EN SCROLL
   Producción: el menú siempre queda visible arriba
   ================================================== */

:root {
  --wk-fixed-header-height: 122px;
}

/* Compensa el espacio del header fijo */
body {
  padding-top: var(--wk-fixed-header-height) !important;
}

/* El contenedor donde se carga el header queda fijo */
#site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;

  z-index: 999999 !important;
  background: #ffffff !important;

  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06) !important;
}

/* El header interno no debe intentar moverse solo */
#site-header .site-header,
#site-header header,
#site-header .wk-header,
#site-header .header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;

  width: 100% !important;
  background: #ffffff !important;

  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Quita doble espacio debajo del header */
#site-header + main,
main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Cuando hace scroll, sombra profesional */
#site-header.is-scrolled,
#site-header .site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08) !important;
}

/* El megamenú debe quedar por encima de todo */
#site-header .mega-panel,
.has-mega > .mega-panel {
  z-index: 1000000 !important;
}

/* Ajuste tablet/móvil */
@media (max-width: 1180px) {
  :root {
    --wk-fixed-header-height: 88px;
  }
}

/* ==================================================
   WERKON - MEGAMENÚ CANÓNICO
   Esta sección debe permanecer al final del archivo.
   Sustituye visualmente las reglas antiguas duplicadas.
   ================================================== */

.main-menu {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.main-menu > .has-mega {
  position: static !important;
  list-style: none !important;
}

/* Estado cerrado por defecto. La apertura depende solamente de .is-open. */
.main-menu > .has-mega > .mega-panel {
  position: fixed !important;
  top: var(--mega-panel-top, 106px) !important;
  left: var(--mega-panel-left, 20px) !important;
  width: var(--mega-panel-width, min(1180px, calc(100vw - 40px))) !important;
  min-height: 390px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #0C74BB 0%, #164194 100%) !important;
  color: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: block !important;
  overflow: visible !important;
  transform: translateY(10px) !important;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
  z-index: 1000000 !important;
  font-size: 16px !important;
}

/* Neutraliza las reglas antiguas basadas en :hover y :focus-within. */
.main-menu > .has-mega:hover > .mega-panel,
.main-menu > .has-mega:focus-within > .mega-panel {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(10px) !important;
}

.main-menu > .has-mega.is-open > .mega-panel,
.main-menu > .has-mega.is-open:hover > .mega-panel,
.main-menu > .has-mega.is-open:focus-within > .mega-panel {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* Triángulo blanco dentro del borde superior azul. */
.main-menu > .has-mega > .mega-panel::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: var(--mega-arrow-x, 50%) !important;
  width: 0 !important;
  height: 0 !important;
  transform: translate(-50%, -1px) !important;
  border-left: 20px solid transparent !important;
  border-right: 20px solid transparent !important;
  border-top: 22px solid #ffffff !important;
  border-bottom: 0 !important;
  display: block !important;
  pointer-events: none !important;
  z-index: 1000002 !important;
}

.main-menu > .has-mega > .mega-panel::after {
  content: none !important;
  display: none !important;
}

.main-menu .mega-content {
  width: 100% !important;
  min-height: 390px !important;
  display: grid !important;
  grid-template-columns: minmax(330px, 44%) minmax(0, 56%) !important;
  gap: 42px !important;
  align-items: start !important;
  padding: 58px 118px 54px 70px !important;
  box-sizing: border-box !important;
  font-size: 16px !important;
}

.main-menu .mega-left {
  min-width: 0 !important;
  padding-right: 42px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.62) !important;
  text-align: right !important;
}

.main-menu .mega-right {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  min-width: 0 !important;
  max-width: none !important;
  padding: 0 !important;
}

.main-menu .mega-right a {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
  opacity: 0.96 !important;
}

.main-menu .mega-right a:hover {
  opacity: 1 !important;
  transform: translateX(5px) !important;
}

.main-menu .mega-close,
.main-menu [data-mega-close] {
  position: absolute !important;
  top: 30px !important;
  right: 30px !important;
  width: 54px !important;
  height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1.5px solid rgba(255, 255, 255, 0.92) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: transparent !important;
  font-size: 0 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 1000003 !important;
}

.main-menu .mega-close::before,
.main-menu .mega-close::after,
.main-menu [data-mega-close]::before,
.main-menu [data-mega-close]::after {
  content: "" !important;
  position: absolute !important;
  width: 24px !important;
  height: 2px !important;
  background: #ffffff !important;
  border-radius: 2px !important;
}

.main-menu .mega-close::before,
.main-menu [data-mega-close]::before {
  transform: rotate(45deg) !important;
}

.main-menu .mega-close::after,
.main-menu [data-mega-close]::after {
  transform: rotate(-45deg) !important;
}

.main-menu .mega-close:hover,
.main-menu [data-mega-close]:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

@media (max-width: 1180px) {
  .main-menu > .has-mega > .mega-panel {
    display: none !important;
  }
}


/* ==================================================
   WERKON - BUSCADOR GLOBAL CANÓNICO
   ================================================== */
body.search-open { overflow: hidden !important; }
.topbar-search-btn { width: 30px !important; height: 30px !important; min-width: 30px !important; padding: 0 !important; display: inline-grid !important; place-items: center !important; flex: 0 0 30px !important; border: 0 !important; background: transparent !important; color: #7A7A7A !important; cursor: pointer !important; }
.topbar-search-btn:hover, .topbar-search-btn[aria-expanded="true"] { color: #164194 !important; }
.topbar-search-icon { position: relative !important; display: block !important; width: 19px !important; height: 19px !important; }
.topbar-search-icon::before { content: "" !important; position: absolute !important; top: 1px !important; left: 1px !important; width: 12px !important; height: 12px !important; border: 2px solid currentColor !important; border-radius: 50% !important; background: transparent !important; }
.topbar-search-icon::after { content: "" !important; position: absolute !important; right: 0 !important; bottom: 2px !important; width: 8px !important; height: 2px !important; border-radius: 99px !important; background: currentColor !important; transform: rotate(45deg) !important; transform-origin: right center !important; }
.site-search-overlay[data-search-overlay] { position: fixed !important; inset: 0 !important; z-index: 2100000 !important; display: flex !important; align-items: flex-start !important; justify-content: center !important; padding: 72px 20px 30px !important; background: rgba(10, 35, 82, 0.64) !important; backdrop-filter: blur(7px) !important; overflow-y: auto !important; }
.site-search-overlay[data-search-overlay][hidden] { display: none !important; }
.site-search-dialog { position: relative !important; width: min(900px, 100%) !important; max-height: calc(100vh - 102px) !important; overflow-y: auto !important; padding: 48px 54px 44px !important; background: #ffffff !important; border-radius: 2px !important; box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26) !important; color: #164194 !important; }
.site-search-label { display: block !important; margin: 0 0 8px !important; font-family: "Inter", sans-serif !important; font-size: 12px !important; line-height: 1.2 !important; font-weight: 800 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; color: #0C74BB !important; }
.site-search-title { margin: 0 70px 10px 0 !important; font-family: "Karla", sans-serif !important; font-size: clamp(34px, 4vw, 48px) !important; line-height: 1.02 !important; font-weight: 800 !important; color: #164194 !important; }
.site-search-intro { max-width: 680px !important; margin: 0 0 28px !important; font-family: "Inter", sans-serif !important; font-size: 15px !important; line-height: 1.6 !important; color: #7A7A7A !important; }
.site-search-dialog .site-search-box { display: grid !important; grid-template-columns: minmax(0, 1fr) auto !important; width: 100% !important; min-height: 64px !important; margin: 0 !important; padding: 0 !important; border: 1px solid rgba(22, 65, 148, 0.18) !important; background: #F3F3F3 !important; }
.site-search-dialog .site-search-box input { min-width: 0 !important; height: 64px !important; padding: 0 22px !important; border: 0 !important; outline: 0 !important; background: transparent !important; font-family: "Inter", sans-serif !important; font-size: 18px !important; color: #164194 !important; }
.site-search-dialog .site-search-box input::placeholder { color: #7A7A7A !important; }
.site-search-submit { min-width: 132px !important; height: 64px !important; padding: 0 22px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 12px !important; border: 0 !important; background: #0C74BB !important; color: #ffffff !important; font-family: "Inter", sans-serif !important; font-size: 14px !important; font-weight: 800 !important; cursor: pointer !important; }
.site-search-submit:hover { background: #164194 !important; }
.site-search-submit-icon { position: relative !important; display: block !important; width: 16px !important; height: 16px !important; }
.site-search-submit-icon::before { content: "" !important; position: absolute !important; top: 0 !important; left: 0 !important; width: 10px !important; height: 10px !important; border: 2px solid #ffffff !important; border-radius: 50% !important; }
.site-search-submit-icon::after { content: "" !important; position: absolute !important; right: 0 !important; bottom: 1px !important; width: 7px !important; height: 2px !important; background: #ffffff !important; transform: rotate(45deg) !important; }
.site-search-dialog .site-search-close { position: absolute !important; top: 24px !important; right: 24px !important; width: 46px !important; height: 46px !important; padding: 0 !important; border: 1px solid rgba(22, 65, 148, 0.26) !important; border-radius: 50% !important; background: #ffffff !important; cursor: pointer !important; z-index: 3 !important; }
.site-search-dialog .site-search-close::before, .site-search-dialog .site-search-close::after { content: "" !important; position: absolute !important; top: 21px !important; left: 12px !important; width: 21px !important; height: 2px !important; background: #164194 !important; border-radius: 99px !important; }
.site-search-dialog .site-search-close::before { transform: rotate(45deg) !important; }
.site-search-dialog .site-search-close::after { transform: rotate(-45deg) !important; }
.site-search-dialog .site-search-close:hover { background: #F3F3F3 !important; }
.site-search-dialog .site-search-results { display: grid !important; gap: 10px !important; margin: 24px 0 0 !important; padding: 0 !important; background: transparent !important; border: 0 !important; }
.site-search-dialog .site-search-results > p { margin: 0 !important; color: #7A7A7A !important; font-family: "Inter", sans-serif !important; font-size: 14px !important; line-height: 1.5 !important; }
.site-search-count { padding-bottom: 5px !important; font-weight: 700 !important; color: #164194 !important; }
.site-search-result { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 24px !important; min-height: 76px !important; padding: 15px 18px !important; border-left: 4px solid transparent !important; background: #F3F3F3 !important; color: #164194 !important; text-decoration: none !important; transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease !important; }
.site-search-result:hover { border-left-color: #0C74BB !important; background: #edf5fb !important; transform: translateX(4px) !important; }
.site-search-result-copy { display: grid !important; gap: 4px !important; min-width: 0 !important; }
.site-search-result-copy strong { display: block !important; font-family: "Karla", sans-serif !important; font-size: 18px !important; line-height: 1.2 !important; font-weight: 800 !important; color: #164194 !important; }
.site-search-result-copy small { display: block !important; font-family: "Inter", sans-serif !important; font-size: 13px !important; line-height: 1.45 !important; color: #7A7A7A !important; }
.site-search-result-arrow { flex: 0 0 auto !important; color: #0C74BB !important; font-size: 25px !important; font-weight: 700 !important; }
.site-search-empty { padding: 18px !important; background: #F3F3F3 !important; }
@media (max-width: 720px) { .site-search-overlay[data-search-overlay] { padding: 20px 12px !important; } .site-search-dialog { max-height: calc(100vh - 40px) !important; padding: 38px 22px 28px !important; } .site-search-title { margin-right: 48px !important; font-size: 34px !important; } .site-search-dialog .site-search-box { grid-template-columns: 1fr !important; } .site-search-submit { width: 100% !important; } }

/* ==================================================
   WERKON - AJUSTE PUNTUAL FOOTER
   Solo centra el logo de la primera columna.
   ================================================== */

.wk-footer-brand--logo-only {
    max-width: none;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wk-footer-brand--logo-only .wk-footer-logo {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wk-footer-brand--logo-only .wk-footer-logo img {
    width: 220px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.wk-footer-brand--logo-only p {
    display: none !important;
}

/* ==================================================
   WERKON - AJUSTES PUNTUALES LÍNEAS DE NEGOCIO
   Academy / Talent / Consulting & Engineering
   ================================================== */

/* 1. Franja de color debajo del hero: 25% del ancho de la pantalla */
.academy-hero-media,
.talent-hero-media,
.consulting-hero-media {
    overflow: visible !important;
}

.academy-hero-media::before,
.talent-hero-media::before,
.consulting-hero-media::before {
    left: auto !important;
    right: 0 !important;
    bottom: -18px !important;
    width: 25vw !important;
}

/* 2. Tratamiento de color para los nombres de las marcas */
.line-brand {
    display: inline;
    font: inherit;
    font-weight: inherit;
}

.line-brand--werkon {
    color: #164194 !important;
}

.line-brand--academy {
    color: #0C74BB !important;
}

.line-brand--talent {
    color: #E53212 !important;
}

.line-brand--consulting {
    color: #7A7A7A !important;
}

/* 3. Separadores verticales desplazados hacia la derecha */
.academy-split-card::after,
.academy-model-card::after,
.talent-split-card::after,
.talent-model-card::after,
.consulting-split-card::after,
.consulting-model-card::after {
    left: 55% !important;
}



/* ==================================================
   WERKON - LOGOS HOME SIN TARJETAS BLANCAS
   Ajuste aislado: no afecta megamenú, buscador, footer ni líneas de negocio.
   ================================================== */
.home-services-logos {
    width: 100%;
    padding: 72px 0;
    background: transparent !important;
}

.home-services-logos-inner {
    width: min(1280px, calc(100vw - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: clamp(38px, 5vw, 86px);
}

.home-service-logo-card {
    min-width: 0;
    min-height: 178px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .25s ease, opacity .25s ease;
}

.home-service-logo-card img {
    width: min(100%, 390px) !important;
    height: auto !important;
    max-height: 154px;
    object-fit: contain;
    display: block;
}

.home-service-logo-card:hover {
    transform: translateY(-5px);
    opacity: .92;
}

@media (max-width: 1180px) {
    .home-services-logos-inner {
        width: min(920px, calc(100vw - 48px));
        gap: 42px;
    }
    .home-service-logo-card img {
        width: min(100%, 330px) !important;
        max-height: 136px;
    }
}

@media (max-width: 720px) {
    .home-services-logos {
        padding: 54px 0;
    }
    .home-services-logos-inner {
        width: min(560px, calc(100vw - 32px));
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .home-service-logo-card {
        min-height: 118px;
    }
    .home-service-logo-card img {
        width: min(100%, 340px) !important;
        max-height: 124px;
    }
}

/* ==================================================
   WERKON - CORRECCIÓN GLOBAL HERO PÁGINAS DE SECTORES
   Ajuste aislado para .sector-hero-*.
   Mantiene intactos header, buscador, footer y demás secciones.
   ================================================== */

/* El hero contiene completamente fondo, texto e imagen */
.sector-hero-detail {
    min-height: 0 !important;
    padding: 0 !important;
    background: #164194 !important;
    overflow: hidden !important;
}

/* Fondo y capa azul ocupan toda la altura real del hero */
.sector-hero-detail .sector-hero-bg,
.sector-hero-detail .sector-hero-overlay {
    inset: 0 !important;
    width: auto !important;
    height: auto !important;
}

/* Ancho y retícula profesional */
.sector-hero-detail .wk-container {
    width: min(1320px, calc(100vw - 64px)) !important;
    max-width: 1320px !important;
    margin-inline: auto !important;
}

.sector-hero-detail .sector-hero-inner {
    min-height: 560px !important;
    padding: 100px 0 70px !important;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr) !important;
    gap: clamp(48px, 5vw, 82px) !important;
    align-items: center !important;
}

/* Botón Atrás visible y alineado */
.sector-hero-detail .sector-hero-back {
    top: 34px !important;
    right: 0 !important;
}

/* El texto queda centrado verticalmente, sin desplazamientos heredados */
.sector-hero-detail .sector-hero-copy {
    width: 100% !important;
    max-width: 690px !important;
    padding-top: 0 !important;
    align-self: center !important;
}

/* Imagen completamente dentro del banner */
.sector-hero-detail .sector-hero-image {
    width: 100% !important;
    max-width: 600px !important;
    height: clamp(320px, 27vw, 390px) !important;
    margin: 0 0 0 auto !important;
    align-self: center !important;
    background: transparent !important;
    overflow: hidden !important;
    box-shadow: 0 22px 55px rgba(10, 31, 72, 0.20) !important;
}

.sector-hero-detail .sector-hero-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

/* Tablet */
@media (max-width: 1180px) {
    .sector-hero-detail .wk-container {
        width: min(100% - 40px, 960px) !important;
    }

    .sector-hero-detail .sector-hero-inner {
        min-height: 0 !important;
        padding: 88px 0 54px !important;
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .sector-hero-detail .sector-hero-back {
        top: 26px !important;
    }

    .sector-hero-detail .sector-hero-copy {
        max-width: 820px !important;
        padding-top: 0 !important;
    }

    .sector-hero-detail .sector-hero-image {
        width: min(100%, 820px) !important;
        max-width: 820px !important;
        height: 360px !important;
        margin: 0 auto !important;
    }
}

/* Móvil */
@media (max-width: 720px) {
    .sector-hero-detail .wk-container {
        width: calc(100% - 28px) !important;
    }

    .sector-hero-detail .sector-hero-inner {
        padding: 72px 0 30px !important;
        gap: 24px !important;
    }

    .sector-hero-detail .sector-hero-back {
        top: 20px !important;
        right: 0 !important;
        font-size: 15px !important;
    }

    .sector-hero-detail .sector-hero-copy {
        padding-top: 0 !important;
    }

    .sector-hero-detail .sector-hero-copy span {
        margin-bottom: 10px !important;
        font-size: 13px !important;
    }

    .sector-hero-detail .sector-hero-copy h1 {
        max-width: 100% !important;
        font-size: clamp(31px, 9vw, 38px) !important;
        line-height: 1.08 !important;
    }

    .sector-hero-detail .sector-hero-image {
        height: 240px !important;
        margin: 0 auto !important;
        box-shadow: 0 16px 38px rgba(10, 31, 72, 0.18) !important;
    }
}

/* ==================================================
   WERKON - BOTÓN ATRÁS PROFESIONAL EN SECTORES
   Flecha primero + texto después.
   Ajuste global y aislado.
   ================================================== */

.sector-hero-back,
.wk-sectors-back {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 11px !important;
    min-height: 44px !important;
    padding: 7px 16px 7px 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    border-radius: 999px !important;
    background: rgba(22, 65, 148, 0.18) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: "Inter", sans-serif !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 750 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 8px 24px rgba(10, 31, 72, 0.12) !important;
    transition:
        background-color 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease !important;
}

/* Oculta la flecha antigua ubicada después del texto */
.sector-hero-back > span,
.wk-sectors-back > span {
    display: none !important;
}

/* Nueva flecha consistente, siempre antes del texto */
.sector-hero-back::before,
.wk-sectors-back::before {
    content: "←" !important;
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    font-family: Arial, sans-serif !important;
    font-size: 19px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease !important;
}

.sector-hero-back:hover,
.sector-hero-back:focus-visible,
.wk-sectors-back:hover,
.wk-sectors-back:focus-visible {
    background: #ffffff !important;
    color: #164194 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(10, 31, 72, 0.18) !important;
    outline: none !important;
}

.sector-hero-back:hover::before,
.sector-hero-back:focus-visible::before,
.wk-sectors-back:hover::before,
.wk-sectors-back:focus-visible::before {
    background: #164194 !important;
    color: #ffffff !important;
    transform: translateX(-2px) !important;
}

/* Ajuste móvil */
@media (max-width: 720px) {
    .sector-hero-back,
    .wk-sectors-back {
        min-height: 40px !important;
        padding: 5px 14px 5px 6px !important;
        gap: 9px !important;
        font-size: 14px !important;
    }

    .sector-hero-back::before,
    .wk-sectors-back::before {
        width: 28px !important;
        height: 28px !important;
        flex-basis: 28px !important;
        font-size: 17px !important;
    }
}

/* ==================================================
   WERKON - AJUSTE FINAL EXCLUSIVO HERO DE SECTORES
   1. Atrás como enlace de texto, sin apariencia de botón.
   2. Altura uniforme del banner.
   3. Imagen desplazada hacia abajo según el boceto aprobado.
   ================================================== */

/* ---------- Banner uniforme en todas las páginas de sectores ---------- */
.sector-hero-detail,
.wk-sectors-hero-final {
    height: 600px !important;
    min-height: 600px !important;
    margin-bottom: 105px !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #164194 !important;
}

/* El fondo y la capa de color conservan exactamente la altura del banner */
.sector-hero-detail .sector-hero-bg,
.sector-hero-detail .sector-hero-overlay,
.wk-sectors-hero-final .wk-sectors-hero-bg,
.wk-sectors-hero-final .wk-sectors-hero-overlay {
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100% !important;
    height: 600px !important;
    min-height: 600px !important;
}

/* Retícula interna común */
.sector-hero-detail .sector-hero-inner,
.wk-sectors-hero-final .wk-sectors-hero-inner {
    height: 600px !important;
    min-height: 600px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: start !important;
}

/* Texto ubicado a una altura constante */
.sector-hero-detail .sector-hero-copy {
    padding-top: 150px !important;
    align-self: start !important;
}

.wk-sectors-hero-final .wk-sectors-hero-copy {
    padding-top: 150px !important;
}

/* Imagen superior más baja y sobrepuesta ligeramente al área blanca */
.sector-hero-detail .sector-hero-image {
    width: 100% !important;
    max-width: 720px !important;
    height: 555px !important;
    margin: 145px 0 0 auto !important;
    align-self: start !important;
    background: #ffffff !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.wk-sectors-hero-final .wk-sectors-hero-image {
    top: 145px !important;
    right: 0 !important;
    width: min(720px, 48vw) !important;
    height: 555px !important;
    margin: 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.sector-hero-detail .sector-hero-image img,
.wk-sectors-hero-final .wk-sectors-hero-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

/* ---------- Enlace Atrás: solo texto + flecha posterior ---------- */
.sector-hero-back,
.wk-sectors-back {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    text-decoration: none !important;
    font-family: "Inter", sans-serif !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    transform: none !important;
    transition: opacity 0.2s ease !important;
}

/* Se elimina completamente la flecha circular agregada anteriormente */
.sector-hero-back::before,
.wk-sectors-back::before {
    content: none !important;
    display: none !important;
}

/* Se oculta la flecha heredada del HTML para evitar duplicados */
.sector-hero-back > span,
.wk-sectors-back > span {
    display: none !important;
}

/* Flecha sencilla después del texto, como en el boceto */
.sector-hero-back::after,
.wk-sectors-back::after {
    content: "←" !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    color: currentColor !important;
    font-family: Arial, sans-serif !important;
    font-size: 29px !important;
    line-height: 0.8 !important;
    font-weight: 300 !important;
    transform: translateX(0) !important;
    transition: transform 0.2s ease !important;
}

.sector-hero-back:hover,
.sector-hero-back:focus-visible,
.wk-sectors-back:hover,
.wk-sectors-back:focus-visible {
    border: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
    opacity: 0.82 !important;
    transform: none !important;
    outline: none !important;
}

.sector-hero-back:hover::after,
.sector-hero-back:focus-visible::after,
.wk-sectors-back:hover::after,
.wk-sectors-back:focus-visible::after {
    background: transparent !important;
    color: currentColor !important;
    transform: translateX(-4px) !important;
}

/* Posición uniforme del enlace Atrás */
.sector-hero-detail .sector-hero-back,
.wk-sectors-hero-final .wk-sectors-back {
    top: 34px !important;
    right: 0 !important;
}

/* ---------- Tablet ---------- */
@media (max-width: 1180px) {
    .sector-hero-detail,
    .wk-sectors-hero-final {
        height: auto !important;
        min-height: 760px !important;
        margin-bottom: 0 !important;
        overflow: hidden !important;
    }

    .sector-hero-detail .sector-hero-bg,
    .sector-hero-detail .sector-hero-overlay,
    .wk-sectors-hero-final .wk-sectors-hero-bg,
    .wk-sectors-hero-final .wk-sectors-hero-overlay {
        height: 100% !important;
        min-height: 760px !important;
    }

    .sector-hero-detail .sector-hero-inner,
    .wk-sectors-hero-final .wk-sectors-hero-inner {
        height: auto !important;
        min-height: 760px !important;
        padding: 94px 0 54px !important;
    }

    .sector-hero-detail .sector-hero-copy,
    .wk-sectors-hero-final .wk-sectors-hero-copy {
        padding-top: 36px !important;
    }

    .sector-hero-detail .sector-hero-image,
    .wk-sectors-hero-final .wk-sectors-hero-image {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 820px !important;
        height: 360px !important;
        margin: 28px auto 0 !important;
    }

    .sector-hero-detail .sector-hero-back,
    .wk-sectors-hero-final .wk-sectors-back {
        top: 28px !important;
        right: 0 !important;
    }
}

/* ---------- Móvil ---------- */
@media (max-width: 720px) {
    .sector-hero-detail,
    .wk-sectors-hero-final {
        min-height: 650px !important;
    }

    .sector-hero-detail .sector-hero-bg,
    .sector-hero-detail .sector-hero-overlay,
    .wk-sectors-hero-final .wk-sectors-hero-bg,
    .wk-sectors-hero-final .wk-sectors-hero-overlay {
        min-height: 650px !important;
    }

    .sector-hero-detail .sector-hero-inner,
    .wk-sectors-hero-final .wk-sectors-hero-inner {
        min-height: 650px !important;
        padding: 76px 0 32px !important;
    }

    .sector-hero-detail .sector-hero-copy,
    .wk-sectors-hero-final .wk-sectors-hero-copy {
        padding-top: 28px !important;
    }

    .sector-hero-detail .sector-hero-image,
    .wk-sectors-hero-final .wk-sectors-hero-image {
        height: 240px !important;
        margin-top: 22px !important;
    }

    .sector-hero-back,
    .wk-sectors-back {
        font-size: 15px !important;
        gap: 9px !important;
    }

    .sector-hero-back::after,
    .wk-sectors-back::after {
        font-size: 24px !important;
    }

    .sector-hero-detail .sector-hero-back,
    .wk-sectors-hero-final .wk-sectors-back {
        top: 20px !important;
    }
}

