.elementor-1537 .elementor-element.elementor-element-3acd952{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1537 .elementor-element.elementor-element-6221b61 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-1537 .elementor-element.elementor-element-d3eab10{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:10px;--padding-bottom:80px;--padding-left:80px;--padding-right:80px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1537 .elementor-element.elementor-element-9a6c07e{font-family:"Noto Serif", Sans-serif;font-weight:400;}.elementor-1537 .elementor-element.elementor-element-40ea058{--display:grid;--e-con-grid-template-columns:repeat(2, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--gap:0px 0px;--row-gap:0px;--column-gap:0px;--grid-auto-flow:row;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1537 .elementor-element.elementor-element-1f0dd57{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1537 .elementor-element.elementor-element-5460ca1{font-family:"Noto Serif", Sans-serif;font-weight:400;}.elementor-1537 .elementor-element.elementor-element-5059588{font-family:"Figtree", Sans-serif;font-weight:400;}@media(max-width:1024px){.elementor-1537 .elementor-element.elementor-element-3acd952{--flex-direction:column-reverse;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1537 .elementor-element.elementor-element-41f5d17.elementor-element{--align-self:center;}.elementor-1537 .elementor-element.elementor-element-40ea058{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-1537 .elementor-element.elementor-element-40ea058{--e-con-grid-template-columns:repeat(1, 1fr);--gap:0px 0px;--row-gap:0px;--column-gap:0px;--grid-auto-flow:row;}.elementor-1537 .elementor-element.elementor-element-1f0dd57{--gap:0px 0px;--row-gap:0px;--column-gap:0px;}}/* Start custom CSS for shortcode, class: .elementor-element-6221b61 *//* ========================================
   CAREER CAROUSEL - INFINITE SCROLL
   ======================================== */

.career-carousel-section {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #ffffff;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.career-carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.career-carousel-track {
    display: flex;
    
    gap: 0;
    align-items: center;
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.career-carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 550px;
    min-width: 550px;
    height: 385px;
    position: relative;
    padding: 5px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.career-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Animación infinita */
@keyframes scroll-career {
    0% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
    }
}

@-webkit-keyframes scroll-career {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
    }
}

/* ========================================
   MOBILE SLIDESHOW - OCULTO POR DEFECTO
   ======================================== */

.career-slideshow-mobile {
    display: none;
}

/* ========================================
   RESPONSIVE - Desktop grande (1440px)
   ======================================== */

@media (max-width: 1440px) {
    .career-carousel-item {
        width: 500px;
        min-width: 500px;
        height: 350px;
    }
}

/* ========================================
   RESPONSIVE - Tablet (1024px)
   ======================================== */

@media (max-width: 1024px) {
    .career-carousel-item {
        width: 450px;
        min-width: 450px;
        height: 315px;
    }
    
    .career-carousel-track {
        animation: scroll-career 35s linear infinite;
        -webkit-animation: scroll-career 35s linear infinite;
    }
}

/* ========================================
   RESPONSIVE - Tablet pequeña (768px)
   ======================================== */

@media (max-width: 768px) {
    .career-carousel-item {
        width: 380px;
        min-width: 380px;
        height: 266px;
    }
    
    .career-carousel-track {
        animation: scroll-career 30s linear infinite;
        -webkit-animation: scroll-career 30s linear infinite;
    }
}

/* ========================================
   RESPONSIVE - Mobile (568px - 481px)
   Mantiene infinite scroll
   ======================================== */

@media (max-width: 568px) and (min-width: 568px) {
    .career-carousel-item {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        height: 196px;
    }
    
    .career-carousel-track {
        animation: scroll-career 28s linear infinite;
        -webkit-animation: scroll-career 28s linear infinite;
    }
}

/* ========================================
   RESPONSIVE - Mobile SLIDESHOW (<568px)
   ======================================== */

@media (max-width: 567px) {
    /* Ocultar el carousel infinito */
    .career-slideshow-mobile{
        padding: 0 0 50px 0;
    }
    .career-carousel-track {
        display: none !important;
    }
    
    /* Mostrar el slideshow */
    .career-slideshow-mobile {
        display: block;
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    .career-slideshow-track {
        display: flex;
        transition: transform 0.3s ease-out;
        will-change: transform;
    }
    
    .career-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .career-slide-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }
    
    /* ========================================
       ARROWS
       ======================================== */
    
    .career-arrow {
        position: absolute;
        top: calc(50% - 25px) ;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0);
        border: none;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.2s ease;
    }
    
    .career-arrow:active {
        background: none;
    }
     .career-arrow:focus, .career-arrow:hover {
        background: none;
    }
    
    
    .career-arrow-prev {
        left: 5px;
    }
    
    .career-arrow-next {
        right: 5px;
    }
    
    .career-arrow svg {
        width: 36px;
        height: 36px;
    }
    
    /* ========================================
       DOTS
       ======================================== */
    
    .career-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 0;
    position: absolute;
    z-index: 2;
    bottom: 35px;
    left: 0;
    right: 0;
}
    
    .career-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .career-dot.active {
        background: rgba(0, 0, 0, 0.6);
        width: 8px;
        height: 8px;
    }
}

/* ========================================
   RESPONSIVE - Mobile extra pequeño (375px)
   ======================================== */

/* ========================================
   ACCESIBILIDAD - Reducir movimiento
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .career-carousel-track {
        animation-play-state: paused;
        -webkit-animation-play-state: paused;
    }
    
    .career-slideshow-track {
        transition: none;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-9a6c07e *//* Título principal cuando NO hay posiciones */
.careers-title-main-no-positions {
    color: #000;
text-align: center;
font-family: "Mozilla Text";
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: 50px; /* 125% */
    margin-bottom: 20px;
    max-width: 1086px;
    text-align: center;
    margin: 70px auto 30px auto;
}

/* Párrafo cuando NO hay posiciones */
.careers-title-main-paragraph-no-positions, .careers-title-main-paragraph-no-positions a {
    color: #000;
    text-align: center;
    font-family: Figtree;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 140% */
        text-align: center;
    max-width: 740px;
    margin: 0 auto 38px auto;
}

/* Botón de contacto cuando NO hay posiciones */
.no-positions-button-contact {
    border-radius: 5px;
    background:  #000;
    padding: 8px 16px;
    width: fit-content;
    color:  #Fff;
    font-family: Figtree;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    margin: 0 auto 32px auto;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    
}

.no-positions-button-contact:hover {
    border-radius: 5px;
    background:  #525151;
    color:#fff;
}

/* Layout alternativo */
.alternative-layout {
    margin-top: 30px;
}
.careers-title-main-paragraph-no-positions a{
        text-decoration:underline;
    }

/* Responsive Mobile */
@media (max-width: 768px) {
    .careers-title-main-no-positions {
        font-size: 25px;
        line-height:120%;
        max-width: unset;
        width:100%;
        margin: 0;
        text-align:left;
        padding-bottom:21px;
    }

    .careers-title-main-paragraph-no-positions, .careers-title-main-paragraph-no-positions a {
        color: #000;
        font-family: Figtree;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 25.5px;
        max-width: unset;
        text-align:left;
        margin: 0 auto 21px auto;
    }
    
    .no-positions-button-contact {
    border-radius: 5px;
     background:  #000;
    padding: 8px 16px;
    width: fit-content;
    color:#fff;
    font-family: Figtree;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; /* 150% */
    margin: 0 ;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    
}

}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-41f5d17 */.elementor-1537 .elementor-element.elementor-element-41f5d17{
    text-align: center;
    width: 100%;
}

@media (max-width:768px){
    .elementor-1537 .elementor-element.elementor-element-41f5d17{
        text-align:left;
        padding-bottom:50px;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-951cc72 */.elementor-1537 .elementor-element.elementor-element-951cc72 .careers-title-main-paragraph-no-positions{
    max-width: 886px;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-d3eab10 */@media (max-width: 768px) {
   .elementor-1537 .elementor-element.elementor-element-d3eab10 {
        padding: 26px 25px 26px;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-5460ca1 *//* Título principal cuando NO hay posiciones */
.elementor-1537 .elementor-element.elementor-element-5460ca1 .careers-title-main-no-positions {
    color:  #000;
    font-family: "Mozilla Text";
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 115%;
    margin-bottom: 20px;
    max-width: 539px;
    text-align: left;
    margin: 0px 0 0px 0;
    padding-bottom: 20px;
}

/* Párrafo cuando NO hay posiciones */
.elementor-1537 .elementor-element.elementor-element-5460ca1 .careers-title-main-paragraph-no-positions {
    color: var(--WC-Gray-GREEN_1, #1E2B17);
    font-family: Figtree;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    text-align: center;
    max-width: 539px;
    margin: 0 auto 38px auto;
}

/* Botón de contacto cuando NO hay posiciones */
.elementor-1537 .elementor-element.elementor-element-5460ca1 .no-positions-button-contact {
    border-radius: 4px;
    background: var(--WC-Gray-GREEN_1, #1E2B17);
    padding: 8px 16px;
    width: fit-content;
    color: var(--WC-Gray-wcgray-50, #F7F7F7);
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    margin: 0 auto 32px auto;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    
}

.elementor-1537 .elementor-element.elementor-element-5460ca1 .no-positions-button-contact:hover {
    border-radius: 4px;
    background: limegreen;
}

/* Layout alternativo */
.elementor-1537 .elementor-element.elementor-element-5460ca1 .alternative-layout {
    margin-top: 30px;
}

/* Responsive Mobile */
@media (max-width: 767px) {
    .elementor-1537 .elementor-element.elementor-element-5460ca1 .careers-title-main-no-positions {
        font-size: 25px;
        max-width: none;
        margin: 0px auto 10px auto;
    }

    .elementor-1537 .elementor-element.elementor-element-5460ca1 .careers-title-main-paragraph-no-positions {
        color: var(--WC-Gray-GREEN_1, #1E2B17);
        font-family: Figtree;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        max-width: none;
        margin: 0 auto 38px auto;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-5059588 *//* Párrafo cuando NO hay posiciones */
.elementor-1537 .elementor-element.elementor-element-5059588 .careers-title-main-paragraph-no-positions {
    color: var(--WC-Gray-GREEN_1, #1E2B17);
    font-family: Figtree;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    width: 100%;
    max-width: unset;
    margin: 0 0 38px 0;
}

@media (max-width:768px){
    .elementor-1537 .elementor-element.elementor-element-5059588 .careers-title-main-paragraph-no-positions {
        font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-1f0dd57 */.elementor-1537 .elementor-element.elementor-element-1f0dd57{
    padding: 80px 128px !important;
}

@media (max-width:1250px){
    .elementor-1537 .elementor-element.elementor-element-1f0dd57{
        padding:7% !important;
    }
}

@media (max-width: 767px) {
    .elementor-1537 .elementor-element.elementor-element-1f0dd57 {
        padding: 0px 0px !important;
    }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-928e20e */.positions-content-shortcode {
  padding: 80px 128px 80px 0;
}

@media (max-width:1250px){
    .positions-content-shortcode{
        padding:7% 7% 7% 0 ;
    }
}

.open-positions {
  color: #000;
  font-family: "Mozilla Text", serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  margin-top: 6px;
  margin-bottom: 0;
}

.container-careers {
  margin-top: 40px;
}

.content-career:first-child {
  border-top: 1px solid #c8c8c8;
}

.content-career {
  padding: 20px 0;
  border-bottom: 1px solid #c8c8c8;
  margin-bottom: 40px;
}

.content-career a {
  text-decoration: none;
}

.content-career a:hover {
  text-decoration: none;
}

.career-name {
  color: #000;
  font-family: Figtree, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  margin: 0;
  transition: color 0.3s ease;
}

.career-name:hover {
  color: #000;
}

.career-designation {
  color: #1E2B17;
  font-family: Figtree, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
  display: flex;
  align-items: center;
}

.career-designation img {
  margin-right: 12px;
  width: 12px;
  height: 16px;
}

@media (min-width: 1024px) {
  .link-career {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .career-name {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .positions-content-shortcode {
    padding: 0px 0px;
  }
  
  .open-positions {
    font-size: 25px;
    margin-top: 0;
  }
  
  .career-name {
    font-size: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-40ea058 */.elementor-1537 .elementor-element.elementor-element-40ea058{
    min-height: 40vh;
}

@media (max-width: 768px) {
   .elementor-1537 .elementor-element.elementor-element-40ea058 {
       min-height: 20vh;
        padding: 26px 25px 20px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-3acd952 */body .post-1537 .page-header{
    display: none;
}

.elementor-1537 .elementor-element.elementor-element-3acd952 .e-con-inner{
    width: 100% !important;
    max-width: unset;
    margin: 0;
   
}/* End custom CSS */