

/* -----------------------------
   VARIABLES GLOBALES
----------------------------- */
:root {
  --font-primary: 'Space Grotesk', sans-serif;
  --color-white: #ffffff;
  --color-gray: #d0d0d0;
  --gradient-start: #4FCDA1;
  --gradient-middle: #4BB5FE;
  --gradient-end: #6249F4;
  --padding-block: 40px 20px;
  --font-size-title: clamp(24px, 5vw, 50px);
  --line-height-title: clamp(28px, 6vw, 54px);
  --font-size-description: clamp(14px, 3vw, 19px);
  --line-height-description: clamp(18px, 4vw, 24px);
}

/* -----------------------------
   ESTILOS GENERALES DEL BODY
----------------------------- */
body {
  font-family: var(--font-primary);
  padding-top: 90px !important;
}

/* Ocultar tÃ­tulo de pÃ¡gina */
.entry-title {
  display: none !important;
}

/* -----------------------------
   BLOQUE DE TEXTO GLOBAL
----------------------------- */
.text-block,
.gradient-text-container {
  background-color: #000;
  padding: var(--padding-block);
  text-align: center;
  font-family: var(--font-primary);
  word-wrap: break-word;
}

/* Texto con gradiente */
.gradient-text,
.gradient-bold {
  display: inline-block;
  font-weight: 700 !important;
  font-size: var(--font-size-title);
  line-height: var(--line-height-title);
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Texto blanco normal */
.white-text,
.gradient-regular {
  display: inline-block;
  font-weight: 400 !important;
  font-size: 58px;
  line-height: 68px;
  color: var(--color-white);
}

/* Texto descriptivo */
.text-description,
.valores-texto-normal {
  margin-top: 30px;
  font-weight: 400;
  font-size: var(--font-size-description);
  line-height: var(--line-height-description);
  color: var(--color-white);
  text-align: center;
}

/* Texto descriptivo */
.text-description,
.valores-texto-impulsa {
  margin-top: 15px;
  margin-bottom: 50px;
  font-weight: 400;
  font-size: var(--font-size-description);
  line-height: var(--line-height-description);
  color: var(--color-white);
  text-align: center;
}

/* -----------------------------
   RESPONSIVO (TABLET)
----------------------------- */
@media (max-width: 1024px) {
  .gradient-text,
  .white-text,
  .gradient-bold,
  .gradient-regular {
    font-size: clamp(24px, 6vw, 40px);
    line-height: clamp(28px, 7vw, 48px);
    
  }
  .text-description,
  .valores-texto-normal {
    font-size: clamp(14px, 2.5vw, 17px);
    line-height: clamp(18px, 3vw, 22px);
    margin-top: 20px;
  }
}

/* -----------------------------
   RESPONSIVO (MÃ“VIL)
----------------------------- */

@media (max-width: 768px) {
  .gradient-text,
  .white-text,
  .gradient-bold,
  .gradient-regular {
    font-size: clamp(20px, 5vw, 28px);
    line-height: clamp(24px, 6vw, 32px);
    
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .text-description,
  .valores-texto-normal {
    font-size: clamp(12px, 4vw, 16px);
    line-height: clamp(16px, 5vw, 22px);
    margin-top: 15px !important;
  }
  .text-description br {
    display: none;
  }
  
  .gradient-bold {
	  font-size: 48px !important;
  }
  
  .elementor-456 .elementor-element.elementor-element-2094cf5 {
        padding: 0 20px;
  }

}

@media (max-width: 767px) {
    .elementor-456 .elementor-element.elementor-element-2175bd0 {
        padding: 0 !important;
    }
}


/* 1) El cover (fondo oscuro) por debajo */
rs-modal-cover[data-alias="video-home"]{
  z-index: 999998 !important;
}

/* 2) El mÃ³dulo modal por encima y centrado */
rs-module-wrap[data-alias="video-home"],
rs-module[data-alias="video-home"]{
  position: fixed !important;
  z-index: 999999 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: block !important;
  opacity: 1 !important;
}

/* 3) Evita que algÃºn contenedor lo â€œrecorteâ€� */
rs-module-wrap[data-alias="video-home"]{
  overflow: visible !important;
}

/*-----------------------------SLIDER HOME-----------------------------*/
/*-----BOTÃ“N------*/

/* Base: mismo padding a izquierda y derecha, y layout con gap */
#btn_home_slider {
  position: relative;
  z-index: 0;
  border-radius: 25px !important;

  /* --- Layout para reservar espacio a la flecha --- */
  display: inline-flex;          /* o flex si ocupa todo el ancho */
  align-items: center;
  justify-content: center;       /* centra texto + flecha en conjunto */
  gap: 10px;                     /* ESPACIO entre texto y flecha */

  /* --- Padding simÃ©trico --- */
  padding-block: 0.75rem;        /* alto (ajÃºstalo a tu diseÃ±o) */
  padding-inline: 1.5rem;        /* mismo a izquierda y derecha */
  box-sizing: border-box;
}

/* Pseudo-borde (igual que tenÃ­as) */
#btn_home_slider::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 2px; /* grosor del borde */

  background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5));

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
  transition: background .25s ease;
}

/* Hover del borde (igual que tenÃ­as) */
#btn_home_slider:hover::before {
  background:
    repeating-linear-gradient(
      90deg,
      #ffffff 0px,
      #ffffff 36px,
      #b7c0ca 42px,
      #6e7987 78px,
      #b7c0ca 84px,
      #ffffff 120px
    );
}

/* Flecha: ahora forma parte del flujo (SIN absolute) */
#btn_home_slider::after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background: url('/wp-content/uploads/2025/09/vector-flecha-derecha.png') center/contain no-repeat;
  /* No usamos position ni right/top; asÃ­ respetamos gap y padding simÃ©trico */
}

/* Si el botÃ³n debe ocupar todo el ancho del contenedor, puedes usar:
#btn_home_slider { display: flex; width: 100%; }
*/


/*-----------------------------CONTENIDO DE POST-----------------------------*/
/*-----TABLA DE CONTENIDO------*/


.tbl_contenidos ul {
  margin: 0;               /* elimina mÃ¡rgenes externos del ul */
  padding-left: 1.2em;     /* sangrÃ­a clÃ¡sica para bullets */
  list-style: disc;        /* muestra viÃ±etas */
}

.tbl_contenidos ul li {
  margin: 0 0 16px 0;      /* "gap" entre items */
  line-height: 1.5;        /* opcional: mejora legibilidad */
}

.tbl_contenidos ul li a {
    color: white;
}
/* Evita espacio extra al final */
.tbl_contenidos ul li:last-child {
  margin-bottom: 0;
}
/*-----------------------------CONTENIDO DE POST-----------------------------*/
/*-----TABLA DE CONTENIDO------*/


/*-----------------------------SLIDER DEGRADADO-----------------------------*/

.video-gradient {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 99 !important;
    pointer-events: none !important;

    /* Degradado que solo oscurece desde el 80% hacia abajo */
    
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,0) 0%,
		rgba(0,0,0,0.4) 60%,
		rgba(0,0,0,0.7) 80%,
		rgba(0,0,0,1) 100%
	) !important;

	
	/*background: red !important;*/
	
}

/*-----------------------------SLIDER DEGRADADO-----------------------------*/


/*-----------------------------TALENTO-----------------------------*/




/* Contenedor del slide */
.slider_talento {
  position: relative;
  border-radius: 5px;
  overflow: hidden;                 /* para que el radio recorte imagen y capas */
  background-color: #0C0C0C;        /* â†� color base de Figma */
  isolation: isolate;               /* limita el mix-blend al propio bloque */
}

