/* --------------------- Generales -------------------- */
html {
    scroll-behavior: smooth;
}

.card {
    border-radius: 20px;
}

/* ------------- Tarjetas de Seminarios / Nosotros -------- */
.cardLink {
    text-decoration: none;  /* Sin subrayado */
    color: inherit;         /* Mantiene el color original del texto */
    display: block;         /* Permite envolver la card completa */
}

.cardLink:hover {
    text-decoration: none;
}

.simple-linear {
    background: linear-gradient(#000000 , #171717);
}

/* --------- Color de fondo --------- */
.colorBody{
    background-color: #000000;
    transition: background-color 0.5s;
}

.colorBodySwap{
    background-color: #EFEFEF;
    transition: background-color 0.5s;
}

/*^^^^^^^^^^^^^^^^^^^^^SECTION_1^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.hero {
    position: relative;
    width: 100vw;
    height: calc(100vh + 80px);
    min-height: 600px;
    overflow: hidden;
    background-color: #000000;
}

/* --------------- Video de fondo --------------------- */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* ---------- imagen estatica final ------------------- */

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------ Contenido --------------------- */
.hero-content {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    z-index: 10;
    opacity: 0; /* oculto mientras el video corre */
    transition: opacity 1s ease 0.3s;
    text-align: center;
    padding: 0% 0% 80px 0%;
}

.mini_titulo_home_sec1{
    color: #E3D6CB;
    text-transform: uppercase;  
    font-size: 20px;
    font-family: "KumbhSans-Regular", sans-serif;
    font-weight: 500;
    text-align: center;
    margin: 0%;
    padding: 0% 0% 8px 0%;
}

.titulo_home_sec1{
    color: #E3D6CB;
    font-size: 60px;
    font-family: "Hector-Regular", sans-serif;
    text-align: center;
    line-height: 1.1;
    margin: 0%;
    padding: 0% 0% 24px 0%;
}

.subtitulo_home_sec1{
    color: #EFEFEF;
    font-size: 24px;
    font-family: "KumbhSans-Regular", sans-serif;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    margin: 0%;
    padding: 0% 15% 40px 15%;
}

.btn_primario_rebrnd {
    display: inline-block;
    background-color: #FF0000;
    color: #FFFFFF;
    border-radius: 25px;
    width: 267px;
    text-align: center;
    font-size: 16px;
    font-family: "KumbhSans-Regular", sans-serif;
    font-weight: 400;
    padding: 12px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn_primario_rebrnd:hover {
    background-color: #FFFFFF;
    color: #FF0000;
    border: 1px solid #FF0000;
}

/* ----------- Pantallas grandes --------------- */
@media only screen and (max-width: 1500px){
    .hero-content {
        max-width: 1088px;
        padding: 0% 0% 80px 0%; 
    }

    .mini_titulo_home_sec1{
        font-size: 18px;
    }

    .titulo_home_sec1{
        font-size: 46px;
    }

    .subtitulo_home_sec1{
        font-size: 20px;
    }

}

/* ----------- Pantallas medianas --------------- */
@media only screen and (max-width: 1200px){
    .hero-content {
        max-width: 80%;
        padding: 0% 0% 80px 0%; 
    }
    
}

/* --------- Responsivo - Pantallas peques ------- */

@media (max-width: 660px) {
   
    .bg-video {
        display: none;
    }

    .hero-content {
        padding: 0% 0% 40px 0%;
    }

    .mini_titulo_home_sec1{
        font-size: 14px;
    }

    .titulo_home_sec1{
        font-size: 32px;
    }

    .subtitulo_home_sec1{
        font-size: 20px;
        padding: 0% 0% 40px 0%;
    }

}

@media (min-width: 691px) {
  .hero-img {
    display: none;
  }
}


/*^^^^^^^^^^^^^^^^^^^^^End_SECTION_1^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/


/*^^^^^^^^^^^^^^^^^^^^^SECTION_2^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.carrusel_wrapper_sec2 {
    width: 100%;
    margin: 100px 0% 0% 0%;
    position: relative;
}

.contenedor_carrusel_sec2 {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 18px;
    padding-bottom: 0%;
    scroll-padding-left: calc((100vw - 1400px) / 2);
    scroll-padding-right: calc((100vw - 1400px) / 2);
    scroll-behavior: smooth;
}

.spacer_seccion2 {
    flex: 0 0 calc((100vw - 1440px) / 2);
    pointer-events: none;
}

.spacer_end_sec2 {
    flex: 0 0 calc((100vw - 1455px) / 2);
}

.contenedor_carrusel_sec2::-webkit-scrollbar {
    display: none;
}

/* ----------------- Textos --------------- */
.seccion_herramientasCardSec2 {
    font-size: 14px;
    font-family: "KumbhSans-Regular", sans-serif;
    font-weight: 400;
    color: #E3D6CB;
    padding: 0% 0% 16px 0%;
    margin: 0%;
    width: 100%;
}

.titulo_herramientasCardSec2 {
    font-size: 24px;
    font-family: "Hector-Regular", sans-serif;
    color: #E3D6CB;
    padding: 0%;
    line-height: 1.1;
    margin: 0%;
    width: 100%;
}

/* ---------- Card principal de las herramientas --------------*/
.cardFondo {
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  border-radius: 20px;
}

/* Imagen de fondo en pseudo-elemento */
.cardFondo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#000000 , #171717);
  background-image: url("../../img/home/home_2025/calculos/herramientas-de-lubricacion-interlub.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease; /* transición suave */
  z-index: 1;
}

.cardHerramientasPrincipal {
  position: relative;
  z-index: 2;
}

.cardFondo:hover::before {
  transform: scale(1.15);
}

/* ---------------- Card contenedor ----------------- */
.cuerpoCardSec2 {
    flex: 0 0 359px;
    height: 450px;            /* puedes ajustar si ocupas mas alto */
    scroll-snap-align: start;
    text-align: left;
    border-radius: 15px;
    padding: 0;
    display: flex;
    background: linear-gradient(#000000 , #171717);
    text-decoration: none;
    color: inherit;
}

.cardSec2_wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 15px;
    border: 1px solid #4C4C4C;
}

/* Bloque de textos (50%) */
.cardHerramientas {
    flex: 1 1 50%;
    padding: 40px 40px 0% 40px;
    display: flex;
    flex-direction: column;
}

/* Bloque de imagen (50%) */
.animacionWrapperSec2 {
    flex: 1 1 50%;
    width: 100%;
}

.zoomFrame {
    width: 100%;
    height: 100%;  /* puedes ajustar */
    overflow: hidden;
    position: relative;
}

.img_card_home_sec2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.zoomFrame:hover .img_card_home_sec2 {
    transform: scale(1.15);
}

/* ---------- Estilos para las flechas personalizadas ------------- */

.contenedor_custom_arrows_sec2 {
    max-width: 1400px;
    width: 100%; 
    padding: 0% 0% 24px 0%;
}

.custom-prev-sec2 {
    cursor: pointer;
    background-color: #2C2C2C;
    border: none;
    padding: 10px 16px;
    margin: 0% 10px 0% 0%;
    border-radius: 100%;
}

.custom-next-sec2{
    cursor: pointer;
    background-color: #4C4C4C;
    border: none;
    padding: 10px 16px;
    margin: 0% 0% 0% 10px;
    border-radius: 100%;
}

.custom-next-sec2,
.custom-prev-sec2 {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ----- Hover en boton -----------*/
.hover-normal-sec2:hover {
    background-color: #808080 !important;
}

.hover-normal-sec2:hover svg path {
    stroke: #F7F7F7 !important;
}

/* El color del stroke lo controlara  el archivo JS */
.custom-prev-sec2 svg path,
.custom-next-sec2 svg path {
    transition: stroke 0.2s ease;
}


/* --------- Responsivo - Pantallas grandes ------- */
@media (max-width: 1500px){

    .contenedor_carrusel_sec2 {
        scroll-padding-left: calc((100vw - 1088px) / 2);
        scroll-padding-right: calc((100vw - 1088px) / 2);
    }

    .contenedor_custom_arrows_sec2 {
        max-width: 1088px;
        width: 100%;
    }

    .spacer_seccion2 {
        flex: 0 0 calc((100vw - 1118px) / 2);
    }

    .spacer_end_sec2 {
        flex: 0 0 calc((100vw - 1128px) / 2);
    }

    .contenedor_custom_arrows_sec2 {
        padding: 0% 0% 16px 0%;
    }

    .titulo_herramientasCardSec2 {
        font-size: 20px;
    }

    .cardFondo {
        padding: 24px;
    }

    .cardHerramientas {
        padding: 24px;
    }

    .cuerpoCardSec2 {
        flex: 0 0 278px;
        height: 350px;
    }
    
    .cardHerramientas {
        padding: 24px 24px 0% 24px;
    }

}

@media (max-width: 1200px) {

    .contenedor_custom_arrows_sec2 {
        width: 80%;
    }

    .spacer_seccion2 {
        flex: 0 0 calc((100vw - 80px) / 2);
    }

    .spacer_end_sec2 {
        flex: 0 0 calc((100vw - 83vw) / 2);
    }

    .contenedor_carrusel_sec2 {
        scroll-padding-left: calc((100vw - 80vw) / 2);   /* 10% a cada lado */
        scroll-padding-right: calc((100vw - 80vw) / 2);
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 950px) {

    .contenedor_carrusel_sec2 {
        scroll-padding-left: calc((100vw - 730px) / 2);
        scroll-padding-right: calc((100vw - 730px) / 2);
    }

    .spacer_seccion2 {
        flex: 0 0 calc((100vw - 755px) / 2);
    }

    .spacer_end_sec2 {
        flex: 0 0 calc((100vw - 765px) / 2);
    }

    .contenedor_custom_arrows_sec2 {
        max-width: 730px;
        width: 100%;
    }

}

@media (max-width: 768px) and (min-width: 691px) {

    .contenedor_custom_arrows_sec2 {
        width: 90%;
    }

    .spacer_seccion2 {
        flex: 0 0 calc((100vw - 90vw) / 2);
    }

    .spacer_end_sec2 {
        flex: 0 0 calc((100vw - 95vw) / 2);
    }

    .contenedor_carrusel_sec2 {
        scroll-padding-left: calc((100vw - 90vw) / 2); /* 5% a cada lado */
        scroll-padding-right: calc((100vw - 90vw) / 2);
    }

}

/* ---------- Responsive - Pantallas peques ------------ */
@media (max-width: 690px) {

    .contenedor_custom_arrows_sec2 {
        max-width: 369px;
        width: 100%;
    }

    .spacer_seccion2 {
        flex: 0 0 calc((100vw - 389px) / 2);
    }

    .spacer_end_sec2 {
        flex: 0 0 calc((100vw - 399px) / 2);
    }

    .contenedor_carrusel_sec2 {
        scroll-padding-left: calc((100vw - 369px) / 2);
        scroll-padding-right: calc((100vw - 369px) / 2);
        margin-right: -6px;
    }

    .carrusel_wrapper_sec2 {
        margin: 40px 0% 0% 0%;
    }
}

/*^^^^^^^^^^^^^^^^^^^^^End_SECTION_2^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

/*^^^^^^^^^^^^^^^^^^^^^SECTION_3^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.contenedorPrincipal_CardSec3 {
    max-width: 1400px;
    width: 100%; 
    margin: 60px auto;
    padding: 0%;
    border-radius: 15px;
}

.cuerpo_CardSec3 {
    position: relative;
    height: 450px;
    border: 1px solid #4C4C4C;
    border-radius: 15px;
    overflow: hidden;
}

/* Imagen de fondo real dentro del HTML */
.imgFondoCardSec3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    background-image: url("../../img/home/home_2025/nosotros/interlub-tambo-cultura-empresarial-1920.webp");
    transition: transform 0.4s ease;
}

.cuerpo_CardSec3:hover .imgFondoCardSec3 {
    transform: scale(1.15);
}

/* Contenido que va encima */
.contenidoCardSec3 {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
}

/* ----------- Texto izquierda ------------ */
.textoCardSec3 {
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.textoCardSec3 h2 {
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 400;
    font-family: "KumbhSans-Regular", sans-serif;
    line-height: 1.1;
    color: #E3D6CB;
    text-transform: uppercase; 
}

.textoCardSec3 p {
    font-size: 40px;
    font-family: "Hector-Regular", sans-serif;
    line-height: 1.2;
    margin: 0%;
    color: #E3D6CB;
}

/* --------- Responsivo - Pantallas grandes ------- */

@media (max-width: 1500px){

    .contenedorPrincipal_CardSec3 {
        max-width: 1088px;
        width: 100%;
        margin: 40px auto;
    }

    .cuerpo_CardSec3 {
        height: 350px;
        min-width: 350px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center; 
    }

    .imgFondoCardSec3 {
        background-image: url("../../img/home/home_2025/nosotros/interlub-tambo-cultura-empresarial-1366.webp");
    }
}

@media (max-width: 1200px){

    .contenedorPrincipal_CardSec3 {
        width: 80%;
    }

    .textoCardSec3 p {
        font-size: 32px;
    }
}


/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 950px){

    .contenedorPrincipal_CardSec3 {
        max-width: 730px;
        width: 100%;
    }

    .cuerpo_CardSec3 {
        height: 350px;
        min-width: 360px;
    }

    .imgFondoCardSec3 {
        background-image: url("../../img/home/home_2025/nosotros/interlub-tambo-cultura-empresarial-tablet.webp");
    }
}

@media (max-width: 768px) and (min-width: 691px) {

    .contenedorPrincipal_CardSec3 {
        width: 90%;
    }

    .cuerpo_CardSec3 {
        height: 350px;
    }

    .textoCardSec3,
    .imagenesCardSec3 {
        flex: 1 1 50% !important;
        max-width: 50% !important;
        height: 100%;
    }

}

/* --------- Responsivo - Pantallas peques ------- */
@media (max-width: 690px) {
    
    .contenedorPrincipal_CardSec3 {
        max-width: 369px;
        width: 100%;
    }

    .imagenesCardSec3 {
        padding: 0% 40px;
        background-color: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .textoCardSec3 {
        padding: 40px 40px 0% 40px;
    }

    .textoCardSec3 p {
        font-size: 24px;
        line-height: 1.1;
    }

    .imagenesCardSec3 {
        height: 50%;
    }

    .imgFondoCardSec3 {
        background-image: url("../../img/home/home_2025/nosotros/interlub-tambo-cultura-empresarial-movil.webp");
    }

}

/*^^^^^^^^^^^^^^^^^^^^^End_SECTION_3^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

/*^^^^^^^^^^^^^^^^^^^^^SECTION_4^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.carrusel_wrapper_sec4 {
    width: 100%;
    position: relative;
}

.contenedor_carrusel_sec4 {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 18px;
    padding-bottom: 0%;
    scroll-padding-left: calc((100vw - 1400px) / 2);
    scroll-padding-right: calc((100vw - 1400px) / 2);
    scroll-behavior: smooth;
}

.spacer_seccion4 {
    flex: 0 0 calc((100vw - 1440px) / 2);
    pointer-events: none;
}

.spacer_end_sec4 {
    flex: 0 0 calc((100vw - 1455px) / 2);
}

.cuerpoCardSec4 {
    flex: 0 0 359px;
    height: auto;
    scroll-snap-align: start;
    text-align: left;
    border-radius: 15px;
    padding: 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* corrige align-items: left; a flex-start */
    transition: background-color 0.3s ease;
    text-decoration: none; /* quita subrayado */
    color: inherit; /* mantiene color del texto */
}

.cardIndustrias {
    padding: 40px;
}

.cardTodasLasIndustrias {
    padding: 40px;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-color: #0F0F0F;
    border: 1px solid #4C4C4C;
    justify-content: center;
    align-items: center;
    display: flex;
}

.imgWrapperSec4 {
    width: 100%;
    height: 100%;
    overflow: hidden;      /* evita que el zoom se salga */
    border-radius: 15px;
    border: 1px solid #4C4C4C;
}

.imgWrapperSec4 img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform .4s ease;
    border-radius: 15px;
}

.cuerpoCardSec4:hover .imgWrapperSec4 img {
    transform: scale(1.15);   /* zoom interno sin aumentar la card */
}


.contenedor_carrusel_sec4::-webkit-scrollbar {
    display: none;
}

/* ----------------- Textos --------------- */
.industriaCardSec4{
    font-size: 24px;
    font-family: "Hector-Regular", sans-serif;
    color: #444444;
    padding: 0%;
    margin: 0%;
    width: 100%;
}

/* -------- Resto de las industrias ---------- */
.VerIndustriaCardSec4 {
    font-size: 24px;
    font-family: "KumbhSans-Regular", sans-serif;
    font-weight: 400;
    color: #444444;
    padding: 0% 0% 40px 0%;
    margin: 0%;
    width: 100%;
    text-align: center;
    line-height: 1.2;
}

.svgCard_VerIndustrias {
    cursor: none;
    display: flex;           /* Asegura centrado interno */
    justify-content: center; /* Centra horizontal */
    align-items: center;
    background-color: transparent;
    border: 4px solid #444444;
    padding: 10px 16px;
    margin: 0% 10px 0% 0%;
    border-radius: 100%;
}

.svgCard_VerIndustrias svg {
    width: 78%;
    height: 78%;
}

.svgCard_VerIndustrias svg path {
    stroke: #444444;
}

/* --- Hover para el resto de las industrias --- */
.cardTodasLasIndustrias:hover .VerIndustriaCardSec4 {
    color: #717171;
}

.cardTodasLasIndustrias:hover .svgCard_VerIndustrias {
    border-color: #717171;
}

.cardTodasLasIndustrias:hover .svgCard_VerIndustrias svg path {
    stroke: #717171;
}

/* ---------- Estilos para las flechas personalizadas ------------- */

.contenedor_custom_arrows_sec4 {
    max-width: 1400px;
    width: 100%; 
    padding: 0% 0% 24px 0%;
}

.custom-prev-sec4 {
    cursor: pointer;
    background-color: #2C2C2C;
    border: none;
    padding: 10px 16px;
    margin: 0% 10px 0% 0%;
    border-radius: 100%;
}

.custom-next-sec4 {
    cursor: pointer;
    background-color: #4C4C4C;
    border: none;
    padding: 10px 16px;
    margin: 0% 0% 0% 10px;
    border-radius: 100%;
}

.custom-next-sec4,
.custom-prev-sec4 {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* ----- Hover en boton -----------*/
.hover-normal-sec4:hover {
    background-color: #808080 !important;
}

.hover-normal-sec4:hover svg path {
    stroke: #F7F7F7 !important;
}

/* El color del stroke lo controlara  el archivo JS */
.custom-prev-sec4 svg path,
.custom-next-sec4 svg path {
    transition: stroke 0.2s ease;
}


/* --------- Responsivo - Pantallas grandes ------- */
@media (max-width: 1500px){

    .contenedor_carrusel_sec4 {
        scroll-padding-left: calc((100vw - 1088px) / 2);
        scroll-padding-right: calc((100vw - 1088px) / 2);
    }

    .contenedor_custom_arrows_sec4 {
        max-width: 1088px;
        width: 100%;
        padding: 0% 0% 16px 0%;
    }

    .spacer_seccion4 {
        flex: 0 0 calc((100vw - 1118px) / 2);
    }

    .spacer_end_sec4 {
        flex: 0 0 calc((100vw - 1128px) / 2);
    }

    .industriaCardSec4{
        font-size: 20px;
    }

    .cuerpoCardSec4 {
        flex: 0 0 278px;
    }

    .imgWrapperSec4 img {
        height: 350px;
    }

    .industriaCardSec4{
        font-size: 20px;
    }

}

@media (max-width: 1200px) {

    .contenedor_custom_arrows_sec4 {
        width: 80%;
    }

    .spacer_seccion4 {
        flex: 0 0 calc((100vw - 80px) / 2);
    }

    .spacer_end_sec4 {
        flex: 0 0 calc((100vw - 83vw) / 2);
    }

    .contenedor_carrusel_sec4 {
        scroll-padding-left: calc((100vw - 80vw) / 2);   /* 10% a cada lado */
        scroll-padding-right: calc((100vw - 80vw) / 2);
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 950px) {

    .contenedor_carrusel_sec4 {
        scroll-padding-left: calc((100vw - 730px) / 2);
        scroll-padding-right: calc((100vw - 730px) / 2);
    }

    .contenedor_custom_arrows_sec4 {
        max-width: 730px;
        width: 100%;
    }

    .spacer_seccion4 {
        flex: 0 0 calc((100vw - 755px) / 2);
    }

    .spacer_end_sec4 {
        flex: 0 0 calc((100vw - 765px) / 2);
    }

}

@media (max-width: 768px) and (min-width: 691px) {

    .contenedor_custom_arrows_sec4 {
        width: 90%;
    }

    .spacer_seccion4 {
        flex: 0 0 calc((100vw - 90vw) / 2);
    }

    .spacer_end_sec4 {
        flex: 0 0 calc((100vw - 95vw) / 2);
    }

    .contenedor_carrusel_sec4 {
        scroll-padding-left: calc((100vw - 90vw) / 2); /* 5% a cada lado */
        scroll-padding-right: calc((100vw - 90vw) / 2);
    }

}

/* ---------- Responsive - Pantallas peques ------------ */
@media (max-width: 690px) {

    .contenedor_custom_arrows_sec4 {
        max-width: 369px;
        width: 100%;
    }

    .spacer_seccion4 {
        flex: 0 0 calc((100vw - 389px) / 2);
    }

    .spacer_end_sec4 {
        flex: 0 0 calc((100vw - 399px) / 2);
    }

    .contenedor_carrusel_sec4 {
        scroll-padding-left: calc((100vw - 369px) / 2);
        scroll-padding-right: calc((100vw - 369px) / 2);
        margin-right: -6px;
    }

    .carrusel_wrapper_sec4 {
        margin: 40px 0% 0% 0%;
    }

}

/*^^^^^^^^^^^^^^^^^^^^^End_SECTION_4^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

/*^^^^^^^^^^^^^^^^^^^^^ SECTION_5 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.contenedorPrincipal_CardSec5 {
    max-width: 1400px;
    width: 100%; 
    margin: 60px auto;
    padding: 0%;
    border-radius: 15px;
}

.cuerpo_CardSec5 {
    position: relative;
    height: 450px;
    border: 1px solid #4C4C4C;
    border-radius: 15px;
    overflow: hidden;
}

/* Imagen de fondo real dentro del HTML */
.imgFondoCardSec5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    background-image: url("../../img/home/home_2025/seminario_webinars/lubricacion-de-excelencia-icml55-1920.webp");
    transition: transform 0.4s ease;
}

.cuerpo_CardSec5:hover .imgFondoCardSec5 {
    transform: scale(1.15);
}

/* Contenido que va encima */
.contenidoCardSec5 {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
}

/* ----------- Texto izquierda ------------ */
.textoCardSec5 {
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.textoCardSec5 h2 {
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 400;
    font-family: "KumbhSans-Regular", sans-serif;
    line-height: 1.1;
    color: #E3D6CB;
    text-transform: uppercase; 
}

.textoCardSec5 p {
    font-size: 40px;
    font-family: "Hector-Regular", sans-serif;
    line-height: 1.2;
    margin: 0%;
    color: #E3D6CB;
}

/* --------- Responsivo - Pantallas grandes ------- */

@media (max-width: 1500px){

    .contenedorPrincipal_CardSec5 {
        max-width: 1088px;
        width: 100%;
        margin: 40px auto;
    }

    .cuerpo_CardSec5 {
        height: 350px;
        min-width: 360px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center; 
    }

    .imgFondoCardSec5 {
        background-image: url("../../img/home/home_2025/seminario_webinars/lubricacion-de-excelencia-icml55-1366.webp");
    }
}

@media (max-width: 1200px){

    .contenedorPrincipal_CardSec5 {
        width: 80%;
    }

    .textoCardSec5 p {
        font-size: 32px;
    }
}

@media (max-width: 1080px){

    .imgFondoCardSec5 {
        background-image: url("../../img/home/home_2025/seminario_webinars//lubricacion-de-excelencia-icml55-tablet.webp");
    }
}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 950px){

    .contenedorPrincipal_CardSec5 {
        max-width: 730px;
        width: 100%;
    }

    .cuerpo_CardSec5 {
        height: 350px;
        min-width: 360px;
    }

}

@media (max-width: 768px) and (min-width: 691px) {

    .contenedorPrincipal_CardSec5 {
        width: 90%;
    }

    .cuerpo_CardSec5 {
        height: 350px;
    }

    .textoCardSec5,
    .imagenesCardSec5 {
        flex: 1 1 50% !important;
        max-width: 50% !important;
        height: 100%;
    }

}

/* --------- Responsivo - Pantallas peques ------- */
@media (max-width: 690px) {
    
    .contenedorPrincipal_CardSec5 {
        max-width: 369px;
        width: 100%;
    }

    .imagenesCardSec5 {
        padding: 0% 40px;
        background-color: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .textoCardSec5 {
        padding: 40px 40px 0% 40px;
    }

    .textoCardSec5 p {
        font-size: 24px;
    }

    .imagenesCardSec5 {
        height: 50%;
    }

    .imgFondoCardSec5 {
        background-image: url("../../img/home/home_2025/seminario_webinars/lubricacion-de-excelencia-icml55-movil.webp");
    }

}

/*^^^^^^^^^^^^^^^^^^^^^End_SECTION_5^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

/*^^^^^^^^^^^^^^^^^^^^^SECTION_6^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.contenedor_cards_home_sec6{
    max-width: 1400px;
    margin: 60px auto;
    width: 100%; 
}

* {
    box-sizing: border-box;
}

.card_home_sec6 {
    position: relative;
    width: 100%;
    height: 450px;
    min-height: 350px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #4C4C4C;
}

.imgFondoCard1_Sec6 {
    background-image: url("../../img/home/home_2025/blog/moleculas-de-lubricante-industrial-blog-sobre-tribologia-1920.webp");
}

.imgFondoCard2_Sec6 {
    background-image: url("../../img/home/home_2025/datos_contacto/ingeniero-industrial-interlub-contacto-1920.webp");
}

.imgFondoCard {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    z-index: 1;
}

.card_home_sec6:hover .imgFondoCard1_Sec6,
.card_home_sec6:hover .imgFondoCard2_Sec6 {
    transform: scale(1.15);
}

.cardSec6{
    margin: 0%;
    padding: 0%;
    height: 450px;
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50%);
}

.custom-gap-6 {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 40px; /* horizontal vertical */
}

/* --------- Textos ------------- */
.cont_text_btn_cardL_sec6{
    position: relative;
    z-index: 3;
    padding: 40px;
}

.card_home_sec6_link {
    text-decoration: none !important;
    color: inherit; /* mantiene el color original del texto */
}

/* Textos del lado derecho */
.miniTitulo_cardR_home_sec6{
    color: #E3D6CB;
    font-family: "KumbhSans-Regular", sans-serif; 
    font-size: 14px;
    font-weight: 400;
    padding: 0% 0% 16px 0%;
    margin: 0%;
    text-transform: uppercase;  
}

.titulo_cardR_home_sec6{
    color: #E3D6CB;
    font-family: "Hector-Regular";
    font-size: 40px;
    line-height: 1;
    width: 55%;
}

/* Textos del lado izquierdo */
.miniTitulo_cardL_home_sec6{
    color: #444444;
    font-family: "KumbhSans-Regular", sans-serif; 
    font-size: 14px;
    font-weight: 400;
    padding: 0% 0% 16px 0%;
    margin: 0%;
    text-transform: uppercase;  
}

.titulo_cardL_home_sec6{
    color: #444444;
    font-family: "Hector-Regular";
    font-size: 40px;
    line-height: 1;
    width: 50%;
}


/* ----------- Pantallas grandes --------------- */
@media only screen and (max-width: 1500px){
    .contenedor_cards_home_sec6{
        max-width: 1088px;
        width: 100%;
        margin: 40px auto;
    }

    .cardSec6{
        height: 350px;
    }

    .card_home_sec6{
        height: 350px;
        min-height: 350px;
    }

    .titulo_cardR_home_sec6{
        width: 50%;
    }

    .custom-gap-6 {
        gap: 40px; /* horizontal vertical */
    }

    .imgFondoCard1_Sec6 {
        background-image: url("../../img/home/home_2025/blog/moleculas-de-lubricante-industrial-blog-sobre-tribologia-1366.webp");
    }

    .imgFondoCard2_Sec6 {
        background-image: url("../../img/home/home_2025/datos_contacto/ingeniero-industrial-interlub-contacto-1366.webp");
    }
}

@media (max-width: 1200px){

    .contenedor_cards_home_sec6 {
        width: 80%;
    }

    .cardSec6{
        height: 350px;
        min-height: 350px;
        min-width: 280px;
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50%); /* ⬅ evita que crezca demasiado */
    }

    .miniTitulo_cardL_home_sec6,
    .miniTitulo_cardR_home_sec6 {
        font-size: 14px;
    }

    .titulo_cardL_home_sec6,
    .titulo_cardR_home_sec6 {
        font-size: 32px;
        width: 100%;
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 950px){

    .contenedor_cards_home_sec6 {
        max-width: 730px;
        width: 100%;
    }

    .imgFondoCard1_Sec6 {
        background-image: url("../../img/home/home_2025/blog/moleculas-de-lubricante-industrial-blog-sobre-tribologia-tablet.webp");
    }

    .imgFondoCard2_Sec6 {
        background-image: url("../../img/home/home_2025/datos_contacto/ingeniero-industrial-interlub-contacto-tablet.webp");
    }
    
}

/* --------- Responsivo - Pantallas peques ------- */
@media (max-width: 767px) {
    
    .contenedor_cards_home_sec6 {
        width: 90%;
    }
}

@media (max-width: 690px) {
    
    .contenedor_cards_home_sec6 {
        max-width: 369px;
        width: 94%;
        margin-left: auto;
        margin-right: auto;
    }

    .row.custom-gap-6 > .col {
        flex: 0 0 auto !important;   /* deja de forzarse a tamaño completo */
        width: auto !important;      /* respetara tu max-width */
    }

    .cardSec6{
        height: 350px;
        min-height: 350px;
        min-width: 369px;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .miniTitulo_cardL_home_sec6,
    .miniTitulo_cardR_home_sec6 {
        font-size: 14px;
    }

    .titulo_cardL_home_sec6,
    .titulo_cardR_home_sec6 {
        font-size: 24px;
    }

    .imgFondoCard1_Sec6 {
        background-image: url("../../img/home/home_2025/blog/moleculas-de-lubricante-industrial-blog-sobre-tribologia-movil.webp");
    }

    .imgFondoCard2_Sec6 {
        background-image: url("../../img/home/home_2025/datos_contacto/ingeniero-industrial-interlub-contacto-movil.webp");
    }
    
}

/*^^^^^^^^^^^^^^^^^^^^^End_SECTION_6^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

/*^^^^^^^^^^^^^^^^^^^^^SECTION_7^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.contenedorPrincipal_CardSec7 {
    max-width: 1400px;
    width: 100%; 
    margin: 0px auto 110px auto;
    background-color: #1E1E1E;
    border-radius: 15px;
    padding: 0%;
}

.cuerpo_CardSec7 {
    height: 450px;
    border-radius: 15px;
    border: 1px solid #4C4C4C;
    display: flex;
    align-items: center; /* centra verticalmente el contenido de la card */
    justify-content: center; /* opcional, centra horizontalmente si hace falta */
}

.card {
    background-color: transparent;
}

.cuerpo_CardSec7 .row {
    height: 100%; 
    width: 100%;
    display: flex;
    align-items: center; 
}

/* ------------ Izquierda: imagenes ------------- */
.imagenesCardSec7 {
    padding: 24px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagenWrapper {
    position: relative;
    height: 193px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* El contenedor crece segun el número de imagenes */
    width: calc(193px + 3 * 90px);
}

.imgConsultor {
    width: 193px;
    height: 193px;
    object-fit: cover;
    transition: all 0.3s ease;
    position: absolute;
}

.imgContactaConsultor {
    width: auto;
    height: 170px;
    object-fit: cover;
    transition: all 0.3s ease;
    position: absolute;
}

.img1 { 
    left: 0px;
    z-index: 4; 
}

.img2 { 
    left: 97px; 
    z-index: 3; 
}

.img3 { 
    left: 191px; 
    z-index: 2; 
}

.img4 { 
    left: 307px;
    z-index: 1; 
}

/* ---- Hover movimiento de imagenes -------- */

.img1CardSec7_Hover{
    left: -40px;
}

.img2CardSec7_Hover{
    left: 87px;
}

.img3CardSec7_Hover{
    left: 210px;
}

.img4CardSec7_Hover{
    left: 340px;
}

/* ----------- Derecha: textos ------------ */
.textoCardSec7 {
    background-color: transparent;
    padding: 40px;
    color: #DDDDDD;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centra verticalmente */
    height: 100%; /* ocupa toda la altura de la columna */
}

.textoCardSec7 h2 {
    font-size: 55px;
    margin-bottom: 16px;
    font-family: "Hector-Regular", sans-serif;
    line-height: 1.1;
}

.textoCardSec7 p {
    font-size: 22px;
    font-family: "KumbhSans-Regular", sans-serif; 
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 40px;
}

/* ----------- Boton --------------- */
.btn_agenda_llamada {
    display: inline-block;
    background-color: #FF0000;
    color: #FFFFFF;
    border-radius: 25px;
    width: 267px;
    text-align: center;
    font-size: 16px;
    padding: 12px 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn_agenda_llamada:hover {
    background-color: #FFFFFF;
    color: #FF0000;
    border: 1px solid #FF0000;
}

/* --------- Responsivo - Pantallas grandes ------- */

@media (max-width: 1500px){

    .contenedorPrincipal_CardSec7 {
        max-width: 1088px;
        width: 100%;
        margin: 0px auto 110px auto;
    }

    .textoCardSec7 h2 {
        font-size: 40px;
    }

    .textoCardSec7 p {
        font-size: 20px;
    }

}

@media (max-width: 1200px){

    .contenedorPrincipal_CardSec7 {
        width: 80%;
    }

    .imagenWrapper {
        height: 145px;
        /* El contenedor crece segun el número de imagenes */
        width: calc(193px + 3 * 54px);
    }

    .imgConsultor {
        width: 145px;
        height: 145px;
    }

    .imgContactaConsultor {
        height: 125px;
    }

    .img1 { 
        left: 0px;
        z-index: 4; 
    }

    .img2 { 
        left: 72px; 
        z-index: 3; 
    }

    .img3 { 
        left: 144px; 
        z-index: 2; 
    }

    .img4 { 
        left: 231.7px;
        z-index: 1; 
    }

    /* ---- Hover movimiento de imagenes -------- */

    .img1CardSec7_Hover{
        left: -30px;
    }

    .img2CardSec7_Hover{
        left: 67px;
    }

    .img3CardSec7_Hover{
        left: 160px;
    }

    .img4CardSec7_Hover{
        left: 270px;
    }

    .textoCardSec7 h2 {
        font-size: 40px;
    }

    .textoCardSec7 p {
        font-size: 20px;
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 950px){

    .contenedorPrincipal_CardSec7 {
        max-width: 730px;
        width: 100%;
    }

    .imagenWrapper {
        height: 110px;
        /* El contenedor crece segun el número de imagenes */
        width: calc(193px + 3 * 25px);
    }

    .imgConsultor {
        width: 110px;
        height: 110px;
    }

    .imgContactaConsultor {
        height: 95px;
    }

    .img1 { 
        left: 0px;
        z-index: 4; 
    }

    .img2 { 
        left: 55px; 
        z-index: 3; 
    }

    .img3 { 
        left: 110px; 
        z-index: 2; 
    }

    .img4 { 
        left: 176.5px;
        z-index: 1; 
    }

    /* ---- Hover movimiento de imagenes -------- */

    .img1CardSec7_Hover{
        left: -23px;
    }

    .img2CardSec7_Hover{
        left: 50px;
    }

    .img3CardSec7_Hover{
        left: 123.5px;
    }

    .img4CardSec7_Hover{
        left: 200px;
    }

    .textoCardSec7 h2 {
        font-size: 40px;
    }

    .textoCardSec7 p {
        font-size: 20px;
    }

    /* ----------- Boton --------------- */
    .btn_agenda_llamada {
        width: 100%;
    }
}

/* --------- Responsivo - Pantallas peques ------- */
@media (max-width: 767px) {
    
    .contenedorPrincipal_CardSec7 {
        width: 90%;
    }

    .cuerpo_CardSec7 {
        height: auto;
    }

    /* ------------ Izquierda: imagenes ------------- */
    .imagenesCardSec7 {
        padding: 40px 40px 0px 40px;
        background-color: transparent;
        min-height: auto;
    }

    /* ----------- Derecha: textos ------------ */
    .textoCardSec7 {
        background-color: transparent;
        padding: 40px;
        color: #DDDDDD;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center; /* centra verticalmente */
        height: 100%; /* ocupa toda la altura de la columna */
    }

    .textoCardSec7 h2 {
        margin-bottom: 12px;
        text-align: center;
    }

    .textoCardSec7 p {
        text-align: center;
    }

    /* ----------- Boton --------------- */
    .btn_agenda_llamada {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0% auto;
        width: 265px;
    }
}

@media (max-width: 500px) {
    
    .contenedorPrincipal_CardSec7 {
        max-width: 369px;
        width: 94%;
        margin: 0px auto 60px auto;
    }
}

/*^^^^^^^^^^^^^^^^^^^^^End_SECTION_7^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

/*^^^^^^^^^^^^^^^^^^^^^SECTION_7 Modal^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/

.modal-content{
    border-bottom-left-radius: 25px !important;
    border-bottom-right-radius: 25px !important;
    border-top-left-radius: 25px !important;
    border-top-right-radius: 25px !important;
}

.cuerpo_card_banner{
 border-radius: 25px;
 
}

.img_modal_sec7{
    border-radius: 25px;
}

.motrar_img_baner_escritorio_sec7{
    display: block;
    height: auto;
}

.motrar_img_baner_movil_sec7{
    display: none;
}

.titutlo_modal_rojo_sec7{
    color: #FF0000;
    font-family: "Pier_Sans_Reg";
    font-size: 24px;
    letter-spacing: 2px
}

.card-img-overlay-modal {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

.titulo_modal_sec7{
    color: #FFFFFF;
    font-family: "Pier_Sans_Black";
    font-size: 26px;
    line-height: 1;
   font-weight: 900;
   margin-bottom: 16px;
}

.titulo_modal_sec7_2{
    color: #FFFFFF;
    font-family: "Pier_Sans_Black";
    font-size: 16px;
    line-height: 1;
   font-weight: 900;
   margin-bottom: 0px;
}

.texto_modal_sec7{
    color: #FFFFFF;
    font-family: "OpenSans-Regular";
    font-size: 16px;
    margin-bottom: 24px;
}

@media only screen and (max-width: 600px) {

    .motrar_img_baner_escritorio_sec7{
        display: none;
    }

    .motrar_img_baner_movil_sec7{
        display: block;
    }

}

@media only screen and (max-width: 400px) {
    
}


/*^^^^^^^^^^^^^^^^^^^^^End_SECTION_7^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/