/* Imagen de fondo que aÃ±ade Elementor (ya existe); reforzamos por si acaso */
.slider_talento::before {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: inherit;
  z-index: 0;                       /* debajo del overlay */
}

/* Overlay con el gradiente y blend "color" (equivalente a background-blend-mode: color) */
.slider_talento::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  /* Gradiente del Figma */
  background: linear-gradient(
    90deg,
    rgba(74, 185, 254, 0.2) 0%,
    rgba(100, 64, 243, 0.2) 100%
  );

  mix-blend-mode: color;            /* â†� clave para el â€œteÃ±idoâ€� tipo Figma */
  pointer-events: none;
  z-index: 1;                       /* por encima de la imagen, debajo del contenido */
}

/* Contenido por encima del overlay */
.slider_talento > .e-con-inner {
  position: relative;
  z-index: 2;
  background: transparent !important;
}

/* Sanitizar posibles fondos internos */
.slider_talento .elementor-widget,
.slider_talento .elementor-widget-container {
  background: transparent !important;
}

/*Flechas*/
.elementor-swiper-button.elementor-swiper-button-next
{
	    margin-right: -30px;
}

.elementor-swiper-button.elementor-swiper-button-prev.swiper-button-disabled, .elementor-swiper-button.elementor-swiper-button-prev {
    margin-left: -30px;
}

/*Tarjeta de testimonio*/
.txt_testimonio p {
    padding: 0px !important;
    margin: 0px !important;
}

/*.fnd_testimonio
{
	background: linear-gradient(90deg, rgba(74, 185, 254, 0.2) 0%, rgba(100, 64, 243, 0.2) 100%);
	border: 1px solid #F8F8F833 !important;
}*/

/*-----------------------------TALENTO-----------------------------*/


/*--------------------SLIDER PRINCIPAL TODAS PANTALLAS ---------------------*/
.txt_bienvenidos
{
	font-weight: 400;
    font-style: normal;
    
    background: linear-gradient(90deg, #4AB9FE, #6440F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
   display: inline-block;
   line-height: 120% !important;
}

.txt_bienvenidos_blancos
{
	font-family: Space Grotesk;
	font-weight: 400;
	font-style: Regular;
	font-size: 94px;
	leading-trim: NONE;
	line-height: 104px;
	text-align: center;
	color:#ffffff;
}

.degradado {
    font-weight: 700;
    white-space: nowrap;

    background: linear-gradient(
        90deg,
        #4FCDA1 0%,
        #4BB5FE 50%,
        #6249F4 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.txt_bienvenidos2 {
    font-weight: 700;
    font-style: normal;

    background: linear-gradient(
        90deg,
        #4FCDA1 0%,
        #4BB5FE 50%,
        #6249F4 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    display: inline-block;
}
/*--------------------SLIDER PRINCIPAL TODAS PANTALLAS ---------------------*/

/* Forzar el corte de texto en el widget con la clase extract_post */
.extract_post, 
.extract_post .elementor-widget-container {
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important; /* Prueba con 2 líneas para notar el cambio */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: break-word !important;
}


/*Imagen fondo post entradas*/
.img_fnd_post {
    position: relative !important;
    min-height: 400px !important;
    display: flex !important;
    /* Centramos horizontal, pero empujamos el contenido al fondo */
    align-items: flex-end !important; 
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden !important;
    padding: 0 !important; /* Quitamos el padding global para controlarlo abajo */
}

/* El contenedor interno que envuelve al H1 */
.img_fnd_post > .e-con-inner {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end !important;
    align-items: center !important;
    /* Aquí es donde controlas el espacio del suelo */
    padding-bottom: 100px !important; 
}

/* El H1 específico */
.img_fnd_post h1 {
    margin: 0 !important;
    padding: 0 20px !important; /* Espacio a los lados para que no toque los bordes */
}

/* Capa del degradado negro */
.img_fnd_post::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%; 
    background: linear-gradient(to top, rgba(0, 0, 0, .95) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.img_fnd_post > * {
    position: relative;
    z-index: 2;
}

/* Imagen fondo blog */
.img_fnd_blog {
    position: relative !important;
    min-height: 400px !important;

    /* IMPORTANTE: sin !important */
    display: flex;

    align-items: flex-end !important;
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden !important;
    padding: 0 !important;
}


/* Contenedor interno */
.img_fnd_blog > .e-con-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end !important;
    align-items: center !important;
    padding-bottom: 100px !important;
}

@media (max-width: 768px) {
	.img_fnd_blog > .e-con-inner {
		padding-bottom: 25px !important;
	}
}


/* H1 */
.img_fnd_blog h1 {
    margin: 0 !important;
    padding: 0 10px;
}

 @media (max-width:767px) {
	 .img_fnd_blog h1 {
		margin: 0 !important;
		padding: 0 10px;
	}
 }


/* Degradado */
.img_fnd_blog::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 60%;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .95) 0%,
        transparent 100%
    );

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


@media (max-width: 767px) {

    .img_fnd_blog::after {
        height: 75%;
    }

}


/* Contenido sobre el degradado */
.img_fnd_blog > * {
    position: relative;
    z-index: 2;
}

/* Respetar siempre la visibilidad responsive de Elementor */

@media (min-width: 1025px) {
    .elementor-hidden-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .elementor-hidden-tablet {
        display: none !important;
    }
	
	.img_fnd_blog > .e-con-inner {
        padding-top: 150px !important;
    }

}

@media (max-width: 767px) {
    .elementor-hidden-mobile {
        display: none !important;
    }
	.img_fnd_blog > .e-con-inner {
        padding-top: 30px !important;
    }
}

rs-bullet .tp-bullet-title,
.tp-bullet .tp-bullet-title {
  display: none !important;
}


.servicios-rel-button {
    display: inline-flex !important;
    align-items: center !important;
    padding: 10px 9px !important;
    width: auto !important;
    min-width: 0 !important;
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: "Space Grotesk", sans-serif !important;
    transition: all 0.3s ease;
}

/* El texto subrayado */
.texto-boton {
    text-decoration: underline !important;
    text-underline-offset: 5px;
    margin-right: 10px; /* Este margen controla la distancia fija con la flecha */
}

/* El círculo/cuadrado de la flecha */
.circulo-flecha {
    width: 12px !important; /* Un poco más grande para que se vea mejor */
    height: 12px !important;
    border: 1px solid #ffffff !important;
    position: relative !important;
    display: inline-block !important;
    flex-shrink: 0;
    /* Eliminamos top y left negativos que lo movían a una posición fija */
    transform: translateY(-4px) !important; /* Lo sube un poquito respecto al texto */
}

/* La punta de la flecha */
.circulo-flecha::before {
    content: "" !important;
    position: absolute !important;
    top: 35% !important;
    left: 65% !important;
    width: 4px !important;
    height: 4px !important;
    border-top: 1px solid #fff !important;
    border-right: 1px solid #fff !important;
    transform: translate(-50%, -50%) !important; 
}

/* El cuerpo de la flecha */
.circulo-flecha::after {
    content: "" !important;
    position: absolute !important;
    top: 55% !important;
    left: 45% !important;
    width: 7px !important;
    height: 1px !important;
    background-color: #fff !important;
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}


#guia-button {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 15px 12px 15px !important;
    width: auto !important;
    min-width: 0 !important;
    background-color: rgba(26, 26, 26, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: "Space Grotesk", sans-serif !important;
    transition: all 0.3s ease;
}

/*CERRAR BTN VIDEO*/

/* Reseteamos el botón para quitar ese borde rosa de Revolution */
button.rev-close-btn {
    all: unset !important; 
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border: 2px solid #ffffff !important; /* Aquí defines tu color de borde */
    border-radius: 50% !important;
    background: transparent !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    outline: none !important; /* Quita el borde rosa de enfoque */
    box-shadow: none !important;
}

/* Forzamos que el contenedor de la X sea visible */
.rev-close-line {
    display: block !important;
    position: relative !important;
    width: 18px !important;
    height: 18px !important;
    pointer-events: none !important;
}

/* Dibujamos las líneas de la X */
.rev-close-line::before,
.rev-close-line::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    height: 2px !important; /* Grosor de la línea */
    background-color: #ffffff !important; /* Color de la X */
    border-radius: 2px !important;
}

/* La rotación de las líneas */
.rev-close-line::before {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

.rev-close-line::after {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}

/* --- HOVER --- */
button.rev-close-btn:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

button.rev-close-btn:hover .rev-close-line::before,
button.rev-close-btn:hover .rev-close-line::after {
    background-color: #ffffff !important;
}
/*CERRAR BTN VIDEO*/

/*Cargando video*/
/* Contenedor que cubre el slider mientras carga */
.custom-loader-wrapper {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999 !important;
    color: #ffffff !important;
    font-family: "Space Grotesk", sans-serif !important;
    font-size: 14px !important;
    gap: 15px !important;
}

/* El círculo que gira */
.custom-spinner {
    width: 40px !important;
    height: 40px !important;
    border: 3px solid rgba(255, 255, 255, 0.2) !important;
    border-top: 3px solid #ffffff !important; /* Color de la línea que gira */
    border-radius: 50% !important;
    animation: spin-loader 1s linear infinite !important;
}

@keyframes spin-loader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ocultar el cargador cuando el slider ya tiene la clase 'rs-complete' 
   (Revolution Slider la añade automáticamente al terminar) */
.rev_slider_wrapper.rs-complete .custom-loader-wrapper {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}


/*Ecosistema origen - Equipo core*/
/* ==========================================================================
   ECOSISTEMA ORIGEN - EQUIPO CORE
   ========================================================================== */

.equipo-core-1 {
    width: 100%;
    padding: 0px 0 60px 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: #000;
}


/* ==========================================================================
   VIEWPORT
   ========================================================================== */

.equipo-core-1 .origen-viewport {
    width: 100%;
    height: 550px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}


/* ==========================================================================
   TRACK
   ========================================================================== */

.equipo-core-1 .origen-track {
    position: relative;

    width: 823px;
    height: 515px;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* ==========================================================================
   TARJETAS
   ========================================================================== */

.equipo-core-1 .origen-card {
    position: absolute;

    /* Mismo tamaño estructural que la tarjeta activa */
    width: 823px;
    height: 470px;

    border-radius: 24px;
    overflow: hidden;

    opacity: 0;

    filter: grayscale(100%) blur(8px);

    transition:
        transform 0.9s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.9s cubic-bezier(0.25, 1, 0.5, 1);

    transform: scale(0.72);

    z-index: 1;

    background: #111;
}


/* Tarjeta activa escritorio */
.equipo-core-1 .origen-card.active {
    position: relative;

    width: 823px;
    height: 515px;

    opacity: 1;

    filter: grayscale(0%) blur(0);

    transform: scale(1);

    z-index: 10;

    pointer-events: auto;
}


/* ==========================================================================
   ESCRITORIO - TARJETAS LATERALES
   ========================================================================== */

@media (min-width: 1025px) {

    .equipo-core-1 .origen-card.prev {
        opacity: 0.25;

        transform:
            translateX(-680px)
            scale(0.72);

        display: block;
    }

    .equipo-core-1 .origen-card.next {
        opacity: 0.25;

        transform:
            translateX(680px)
            scale(0.72);

        display: block;
    }

}


/* ==========================================================================
   CONTENIDO DE LA TARJETA
   ========================================================================== */

.equipo-core-1 .slider-container {
    display: flex;

    width: 100%;
    height: 100%;

    align-items: stretch;

    background: linear-gradient(
        90deg,
        rgba(74, 185, 254, 0.2) 0%,
        rgba(100, 64, 243, 0.2) 100%
    );
}


/* Imagen */
.equipo-core-1 .slider-image-side {
    flex: 1;
    overflow: hidden;
}

.equipo-core-1 .slider-image-side img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Texto */
.equipo-core-1 .slider-text-side {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 40px;

    text-align: left;

    color: #868686;

    margin-bottom: 18px;

    font-weight: 400;
}


/* Nombre */
.equipo-core-1 .slider-subtitle {
    color: #fff;

    font-family: "Space Grotesk", sans-serif;

    font-weight: 500;

    font-size: 32px;
    line-height: 100%;

    
}


/* Cargo */
.equipo-core-1 .slider-title {
    color: #fff;

    margin-bottom: 15px;

    font-family: "Space Grotesk", sans-serif;

    font-weight: 400;

    font-size: 22px;
    line-height: 100%;

    
}


/* Descripción */
.equipo-core-1 .slider-description {
    color: #868686;

    font-family: "Space Grotesk", sans-serif;

    font-weight: 400;

    font-size: 18px;
    line-height: 26px;

    
}


/* ==========================================================================
   PUNTOS
   ========================================================================== */

.equipo-core-1 .origen-puntos {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}

.equipo-core-1 .punto {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #333;

    cursor: pointer;

    transition: 0.3s;
}

.equipo-core-1 .punto.active {
    background: #fff;

    transform: scale(1.3);
}

/* ==========================================================================
   ESCRITORIO - AJUSTE IMAGEN Y TEXTO
   ========================================================================== */

@media (min-width: 1025px) {

    /* Track más compacto */
    .equipo-core-1 .origen-track {
        width: 823px;
        height: 470px;
    }

    /* Tarjeta activa más baja */
    .equipo-core-1 .origen-card.active {
        width: 823px;
        height: 470px;
    }

    /* El fondo ocupa toda la tarjeta, sin franja superior */
    .equipo-core-1 .slider-container {
        position: relative;

        display: flex;
        align-items: stretch;

        width: 100%;
        height: 100%;

        margin: 0;

        overflow: hidden;
    }


    /* ==========================================================
       IMAGEN
       ========================================================== */

    .equipo-core-1 .slider-image-side {
        position: relative;
        z-index: 1;

        flex: 0 0 46%;
        width: 46%;
        height: 100%;

        display: flex;
        justify-content: flex-start;
        align-items: flex-end;

        overflow: visible;
    }

    .equipo-core-1 .slider-image-side img {
		display: block;

		width: 108%;
		height: auto;

		max-height: 108%;

		margin-top: auto;
		margin-right: auto;

		object-fit: contain;
		object-position: left bottom;

		transform: translateY(8px);

		/* Fundido suave inferior */
		-webkit-mask-image: linear-gradient(
			to bottom,
			#000 0%,
			#000 78%,
			rgba(0,0,0,0.8) 88%,
			rgba(0,0,0,0.3) 96%,
			transparent 100%
		);

		mask-image: linear-gradient(
			to bottom,
			#000 0%,
			#000 78%,
			rgba(0,0,0,0.8) 88%,
			rgba(0,0,0,0.3) 96%,
			transparent 100%
		);
	}


    /* ==========================================================
       TEXTO
       ========================================================== */

    .equipo-core-1 .slider-text-side {
        position: relative;
        z-index: 2;

        flex: 0 0 64%;
        width: 64%;

        margin-left: -10%;
        margin-bottom: 0;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;

        padding: 35px 40px;

        box-sizing: border-box;

        text-align: left;
        color: #868686;
        font-weight: 400;
    }
}

/* ==========================================================================
   TABLET
   700px - 1024px

   Se baja a 700px para evitar que 768px nominales caigan en móvil
   dentro del simulador de Elementor.
   ========================================================================== */

@media (min-width: 700px) and (max-width: 1024px) {

    .equipo-core-1 {
        padding: 40px 0;
    }


    /* Viewport */
    .equipo-core-1 .origen-viewport {
        width: 100%;

        height: 440px !important;

        display: flex;
        justify-content: center;
        align-items: center;

        position: relative;
    }


    /* Track */
    .equipo-core-1 .origen-track {
        position: relative !important;

        width: 90vw !important;
        max-width: 900px;

        height: 380px !important;

        display: flex;
        justify-content: center;
        align-items: center;
    }


    /* Todas las tarjetas superpuestas para mantener fade */
    .equipo-core-1 .origen-card {
        position: absolute !important;

        top: 0 !important;
        left: 50% !important;

        width: 100% !important;
        height: 380px !important;

        transform: translateX(-50%) scale(1) !important;

        border-radius: 20px;

        overflow: hidden;

        opacity: 0 !important;
        visibility: hidden !important;

        filter: grayscale(0%) blur(0) !important;

        pointer-events: none !important;

        z-index: 1 !important;

        background: #111;

        transition:
            opacity 0.8s ease-in-out,
            visibility 0.8s ease-in-out !important;
    }


    /* Activa */
    .equipo-core-1 .origen-card.active {
        position: absolute !important;

        width: 100% !important;
        height: 380px !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        z-index: 5 !important;

        transform: translateX(-50%) scale(1) !important;

        filter: grayscale(0%) blur(0) !important;
    }


    /* Prev / next ocultas */
    .equipo-core-1 .origen-card.prev,
    .equipo-core-1 .origen-card.next {
        display: block !important;

        opacity: 0 !important;
        visibility: hidden !important;

        pointer-events: none !important;

        transform: translateX(-50%) scale(1) !important;
    }


    /* ==========================================================
       TARJETA HORIZONTAL
       ========================================================== */

    .equipo-core-1 .slider-container {
        display: flex !important;

        flex-direction: row !important;

        align-items: stretch !important;

        width: 100% !important;
        height: 100% !important;

        background: linear-gradient(
            90deg,
            rgba(74, 185, 254, 0.2) 0%,
            rgba(100, 64, 243, 0.2) 100%
        ) !important;
    }


    /* ==========================================================
       IMAGEN TABLET
       ========================================================== */

    .equipo-core-1 .slider-image-side {
        position: relative;
        z-index: 1;

        flex: 0 0 44% !important;
        width: 44% !important;
        height: 100% !important;

        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;

        overflow: visible !important;
    }


    .equipo-core-1 .slider-image-side img {
        display: block;

        width: 96% !important;
		height: 94% !important;

		object-fit: contain !important;
		object-position: center bottom !important;

        transform: translateY(18px);

       
    }


    /* ==========================================================
       TEXTO TABLET
       ========================================================== */

    .equipo-core-1 .slider-text-side {
        position: relative;
        z-index: 2;

        flex: 0 0 68% !important;
        width: 98% !important;

        /*margin-left: -12% !important;*/
        margin-bottom: 0 !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;

        padding: 30px 35px 30px 55px !important;

        box-sizing: border-box;

        text-align: left;

        color: #868686;
    }


    /* Nombre tablet */
    .equipo-core-1 .slider-subtitle {
        color: #fff;

        font-family: "Space Grotesk", sans-serif;

        font-weight: 600;

        font-size: 22px !important;
        line-height: 26px !important;

        

        margin: 0 0 8px 0;
    }


    /* Cargo tablet */
    .equipo-core-1 .slider-title {
        color: #fff;

        font-family: "Space Grotesk", sans-serif;

        font-weight: 400;

        font-size: 22px !important;
        line-height: 100% !important;

        

        margin: 0 0 20px 0;
    }


    /* Descripción tablet */
    .equipo-core-1 .slider-description {
        color: #868686;

        font-family: "Space Grotesk", sans-serif;

        font-weight: 400;

        font-size: 16px !important;
        line-height: 21px !important;

        

        margin: 0;

        max-width: 100%;
    }


    /* Puntos */
    .equipo-core-1 .origen-puntos {
        display: flex;

        gap: 12px;

        margin-top: 18px;
    }
	
	.equipo-core-1 .slider-image-side {
		position: relative;
	}

	
}


/* ==========================================================================
   MÓVIL
   Hasta 699px
   ========================================================================== */

/*@media (max-width: 699px) {*/
@media (max-width: 767px) {

    .equipo-core-1 {
        padding: 40px 0;
    }


    /* Viewport */
    .equipo-core-1 .origen-viewport {
        width: 100%;

        height: 650px !important;

        display: flex;
        justify-content: center;
        align-items: center;
    }


    /* Track */
    .equipo-core-1 .origen-track {
        position: relative !important;

        width: 95vw !important;

        height: 600px !important;

        display: flex;
        justify-content: center;
        align-items: center;
    }


    /* ==========================================================
       TARJETAS / FADE
       ========================================================== */

    .equipo-core-1 .origen-card {
        position: absolute !important;

        top: 0 !important;
        left: 50% !important;

        width: 100% !important;
        height: 100% !important;

        transform: translateX(-50%) scale(1) !important;

        opacity: 0 !important;
        visibility: hidden !important;

        filter: grayscale(0%) blur(0) !important;

        pointer-events: none !important;

        z-index: 1 !important;

        transition:
            opacity 0.8s ease-in-out,
            visibility 0.8s ease-in-out !important;
    }


    .equipo-core-1 .origen-card.active {
        position: absolute !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        z-index: 5 !important;

        transform: translateX(-50%) scale(1) !important;

        filter: grayscale(0%) blur(0) !important;
    }


    .equipo-core-1 .origen-card.prev,
    .equipo-core-1 .origen-card.next {
        display: block !important;

        opacity: 0 !important;
        visibility: hidden !important;

        pointer-events: none !important;

        transform: translateX(-50%) scale(1) !important;
    }


    /* ==========================================================
       DISEÑO VERTICAL MÓVIL
       ========================================================== */

    .equipo-core-1 .slider-container {
        display: flex !important;

        flex-direction: column !important;

        width: 100% !important;
        height: 100% !important;

        background: linear-gradient(
            90deg,
            rgba(74, 185, 254, 0.2) 0%,
            rgba(100, 64, 243, 0.2) 100%
        ) !important;
    }


    /* Imagen */
    .equipo-core-1 .slider-image-side {
        flex: 0 0 40% !important;

        width: 100% !important;
        height: 40% !important;

        display: flex !important;

        justify-content: center !important;
        align-items: center !important;

        overflow: hidden;
    }

    .equipo-core-1 .slider-image-side img {
        width: 50% !important;
        height: 90% !important;

        object-fit: contain !important;

        object-position: center bottom !important;
    }


    /* Texto */
    .equipo-core-1 .slider-text-side {
        flex: 1 !important;

        display: flex !important;

        flex-direction: column !important;

        justify-content: center !important;

        padding: 30px !important;

        margin: 0 !important;

        text-align: left;
    }


    /* Puntos ocultos en móvil */
    .equipo-core-1 .origen-puntos {
        display: none !important;
    }
}


/*@media (min-width: 700px) and (max-width: 1024px) {*/
/* TABLET · EQUIPO CORE */
@media (min-width: 769px) and (max-width: 1024px) {

    .equipo-core-1 .slider-container {
        position: relative !important;
        overflow: hidden !important;
    }

    .equipo-core-1 .slider-container::after {
        content: "";

        position: absolute;
        inset: 0;

        z-index: 2;

        pointer-events: none;

        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0) 70%,
            rgba(0,0,0,0.08) 82%,
            rgba(0,0,0,0.18) 92%,
            rgba(0,0,0,0.28) 100%
        );
    }

    /* La foto queda debajo del fundido */
    .equipo-core-1 .slider-image-side {
        position: relative;
        z-index: 1;
		
		flex: 0 0 46% !important;
		width: 46% !important;
		height: 100% !important;

		display: flex !important;

		justify-content: flex-start !important;
		align-items: flex-end !important;

		overflow: visible !important;
    }

    /* El texto queda totalmente por encima y no se oscurece */
    .equipo-core-1 .slider-text-side {
        position: relative !important;
        z-index: 3 !important;
		width: 100% !important;
    }
	
	.equipo-core-1 .slider-image-side img {
		display: block;

		width: 96% !important;
		height: 94% !important;

		margin-left: 0 !important;
		margin-right: auto !important;

		object-fit: contain !important;
		object-position: left bottom !important;

		transform: translate(-8px, 18px);

		/* Fundido hacia el texto + fundido inferior más visible */
		-webkit-mask-image:
			linear-gradient(
				to right,
				#000 0%,
				#000 72%,
				rgba(0,0,0,0.85) 82%,
				rgba(0,0,0,0.45) 92%,
				transparent 100%
			),
			linear-gradient(
				to bottom,
				#000 0%,
				#000 65%,
				rgba(0,0,0,0.85) 75%,
				rgba(0,0,0,0.55) 84%,
				rgba(0,0,0,0.25) 92%,
				transparent 100%
			);

		mask-image:
			linear-gradient(
				to right,
				#000 0%,
				#000 72%,
				rgba(0,0,0,0.85) 82%,
				rgba(0,0,0,0.45) 92%,
				transparent 100%
			),
			linear-gradient(
				to bottom,
				#000 0%,
				#000 65%,
				rgba(0,0,0,0.85) 75%,
				rgba(0,0,0,0.55) 84%,
				rgba(0,0,0,0.25) 92%,
				transparent 100%
			);

		-webkit-mask-composite: source-in;
		mask-composite: intersect;
	}

}


/*Ecosistema origen - Equipo core*/



/* TABLET */
@media (min-width: 700px) and (max-width: 1024px){

    .cita-imagen-wrap {
        position: relative !important;
        overflow: visible !important;
        min-height: 320px !important;
        display: flex !important;
        align-items: flex-end !important;
    }

    .img_cita {
        position: absolute !important;
        left: 0 !important;
        bottom: 0 !important;

        width: 150% !important;
        /*max-width: none !important;*/
        height: auto !important;

        margin: 0 !important;
        z-index: 2;
    }

    .img_cita .elementor-widget-container {
        width: 100% !important;
        overflow: visible !important;
    }

    .img_cita img {
        width: 100% !important;
        height: auto !important;
        /*max-width: none !important;*/

        display: block !important;

        object-fit: contain !important;
        object-position: left bottom !important;
    }
}
/*Ecosistema origen - Equipo core*/


/*Ofertas de empleo IMPORTANTE: LA CAPA CONTENEDORA DEL SHORCODE TIENE QUE TENER EN EL ID ofertas_empleo_grid*/




#ofertas_empleo_grid .space-100 {
  height: 50px;
}

#ofertas_empleo_grid .jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
}

#ofertas_empleo_grid .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

#ofertas_empleo_grid .card.open .image-container {
  position: relative;
  height: 200px;
  border-radius: 5px;
  overflow: hidden;
}

#ofertas_empleo_grid .card img {
  width: 470px;
  height: 265px;
  border-radius: 5px;
  object-fit: cover;
  display: block;
}

#ofertas_empleo_grid .card.open .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 5px;
  pointer-events: none;
}

#ofertas_empleo_grid .card.open:hover .overlay {
  opacity: 1;
  pointer-events: auto;
}

#ofertas_empleo_grid .card p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 16px;
  font-size: 15px;
  text-align: left;
}

#ofertas_empleo_grid .card .status-text {
  color: #FDFDFD;
  font-family: "Space Grotesk";
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
}

#ofertas_empleo_grid .card .position-title {
  color: #FDFDFD;
  font-family: "Space Grotesk";
  font-size: 16px;
  font-weight: 400;
  margin-top: 0;
}

#ofertas_empleo_grid .primary-button-job {
  display: inline-flex;
  height: 37px;
  padding: 14px 32px;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 2px solid #FFF;
  background: linear-gradient(261deg, rgba(255,255,255,0.2) -293%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #FFF;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: visible;
  width: auto;
}*/


.txt_bienvenidos h1 {
    font-size: 70px;
}

.fondo-degradado{
  position: relative;
  overflow: hidden;
}

.fondo-degradado::after{
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 220px;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.05) 55%,
    rgba(0,0,0,0.35) 80%,
    #000 100%
  );

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

@media (max-width: 1024px) {
  #ofertas_empleo_grid .jobs-grid { grid-template-columns: 1fr; }
}

@media(max-width:768px){
  #ofertas_empleo_grid .card.open .image-container { width: 100%; height: auto; aspect-ratio: 470 / 265; }
  #ofertas_empleo_grid .card img { width: 100%; height: auto; aspect-ratio: 470 / 265; }
  
  
	.txt_bienvenidos h1 {
		font-size: 35px;
	}
}

/* --- ESTADO CERRADO (Gris) --- */

#ofertas_empleo_grid .card .image-container {
  position: relative;
  width: 100%; 
  max-width: 450px;
  height: 265px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #333; /* Fondo oscuro para resaltar el gris */
}

#ofertas_empleo_grid .card img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  display: block;
  /* Aplicamos el filtro de gris por defecto */
  filter: grayscale(100%);
  opacity: 0.7; /* Opcional: la hace un poco más oscura si está cerrada */
  transition: all 0.5s ease;
}

/* --- ESTADO ABIERTO (Color) --- */

/* Cuando la tarjeta tiene la clase .open, la imagen cobra vida */
#ofertas_empleo_grid .card.open img {
  filter: grayscale(0%);
  opacity: 1;
}

/* El overlay solo funciona si está .open, como ya tenías */
#ofertas_empleo_grid .card.open .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 5px;
  pointer-events: none;
}

#ofertas_empleo_grid .card.open:hover .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* --- TEXTOS --- */

#ofertas_empleo_grid .card p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 16px;
  font-size: 15px;
  text-align: left;
}

/* Si la tarjeta está cerrada, podemos atenuar los textos también (Opcional) */
#ofertas_empleo_grid .card:not(.open) .position-title {
  opacity: 0.5;
}

/*Ofertas de empleo*/

/* RESPONSIVE - AJUSTES HERO / CABECERA CON IMAGEN */

/* RESPONSIVE EQUIPO CORE */

@media (max-width: 768px) {

  .equipo-core-1 {
    padding: 30px 0 !important;
  }

  .equipo-core-1 .origen-viewport {
    height: auto !important;
    min-height: 620px !important;
    align-items: flex-start !important;
  }

  .equipo-core-1 .origen-track {
    width: 100% !important;
    height: auto !important;
  }

  .equipo-core-1 .origen-card {
    display: none !important;
  }

  .equipo-core-1 .origen-card.active {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 620px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
  }

  .equipo-core-1 .slider-container {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 620px !important;
    
  }

  .equipo-core-1 .slider-image-side {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
  }

  .equipo-core-1 .slider-image-side img {
    width: 100% !important;
    /*height: 70% !important;*/
    object-fit: cover !important;
    object-position: center top !important;
	
	transform: none !important;

    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .equipo-core-1 .slider-container::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      to top,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.9) 28%,
      rgba(0,0,0,0.45) 65%,
      rgba(0,0,0,0) 100%
    );
  }

  .equipo-core-1 .slider-text-side {
    position: relative !important;
    z-index: 3 !important;
    margin-top: auto !important;
    padding: 0 24px 55px 24px !important;
    justify-content: flex-end !important;
    text-align: left !important;
  }

  .equipo-core-1 .slider-subtitle {
    font-size: 24px !important;
    line-height: 1.05 !important;
    margin-bottom: 8px !important;
  }

  .equipo-core-1 .slider-title {
    font-size: 20px !important;
    line-height: 100% !important;
    margin-bottom: 14px !important;
  }

  .equipo-core-1 .slider-description,
  .equipo-core-1 .slider-text-side p {
    font-size: 16px !important;
    line-height: 18px !important;
    color: #d0d0d0 !important;
    margin: 0 !important;
  }

  .equipo-core-1 .origen-puntos {
    margin-top: 18px !important;
  }
}

.img_cita {
  width: 100%; 
  height: auto;
  display: block;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}


/*Meu horizontal*/
.site-navigation .menu > li > a {
    transition: transform .3s ease;
    display: inline-block;
}

.site-navigation .menu > li > a:hover {
    color: #4AB9FE;
}


/*Rev slider home*/
.origen-revslider rs-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5 !important;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,1) 100%
  );
}

.origen-revslider rs-layer,
.origen-revslider rs-static-layers,
.origen-revslider .tp-caption {
  position: relative;
  z-index: 20 !important;
}


@media (max-width: 767px) {

  .elementor-element-264716e .e-filter {
    display: flex !important;
    flex-direction: column !important;
    max-width: 260px !important;
    margin: 0 auto !important;
    position: relative !important;
  }

  .elementor-element-264716e .e-filter-item {
    display: none !important;
  }

  .elementor-element-264716e .e-filter-item:first-child {
    display: block !important;
    padding: 12px 16px !important;
    border: 1px solid #333 !important;
    border-radius: 6px !important;
    color: #fff !important;
    background: #000 !important;
    text-align: left !important;
  }

  .elementor-element-264716e .e-filter::after {
    content: "Filtrar ▾";
    padding: 12px 16px;
    margin-top: 8px;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    background: #000;
    font-size: 14px;
    text-align: center;
  }

  .elementor-element-264716e .e-filter:hover .e-filter-item:not(:first-child) {
    display: block !important;
    padding: 12px 16px !important;
    border: 1px solid #333 !important;
    border-top: 0 !important;
    background: #000 !important;
    color: #fff !important;
    text-align: left !important;
  }
}


.filtro-mobile{
    display:none;
}

@media (max-width:767px){

    .filtro-mobile{
        display:block;
        margin:0px 0;
    }

    .filtro-mobile select{
        width:100%;
        height:48px;
        padding:0 10px 0 10px;
        background-color:#000 !important;
        color:#fff !important;
        border:1px solid #000 !important;
        border-radius:6px;
        font-size:15px;
        font-weight:500;
        appearance:none;
        -webkit-appearance:none;

        background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 6L8 10.5 12.5 6' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
        background-repeat:no-repeat !important;
        background-position:right 16px center !important;
    }

    .filtro-mobile select option{
        background:#000;
        color:#fff;
    }
	
	div#equipo-core {
		padding-left: 10px !important;
	}
}


.gradient-boldV {
    font-size: 46px ;
    line-height: 52px;
    display: inline-block;
    font-weight: 700 !important;
    background: linear-gradient(
        90deg,
        var(--gradient-start) 0%,
        var(--gradient-middle) 50%,
        var(--gradient-end) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	background-clip: text;
    color: transparent;
}  

.gradient-regularV {
  color: #FFFFFF;
  font-weight: 400 ;
  font-size: 58px ;
  line-height: 63px;

}

.valores-texto-normal {
  max-width: 720px;
  font-size: 34px;
  line-height: 40px;
  font-weight: 400 !important;
  color: #FDFDFD;
  text-align: left;
  margin-top: 15px !important;

  box-sizing: border-box;
}

/* TABLET */

@media (min-width: 768px) and (max-width: 1024px) {
	
	
	  #valores .valores-texto-normal{
		text-align: left !important;
		width: 100%;
		max-width: none;
		margin: 0 !important;
		font-size: 24px !important;
		line-height: 28px !important;
	  }
	  
	  .gradient-regularV {
		font-size: 34px;
		line-height: 40px;
		font-weight: 400;
	  }
	  
	  .gradient-boldV{
		font-size: 34px;
		line-height: 40px;
		font-weight: 700;
	  }
}

/* MÓVIL */

@media (max-width: 767px) {
  .valores-encabezado {
    font-size: 58px;
    line-height: 55px;
    
  }

  .valores-texto-normal {
    font-size: 22px  !important;
    line-height: 26px !important;
    font-weight: 400;
  }
  
  .gradient-boldV, .gradient-regularV {
		font-size: 34px;
		line-height: 40px;
	  }
}

.servicio-texto-azul
{
	font-weight:600;
}



/* Contenedor general de la cita */
.fondo-citaorigen {
    position: relative;
    overflow: hidden;

    background-image: url("https://cdnweb.servicios.origen.bio/media/2026/08/card-citas.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {

    .fondo-citaorigen {
        position: relative !important;
        overflow: hidden !important;

        min-height: 320px;

        display: flex !important;
        align-items: stretch !important;
    }

    /* Imagen: independiente y por encima del fondo */
    .fondo-citaorigen .cita-imagen-tablet {
        position: absolute !important;

        left: 0 !important;
        bottom: 0 !important;

        width: 40% !important;
        height: 100% !important;

        z-index: 2 !important;

        pointer-events: none;
        overflow: visible !important;
    }

    
	
	/*Texto encima de imagen*/
	.cita-txt-tablet 
	{
		z-index:10 !important;
	}

    .fondo-citaorigen .img_cita img {
        width: 80% !important;
        height: 100% !important;

        object-fit: contain !important;
        object-position: left bottom !important;

        display: block !important;
		
		transform: translateX(-20px);
    }


    /* ==========================================================
       CONTENIDO DE TEXTO
       ========================================================== */

    .fondo-citaorigen .cita-texto {
        position: relative !important;

        width: 68% !important;

        margin-left: 32% !important;

        padding: 35px 35px 35px 20px !important;

        z-index: 3 !important;

        box-sizing: border-box;
    }
}
/* TABLET */
@media (min-width: 850px) and (max-width: 1024px) {
    .fondo-citaorigen .img_cita,
    .fondo-citaorigen .img_cita .elementor-widget-container {
		width: 48% !important;
        height: 90% !important;
    }
}

/* IPAD */	
@media (max-width: 849px) {
    .fondo-citaorigen .img_cita,
    .fondo-citaorigen .img_cita .elementor-widget-container {
		width: 80% !important;
        height: 90% !important;
    }
}

/* IPAD */	
@media (max-width: 467px) {
    .fondo-citaorigen .img_cita,
    .fondo-citaorigen .img_cita .elementor-widget-container {
		width: 100% !important;
    }
}

/* TABLET PEQUEÑA / IPAD VERTICAL */
@media (min-width: 468px) and (max-width: 767px) {

    .fondo-citaorigen .cita-imagen-tablet {
        height: 450px !important;
    }

}


/****/
/* Galería de escritorio */
.galeria-solo-escritorio {
  display: block;
}

/* Galería alternativa para tablet y móvil */
.galeria-tablet-movil {
  display: none;
}

@media (max-width: 1024px) {
  .galeria-solo-escritorio {
    display: none !important;
  }

  .galeria-tablet-movil {
    display: block !important;
    width: 100%;
  }
}

@media (max-width: 1024px) {

  .galeria-movil-full,
  .galeria-movil-full > .e-con-inner,
  .galeria-movil-full .elementor-widget,
  .galeria-movil-full .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }

  .galeria-movil-full {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .galeria-movil-full img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    margin: 0;
  }

}


.menu-acordeon-pie{
    width:100% !important;
    max-width:100% !important;
    flex:0 0 100% !important;
}

.menu-acordeon-item{
    width:100%;
}

.menu-acordeon-trigger{
    width:100%;
}	


.contacto-footer{
    margin:0;

    color:rgba(253, 253, 253, 0.8);
    font-family:'Space Grotesk',sans-serif;
    font-size:13px;
    font-weight:400;
    line-height:26px;
    letter-spacing:-0.39px;
}

.contacto-footer a{
    color:#FDFDFD;
    text-decoration:none;
}

.contacto-footer a:hover{
    color:#FDFDFD;
    text-decoration:none;
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (min-width:768px) and (max-width:1024px){

    .contacto-footer{
        font-size:16px;
        line-height:18px;
        font-weight:400;
    }

}

/* ==========================================================================
   MÓVIL
   ========================================================================== */

@media (max-width:767px){

    .contacto-footer{
        font-size:14px;
        line-height:16px;
        font-weight:400;
    }
	
	
	/*Hamburgusesa en movil*/
	.site-navigation-toggle-holder
	{
		padding: 8px 0px !important;
	}

}

.extracto-3-lineas{
    width:100%;
    margin:0;

    color:#FDFDFD;
    font-family:'Space Grotesk',sans-serif;
    font-size:16px;
    line-height:1.4;
    font-weight:400;
    text-align:left;
}

.extracto-3-lineas-texto,
.extracto-3-lineas-link{
    display:inline;
}

.extracto-3-lineas-link{
    margin-left:4px;

    color:#FDFDFD !important;
    font-size:inherit;
    font-weight:400;
    text-decoration:underline !important;

    white-space:nowrap;
}

.servicios-relacionados-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {

    .servicios-relacionados-lista {
        gap: 10px;
    }
	
	/*Hamburgusesa en movil*/
	.site-navigation-toggle-holder
	{
		padding: 0px !important;
	}

}

.filtro-blog .e-filter-item[aria-pressed="true"] {
    border: none !important;
}

.titulo-legal {
    color: #F8F8F8;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: 68px;
    text-align: center;
    margin: 0;
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    .titulo-legal {
        font-size: 58px;
        line-height: 68px;
        text-align: center;
    }
}

/* MÓVIL */
@media (max-width: 767px) {
    .titulo-legal {
        font-size: 46px;
        line-height: 52px;
        text-align: left;
    }
}

body.page-id-367,
body.page-id-363{
    padding: 0 !important;
}

/* =========================================
   ESCRITORIO - template de 2 columnas, como valores aplicar estilo bloque_dos_col INTERIORES
   ========================================= */

/*@media (min-width: 1025px) {

    body:not(.home) .bloque_dos_col {
        width: calc(100% - 40px) !important;
        max-width: 1440px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body:not(.home) .bloque_dos_col > .elementor-widget-template {
        width: 100% !important;
        max-width: 100% !important;
    }

    body:not(.home) .bloque_dos_col .elementor-template {
        width: 100% !important;
        max-width: 100% !important;
    }

    body:not(.home) .bloque_dos_col .elementor-4645 {
        width: 100% !important;
        max-width: 100% !important;
    }
	
	//HOME
    body.home .bloque_dos_col {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}*/



@media (min-width: 1025px) {

    .bloque_dos_col {
        width: 100% !important;
        max-width: 1440px !important;
        margin-left: auto !important;
        margin-right: auto !important;

        padding-left: 65px !important;
        padding-right: 65px !important;
        box-sizing: border-box;
    }

    .bloque_dos_col > .elementor-widget-template {
        width: 100% !important;
        max-width: 100% !important;
    }

    .bloque_dos_col .elementor-template {
        width: 100% !important;
        max-width: 100% !important;
    }

    .bloque_dos_col .elementor-4645 {
        width: 100% !important;
        max-width: 100% !important;
    }

}


.isotipo_pie img {
    width: 53px;
}


/* Espacio para elpadding 20 para la ficha del post*/
/* =========================================
   VALORES BASE
   Menos de 1324px
========================================= */

.p85,
.p20,
.p10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}


/* =========================================
   ESCRITORIO GRANDE
   1324px o más
========================================= */



@media (min-width: 1324px) {
	
	
    .p85 {
        padding-left: 85px !important;
        padding-right: 85px !important;
    }

    .p20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .p10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (min-width: 1025px) {
	.contenedor_gris{ background-color: #1A1A1A;}
}
/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {
	.contenedor_gris{ background-color: #000;}
	
    .p85,
    .p20,
    .p10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
	
	.isotipo_pie img {
		width: 45px;
	}
	
}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 767px) {

    .p85,
    .p20,
    .p10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
	
	.isotipo_pie img {
		width: 45px;
	}
}

/* FONDO CONTACTO*/

.contacto-video-wrapper {
    position: relative !important;
    overflow: hidden !important;
}

.contacto-video-wrapper .elementor-background-video-container {
    z-index: 0 !important;
}

/* Degradado encima del vídeo */
.banner-media-overlay-contacto {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    z-index: 1 !important;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        transparent 0,
        transparent calc(100% - 50px),
        rgba(0, 0, 0, 0.25) calc(100% - 40px),
        rgba(0, 0, 0, 0.55) calc(100% - 25px),
        rgba(0, 0, 0, 0.85) calc(100% - 10px),
        #000 100%
    ) !important;
}

/* Formulario por encima, sin degradarse */
.contacto-formulario {
    position: relative !important;
    z-index: 2 !important;
}

/* TABLET */
@media (max-width: 1440px) {
	.contacto-video-wrapper
    .elementor-background-video-hosted {
        object-fit: cover !important;
        object-position: center top !important;

        width: 100% !important;
        height: 100% !important;

        top: 0 !important;
        left: 0 !important;

        transform: none !important;
    }
}

@media (max-width: 1024px) {

    .contacto-video-wrapper
    .elementor-background-video-hosted {
        object-fit: cover !important;
        object-position: center top !important;

        width: 100% !important;
        height: 100% !important;

        top: 0 !important;
        left: 0 !important;

        transform: none !important;
    }

}


/* MÓVIL */
@media (max-width: 767px) {

    .contacto-video-wrapper
    .elementor-background-video-hosted {
        object-fit: cover !important;
        object-position: center top !important;

        width: 100% !important;
        height: 100% !important;

        top: 0 !important;
        left: 0 !important;

        transform: none !important;
    }

}


/*Ocultar padding top en las páginas con main*/
.e-parent, .e-con-inner 
{
    padding-top: 0px !important;
}

.extracto-completo-link {
    color: #fff;
    text-decoration: none;
}

.extracto-completo-texto {
    color: #fff;
}

/*.extracto-completo-link:hover .extracto-completo-texto {
    text-decoration: underline;
    text-underline-offset: 4px;
}*/

.origen-taxonomia-post,
.origen-taxonomia-post-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #54595F;
}

.origen-taxonomia-post-link {
    text-decoration: none;
}

.origen-taxonomia-post-link:hover {
    color: #54595F;
    text-decoration: none;
    /*text-underline-offset: 3px;*/
}



/* -----------------------------
  VIDEO FONDO SINGLE SERVICIO
----------------------------- */

.fondo-servicio-dinamico {
    position: relative !important;

    width: 100%;
    min-height: 450px;

    overflow: hidden !important;
    box-sizing: border-box;

    background: #000;

    /*
     * MISMO ESPACIADO VERTICAL QUE ÁREAS
     */
    padding: 150px 20px 80px 20px !important;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ==========================================================
   VÍDEO DE FONDO
   ========================================================== */

.fondo-servicio-dinamico .video-fondo-widget {
    position: absolute !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 1 !important;

    pointer-events: none;
}


.fondo-servicio-dinamico
.video-fondo-widget
.elementor-widget-container {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}


.fondo-servicio-dinamico .origen-video-fondo-acf {
    position: absolute;

    inset: 0;

    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center;

    margin: 0;
    padding: 0;
}


/* ==========================================================
   DEGRADADO
   Igual que ÁREAS
   Funciona tanto con imagen como con vídeo
   ========================================================== */

.fondo-servicio-dinamico::after {
    content: "";

    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.10) 0%,
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0.40) 70%,
        rgba(0,0,0,0.75) 85%,
        #000 100%
    );

    z-index: 2;

    pointer-events: none;
}


/* ==========================================================
   CONTENIDO
   Siempre encima del vídeo / imagen / degradado
   ========================================================== */

.fondo-servicio-dinamico
> .elementor-element:not(.video-fondo-widget) {
    position: relative !important;

    z-index: 3 !important;
}


/* ==========================================================
   TABLET
   Igualamos el comportamiento de ÁREAS
   ========================================================== */

@media (max-width: 1024px) {

    .fondo-servicio-dinamico {
        min-height: 500px;

        padding:
            150px
            16px
            24px
            16px !important;

        justify-content: flex-start;
    }

}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width: 767px) {

    .fondo-servicio-dinamico {
        min-height: 400px;

        padding:
            150px
            20px
            24px
            20px  !important;

        justify-content: flex-start;
    }

}

/* -----------------------------
  VIDEO FONDO SINGLE SERVICIO
----------------------------- */


.bloque_entrada h2 {
    color: #fff;
    display: block;

    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;

    margin: 32px 0 12px 0;
}

.bloque_entrada h3 {
    color: #fff;
    display: block;

    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;

    margin: 28px 0 12px 0;
}

.bloque_entrada p {
    color: #ddd;
    display: block;

    font-family: "Space Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

    margin: 0 0 20px 0;
}

.bloque_entrada ul {
    margin: 0 0 24px 0;
    padding-left: 1.2em;
    list-style: disc;
}

.bloque_entrada ul li {
    margin: 0 0 16px;
    line-height: 1.5;
}

.bloque_entrada ul li a {
    color: #fff;
}




.distanciaBloque {
    min-height: 100px !important;
}

.distanciaFin {
    min-height: 150px !important;
}

/* Portátil */
@media (max-width: 1324px) {
    .distanciaBloque {
		min-height: 100px !important;
	}

	.distanciaFin {
		min-height: 150px !important;
	}
}

/* Tablet */
@media (max-width: 1024px) {
    .distanciaBloque {
		min-height: 90px !important;
	}

	.distanciaFin {
		min-height: 120px !important;
	}
	
	.txt_nuestro_equipo_core p{
		margin-block-end: 0px;
	}
}

/* Móvil */
@media (max-width: 767px) {
    .distanciaBloque {
		min-height: 50px !important;
	}

	.distanciaFin {
		min-height: 100px !important;
	}
}


/*Áreas de desarrollo y Ecosistema*/
.page-id-2868 .elementor-element-e362cea, .page-id-2945 .elementor-element-202ab95 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.single .banner-content-box
{
	z-index:5;
}

.servicio-texto-azul
{
	letter-spacing: 0px !important;
}


/*Cargando video del rev-slider*/
.video-loader-custom {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;

    z-index: 9999 !important;

    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    color: #fff !important;
    font-size: 16px !important;

    opacity: 1 !important;
    visibility: visible !important;

    transition: opacity .35s ease !important;

    pointer-events: none !important;
}


/* Cuando el vídeo ya está reproduciéndose */
.video-loader-custom.video-loaded {
    opacity: 0 !important;
    visibility: hidden !important;
}


/* Spinner */
.video-loader-spinner {
    width: 20px;
    height: 20px;

    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;

    border-radius: 50%;

    animation: videoLoaderSpin .8s linear infinite;
}


@keyframes videoLoaderSpin {

    to {
        transform: rotate(360deg);
    }

}
/*Cargando video del rev-slider*/

/*Listado de noticias*/
.noticias-grid .elementor-loop-container,
.noticias-grid .elementor-grid {
    column-gap: 0px !important;
    row-gap: 0px !important;
}


@media (min-width: 468px) and (max-width: 640px) {

    sr7-module[data-alias="home-modificado-12"]
    sr7-slide[data-key="96"] h1 {
        font-size: 34px !important;
        line-height: 40px !important;
		top: 100px !important;
    }

    sr7-module[data-alias="home-modificado-12"]
    sr7-slide[data-key="96"] sr7-txt {
        font-size: 14px !important;
        line-height: 16px !important;
        width: 420px !important;
		top: 140.125px !important;
    }

    sr7-module[data-alias="home-modificado-12"]
    sr7-slide[data-key="96"] .primary-button-slider {
        font-size: 13px !important;
        line-height: 16px !important;
        padding: 7px 18px !important;
		top: 185.125px !important;
    }
}

/* 641px - 721px */
@media (min-width: 641px) and (max-width: 721px) {

    sr7-module[data-alias="home-modificado-12"]
    sr7-slide[data-key="96"] h1 {
        top: 125px !important;
		font-size: 46px !important;
        line-height: 56px !important;
    }

    sr7-module[data-alias="home-modificado-12"]
    sr7-slide[data-key="96"] sr7-txt {
        top: 180px !important;
		font-size: 14px !important;
        line-height: 16px !important;
    }

    sr7-module[data-alias="home-modificado-12"]
    sr7-slide[data-key="96"] .primary-button-slider {
        top: 225px !important;
		font-size: 13px !important;
        line-height: 16px !important;
        padding: 7px 18px !important;
    }
}

@media (min-width: 845px) and (max-width: 912px) {

    sr7-module[data-alias="home-1-1"]
    #primary-button {
        left: 49px !important;
    }

}

.img_fnd_blog {
	background-position: center top !important;
	background-size: 100% auto !important;
}