
/*estilos generales*/

.text-black {
    color: #000 !important;
}

.bg-black {
    background-color: #000;
}

.color-black {
    color:  #000 !important;
}

.color-white {
    color:  #fff !important;
}

.fz-10 {
    font-size: 10px;
}

.fz-12 {
    font-size: 12px !important;
}

.fz-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-24 {
    font-size: 24px;
}

.gap-10p {
    gap: 10px;
}

.bg-grey {
    background-color: #e1e3e67c;
}

.mt-n6 {
    margin-top: -4rem;
}

.fa-envelope-o {
    color: red;
}

.l-none {
    list-style: none;
}

.widht-40 {
    width: 20%;
    padding: 2rem;
}

.bg-red {
    background-color: #AB0F0F;
}

.rounded-2 {
    border-radius: 20px;
}

.fa-2xl {
    font-size: 2rem;
}

.gap-10 {
    gap: 25px;
}

.mt-1px {
    margin-top: 1px;
}

.p-10px {
    padding: 10px;
}

.border-exterior {
    border: 1px solid #c0c0c0;
}

.mt-40px {
    margin-top: 40px;
}

.mt-25px {
    margin-top: 25px;
}

.mb-54px {
    margin-bottom: 64px;
}

.mt-7 {
    margin-top: 7rem;
}

.bg-semiwhite {
    background-color: #F7F8FA;
}

/*fin estilos generales*/

/*estilos del navbar*/

.bg-blue-shadown {
    background-color: #353535 !important;
}

.nav-mobile {
    margin-top: 32px;
}

.imagen-logo {
    width: 50px;
    margin-left: -3px;
}

@media(max-width:1000px) {
    .display-flex-mobile {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .nav-mobile {
        margin-top: 82px;
    }
}

.nav-mobile {
    margin-top: 0px;
    position: sticky !important;
}

.widget-title {
    color: white;
    font-size: 18px;
}

.gap-10p {
    margin-bottom: 10px;
}

.dropdown-toggle::after {
    display: none !important;
}

@media (max-width: 992px) {
    .flecha-general-menu {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .flecha-general-menu {
      margin-right: 10px; /* Puedes ajustar el margen según tu preferencia */
    }
}

.nav-item:hover {
    background-color: #000 !important;
}

.buscador-menu-nav {
    display: none;
}

.buscador-menu-nav i {
    color: white;
}

@media(max-width:992px) {
    .buscador-menu-nav {
        display: inline-block;
    }
}

/*fin estilos del navbar*/

/*estilos del footer*/

.iconos-footer {
    width: 20px;
    height: 20px;
}
.color-grey {
    color: #fff !important; 
}

footer p, footer a, footer h1, footer h2, footer h3, footer h4, footer span {
    color: #fff;
}

footer a, footer span {
    font-size: 14px !important;
}

footer a:hover {
    color: #808080 !important;
    text-decoration: none;
}

footer ul {
    padding: 0px !important;
}

footer li {
    padding: 5px !important;
    list-style: none !important;
}

.icnonos-footer {
    width: 35px;
    height: 35px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}

.footer-end {
    display: flex;  
}

.icnonos-footer .fa-linkedin-in {
    color: #000 !important;
}

@media (max-width:992px) {
    .footer-end {
        flex-direction: column;
    }
    .footer-end a {
        text-align: center !important;
    }
}

.diseño-modificador {
    font-size: 12px;
}

@media (max-width:768px) {
    .center-mobile {
        justify-content: center;
    }
    .aviso-modificador {
        margin-top: 15px;
    }
    .diseño-modificador {
        padding-top: 10px;
    }
}


/*fin estilos del footer*/

/*estilos de botones busqueda, contactos, catalogos whats y email*/

.float {
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    left:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
    box-shadow: 0 0 0 #54C050;
    cursor: pointer;
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.float:hover {
    text-decoration: none;
    background-color:#AB0F0F;
}

.float:hover i {
    color: #25d366;
}

.my-float {
    margin-top: 16px;
}

.float-email {
    position:fixed;
    width:60px;
    height:60px;
    bottom:140px;
    left:40px;
    background-color: #AB0F0F;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
    cursor: pointer;
    box-shadow: 0 0 0 0 #6f0b0b;
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.float-email:hover {
    text-decoration: none;
    background-color: #fff;

}

.float-email:hover i {
    color: #AB0F0F !important;
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(84,192,80, 0);
    }
}

@media(max-width: 678px) {
    .float {
        bottom: 10px;
        left:10px;
        width: 50px;
        height: 50px;
    }
    .float i {
        font-size: 25px;
        margin: 0px;
    }
    .float-email {
        bottom: 75px;
        left:10px;
        width: 50px;
        height: 50px;
    }
    .float-email i {
        font-size: 25px;
    }
}

.acciones-fixed {
    position: fixed;
    top: 40%;
    right: 10px;
    width: 50px;
    z-index: 99999;
    
}

.acciones-animacion {
    animation: swing-in-right-fwd 5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

@keyframes swing-in-right-fwd {
    0% {
      -webkit-transform: rotateY(-100deg);
              transform: rotateY(-100deg);
      -webkit-transform-origin: right;
              transform-origin: right;
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateY(0);
              transform: rotateY(0);
      -webkit-transform-origin: right;
              transform-origin: right;
      opacity: 1;
    }
  }

.a-fixed-acciones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.a-fixed-acciones:hover {
    color: #AB0F0F;
}

.a-fixed-acciones  i {
    z-index: 3;
    font-size: 30px;
    color: white;
    background-color: #AB0F0F;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

@media (max-width: 768px) {
    .acciones-fixed {
        display: none;
    }
}

.span-divi  {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    right: -175px;
    background-color: #1E2532;
    font-size: 13px;
    color: #ffffff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 2;
    opacity: 0;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}

.a-fixed-acciones:hover .span-divi {
    right: 25px;
    opacity: 1;
}

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

.icon-whatsapp-body {
    display: none;
}

/* CSS para mostrar el icon-whatsapp-body cuando se hace hover en pulse-button */
.pulse-button:hover + .icon-whatsapp-body {
    display: block;
}

.custom-link:hover .fa-envelope-o {
    display: none;
  }
  .custom-link:hover .fa-times {
    display: inline;
  }

.icon-whatsapp-body {
    display: none; 
    position: fixed;
    z-index: 999;
    bottom: 190px !important;
    left: 10px;
    width: 150px;
    opacity: 0; 
    visibility: hidden; 
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 10px;
}

@media (max-width:768px) {
    .icon-whatsapp-body {
        bottom: 115px !important;
    }
}

.icon-whatsapp-body ul {
    list-style: none;
    margin: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.icon-whatsapp-body li {
    color: #FFF;
    background-color: #AB0F0F;
    padding: 10px;
    width: 150px;
    border-radius: 15px;
    text-align: center;
}

.icon-whatsapp-body a {
    text-decoration: none;
    color: #FFF;
}

.icon-whatsapp-body li:hover {
    background-color: #fff;
}

.icon-whatsapp-body li:hover a {
    color: #000;
}

@media(max-width: 678px) {
    .icon-whatsapp-body li {
        color: #FFF;
        background-color: #AB0F0F;
        padding: 10px;
        width: 100px;
        border-radius: 15px;
        font-size: 14px;
        text-align: center;
    }
}

.border-dotted {
    border-bottom: 2px solid black;
}

.navbar-brand {
    margin: 0px !important;
}

/*fin de estilos de botones busqueda, contactos, catalogos whats y email*/

/*estilos de historia*/

.historia {
    width: 100%;
    height: 90vh;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.851) 50%, rgba(28, 27, 27, 0.362)), url(../img/historia.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mi-titulo-historia {
    display: block;
    border-right: 2px solid #f0ecec; /* Simular el cursor de escritura */
    white-space: nowrap; /* Evitar el salto de línea */
    width: 16ch;
    font-size: 36px; /* Ajustar según sea necesario */
    animation: escribir 2s steps(15), blink .5s infinite step-end alternate; /* 2s es la duración de la animación */
    overflow: hidden;
    /* Otras propiedades de estilo según tus preferencias */
}

@keyframes escribir {
    from {width: 0;}
}
@keyframes blink {
    50% {
      border-color: transparent;
    }
}

.compartir-post li {
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin: 5px;
}

.compartir-post a {
    text-decoration: none;
}

.compartir-post i {
    color: white;
}

.compartir-post li a:hover .fab {
    color: #f8f8f8 !important;
}

.width-40 {
    width: 150px;
    padding: 30px;
}

@media (max-width: 991px) {
    .compartir-text {
        padding-top: 2rem;
    }
    .compartir-post {
        display: flex;
        flex-wrap: wrap;
        row-gap: 1rem;

    }
    .historia {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .width-40 {
      flex-basis: 45%; /* Dos columnas en lugar de una en pantallas menores a 768px */
    }
    .mi-titulo-historia {
        width: 100%;
    }
    .compartir-text {
        padding-top: 0px;
    }
}

@media (max-width: 500px) {
    .width-40 {
      flex-basis: 100%; /* Una columna en lugar de dos en pantallas menores a 500px */
    }
}

@media (max-height: 875px) {
    /* Estilos específicos para pantallas más pequeñas */
    .historia {
        height: 100%;
    }
    .pading-historia {
        padding-bottom: 4rem;
    }
  }

/*fin estilos de historia*/

/*estilos de valores*/


.valores {
    position: relative;
    width: 100%;
    height: 100vh;
}

.valores h1 {
    color: #AB0F0F;
}

/* .valores::before {
    position: absolute;
    content: '';
    width: 20vw; 
    height: 20vw; 
    max-width: 300px; 
    max-height: 300px; 
    background-color: #872341;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}
  
.valores::after {
    position: absolute;
    content: '';
    width: 20vw; 
    height: 13vw;  
    top: 50%;
    left: 50%;
    background-image: url('../img/logo_baleros.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 120px;
    transform: translate(-50%, -50%);
    z-index: 2;
} */

.ejemplo {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.img-agrade {
    margin-right: 20px;
    width: 40%;
}

.img-humildad {
    width: 20%;
}

.respeto,
.agradecimiento,
.honestidad,
.responsabilidad {
    position: relative;
}

.respeto li {
    list-style: none;
}

.respeto p,
.honestidad p,
.responsabilidad p {
    font-weight: bold;
    padding-left: 30px;
}

.honestidad,
.responsabilidad {
    height: 100%;
}

.honestidad li {
    list-style: none;
    width: 100px;
}

.responsabilidad li {
    list-style: none;
    width: 200px;
    margin-left: auto;
}

.respeto::before {
    position: absolute;
    width: 100%;
    margin-bottom: -50px;
    content: '';
    left: 0;
    bottom: 0;
    /* border-bottom: 4px #872341 dashed; */
}

.agradecimiento::before  {
    position: absolute;
    width: 100%;
    margin-bottom: -30px;
    content: '';
    left: 0;
    bottom: 0;
    /* border-bottom: 4px #872341 dashed; */
}

.honestidad::before {
    position: absolute;
    width: 100%;
    content: '';
    left: 0;
    bottom: 0;
    /* border-bottom: 4px #872341 dashed; */
}

.position-circulo {
    position: absolute;
}

@media(max-width:1300px) {
    .respeto::before {
        margin-bottom: -80px;
    }
}

@media(max-width:992px) {
    .responsabilidad p {

        width: 300px;
        margin-left: auto;
    }
}

@media(max-width:768px) {
    .contenedor-respeto,
    .contenedor-honestidad,
    .responsabilidad {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .contenedor-agradecimiento div {
        text-align: center !important;
    }
    .responsabilidad p {
        margin: auto;
        width: auto;
    }
    .valores::before,
    .valores::after {
        display: none;
    }
    .respeto::before {
        border: none;
    }
    /* .contenedor-circulo {
        display: flex;
        justify-content: center;
        align-items: center;
    } */
    /* .circulo {
        position: relative;
        width: 45vw; 
        height: 45vw;  
        background-color: #872341;
        border-radius: 50%;
    }
    .circulo::after {
        position: absolute;
        content: '';
        width: 35vw; 
        height: 35vw; 
        top: 50%;
        left: 50%;
        background-image: url('../img/logo_baleros.png');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        transform: translate(-50%, -50%);
        z-index: 2;
    } */
    .honestidad {
        height: 100% !important;
    }
    .responsabilidad p {
        padding: 0px;
        text-align: center;
    }
    .responsabilidad li {
        width: 100%;
        padding: 0px;
        text-align: center;
    }
    .valores, 
    .ejemplo {
        height: 100%;
    }
    .img-agrade {
        width: 60%;
        margin: 0px;
        padding-bottom: 2rem;
    }
    .img-humildad {
        width: 50%;
        padding-bottom: 2rem;
    }
    /* .honestidad p, ul,
    .respeto p, ul {
        padding: 0px;
    } */
    /* .border-divisor-top {
        border-top: 2px #872341 dashed;
    } */
    .border-divisor {
        margin-bottom: 10px;
        /* border-bottom: 2px #872341 dashed; */
    }
    .honestidad p {
        margin: 0px;
    }
    .position-circulo {
        position: relative;
    }
}

/*fin estilos de valores*/

/*estilos de division*/

.hero {
    position: relative;
}

.fondo-banner-general {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.img-banner {
    width: 100%;
    height: 320px;
}

.icons::before {
    content: "\27A4";
    font-family: fontawesome;
    font-size: 14px;
    margin-right: 5px;
}

.indicaciones {
    margin: 0px;
    padding: 0px;
}

.indicaciones li {
    list-style: none;
}

.indicaciones a {
    text-decoration: none;
    
}

.cont-hero {
    width: 60%;
    margin: auto;
    margin-top: 170px;
}

.img-banner {
    width: 100%;
    height: 320px;
}

.hero {
    position: relative;
}

.fondo-hero {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contenido-hero {
    width: 60%;
    margin: auto;
    margin-top: 170px;
}

.d-flex-hero {
    display: flex;
    flex-direction: column;
}

@media (max-width:1280px) {
    .contenido-hero {
        margin-left: 60px;
    }
}

@media (max-width:1024px) {
    .contenido-hero {
        margin-left: 40px;
    }
}

@media (max-width:768px) {
    .contenido-hero {
        margin-left: 15px;
        margin-top: 0px;
        padding: 2rem;
    }
    .img-banner {
        height: auto !important;
    }
    .fondo-hero {
        position: relative;
    }
    .d-flex-hero {
        flex-direction: column-reverse;
    }
    .breadcrumb {
        margin-bottom: 0px !important;
    }
    .cb-black {
       color: #000 !important;
    }
    .margin-section-mobile {
        margin-top: -25px;
    }
}


/**/

.her02 {
    width: 100%;
    height: 300px;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.851) 50%, rgba(28, 27, 27, 0.362)), url(../img/historia.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.talento {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-size: 2em;
    font-weight: bold;
    display: inline-block;
    background: linear-gradient(90deg, #f6f5f5, #727170, #FFFBF5); /* Cambia estos colores a tu gusto */
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: color-move 4s linear infinite; /* Ajusta la duración y el tipo de animación según tus preferencias */
}

@keyframes color-move {
    0% {
        background-position: 0% 50%;
        color: transparent;
    }
    25% {
        background-position: 25% 50%;
        color: #FFFBF5;
    }
    50% {
        background-position: 50% 50%;
        color: #f6f5f5;
    }
    75% {
        background-position: 75% 50%;
        color: #727170;
    }
    100% {
        background-position: 100% 50%;
        color: transparent;
    }
}

/**/
.alinacion-redes {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.redes {
    background-color: #d3d3d3;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.redes:hover {
    background-color: #18242c;
    color: #000;
}

.contacto-redes li {
    list-style: none;
}

.contacto-redes a {
    text-decoration: none;
}

.contacto-redes a:hover {
    color: #0000006c;
}

.line-bottom {
    position: relative;
}

.line-bottom:after {
    bottom: -10px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 50px;
    border: 1px solid #000;
}

.select-width {
    font-size: .9rem;
}

@media (max-width:400px) {
    .select-width {
        font-size: .8rem;
    }
}




/**/
 @media(max-width:1118px) {
    .nav-auto-contain {
        display: flex;
        flex-direction: column;
    }
 }

 @media(max-width:995px) {
    .nav-auto-contain {
        display: flex;
        flex-direction: row;
    }
    .border-menu {
        border-bottom: 1px solid rgba(255, 255, 255, 0.068);
    }
    .border-top-menu {
        border-top: 1px solid rgba(255, 255, 255, 0.068);
    }
 }

 /**/

 .box-hover-effect .overlay-shade {
    bottom: 79px;
    display: block;
    left: 16px;
    position: absolute;
    right: 14px;
    top: 0;
    z-index: 10;
    background-color: #000;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.effect-wrapper {
    width: 100%;
    
}

.img-fullwidth {
    width: 95%;
}
.text-holder {
    opacity: 0;
    top: 0;
    left: 15px;
    right: 15px;
    overflow: hidden;
    position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 13;
}
.text-holder-middle {
    bottom: 95px;
    top: 0;
    max-width: 100%;
}
.text_holder_inner {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
}
.text_holder_inner2 {
    display: table-cell;
    height: 100%;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 100%;
}
.title1 {
    font-size: 24px;
    font-weight: 700;
    opacity: 0;
    padding: .3rem;
}

.hover-link {
    bottom: 95px;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: none!important;
    color: transparent!important;
    z-index: 13;

}

.box-hover-effect:hover .effect-wrapper .overlay-shade {
    opacity: 0.8;
}
.box-hover-effect:hover .effect-wrapper .text-holder {
    opacity: 1;
}
.box-hover-effect:hover .title1 {
    opacity: 1;
}

@media (max-width:1200px) {
    .box-hover-effect .overlay-shade {
        bottom: 115px;
    }
    .btn-descarga-catalogo {
        margin-bottom: 10px;
    }
}

@media (max-width:992px) {
    .btn-descarga-catalogo,
    .title1 {
        font-size: 12px;
    }
    .btn-descarga-catalogo {
        margin-bottom: 10px;
    }

}

@media (max-width:768px) {
    .btn-descarga-catalogo,
    .title1 {
        font-size: 16px;
    }
    .btn-descarga-catalogo {
        margin-bottom: 0px;
    }

}

.btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;

}

.hero-2 {
    position: relative;
    width: 100%;
    height: 39dvh;
}

.img-novedades {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.fondo-hero-2 {
    position: absolute;
    background: linear-gradient(50deg, rgba(0, 0, 0, 20%) 0%, rgba(0, 0, 0, 0.70) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media(max-width:1300px) {
    .hero-2 {
        height: 100%;
    }
}

@media(max-width:500px) {
    .talento {
        font-size: 20px;
    }
}

.sticky {
    position: sticky !important;
    z-index: 1024;
    top: 100px;
}

.producto-nuevo {
    display: inline-block;
    padding: 8px 16px;
    background-color: #AB0F0F;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.border-left {
    border-left: 2px solid rgba(0, 0, 0, 0.259) !important;
}

.border-bottom-2 {
    border-bottom: 2px dotted rgba(0, 0, 0, 0.259) !important;
}

.list-none {
    list-style: none;
}

.card-hover:hover
.fecha-evento {
    background-color: #171B2D !important;
}
.fecha-evento {
    text-align: center;
    color: white;
    font-size: 14px;
}

.fecha-evento  ul {
    list-style: none;
    margin: 10px;
    padding: 0px;
}

.fecha-publicacion span {
    font-weight: 800 !important;
    color: red;
}

.text-decoration-none {
    text-decoration: none !important;
}

.tags {
    background-color: transparent;
    border: 1px solid #d3d3d3;
    color: #999999;
    font-weight: bold;
    display: inline-block;
    font-size: 11px;
    margin: 5px 4px 5px -2px;
    padding: 10px 10px;
    text-decoration: none !important;
}

.tags:hover {
    background-color: #AB0F0F;
    color: white;
}

.h-200 {
    height: 300px;
}

@media (max-width:768px) {
    .h-200 {
        height: 100%;
    } 
}

.objet-fill {
    object-fit: fill;
}

/*Estilos de index*/

.bg-red-especial {
    background: #F00;
}

.font-bold {
    font-weight: bold;
}

/* .btn-contacto {
    display: flex;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 46px;
    background: #F00;
    color: white;
    font-weight: bold;
}

.btn-contacto:hover {
    background: white;
    color: #000;
    text-decoration: none;
} */

/***** finalizacion de la propuesta de automotriz  *****/

.fondo-automotriz {
    position: relative;
    width: 100%;
    height: 50dvh;
}

.fondo-automotriz::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.599) 0.17%, rgba(255, 0, 0, 0.588) 104.33%);
    z-index: 1;
}

.img-fondo-automotriz {
    position: relative;
   width: 100%; 
   height: 100%;
   object-fit: cover;
}

.contenedor-automotriz-index {
    position: absolute;
    top: 20dvh;
    padding-left: 5dvw;
    width: 100%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.titulo-automotriz-fondo-refacciones {
    color: #FF0000;
    font-size: 1.6dvw;
    font-weight: 600;

}

.titulo-automotriz-fondo {
    position: relative;
    width: 50%;
    color: white;
    font-size: 3dvw;
    font-weight: 600;
}

.btn-contacto {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #FF0000;
    color: white;
    width: 11.5em;
    padding: 1.25em;
    font-size: 1em;
    font-weight: 600;
    border-radius: 46px;
    text-decoration: none !important;
}

.btn-contacto:hover {
    background-color: white;
}


@media(max-width:1034px) {
    .fondo-automotriz {
        height: 100%;
    } 
}

@media(max-width:992px) {
    .contenedor-automotriz-index {
        top: 15%;
    }
    .titulo-automotriz-fondo-refacciones {
        font-size: 2dvw;
    }
    .titulo-automotriz-fondo {
        font-size: 4dvw;
    }
    .btn-contacto {
        width: 10em;
    }
}

@media(max-width:620px) {
    .contenedor-automotriz-index {
        padding: 0 5dvw;
        align-items: center;
    }
    .titulo-automotriz-fondo-refacciones {
        font-size: 3.5dvw;
    }
    .titulo-automotriz-fondo {
        font-size: 5dvw;
        width: 90%;
    }
    .btn-contacto {
        width: 32em;
        font-size: 10px;
    }
}

/***** finalizacion de la propuesta de automotriz  *****/

/***** inico de la propuesta orginal de automotriz  *****/

.fondo-index {
    position: relative;
    width: 100%;
    height: 60dvh;
}

.fondo-index::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 20%) 0.17%, rgba(255, 0, 0, 5%) 104.33%);
    z-index: 1;
}
.img-fondo-automotriz-dos {
    position: relative;
    width: 100%; 
    height: 100%;
    object-fit: fill;
    z-index: -1;
}
.contendor-fondo-index-automotriz {
    /* position: absolute;
    top: 20dvh;
    padding-left: 6em;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 20px; */
    position: absolute;
    content: " ";
    top: 15%;
    transform: translateY(-50%);
    z-index: 9;
}

.contendor-fondo-index-industrial {
    /* position: absolute;
    top: 20dvh;
    padding-left: 6em;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 20px; */
    position: absolute;
    content: " ";
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.texto-index-auto {
    color: #FF0000;
    font-size: 1.6dvw;
    font-weight: 600;
    padding-left: 2rem;
}
.texto-index-auto-2 {
    width: 50%;
    color: white;
    text-wrap: balance;
    font-size: 2.5dvw;
    font-weight: 600;
    padding-top: 1rem;
    padding-left: 2rem;
}

.btn-contacto {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #FF0000;
    color: white;
    width: 11.5em;
    padding: 1.25em;
    font-size: 1em;
    font-weight: 600;
    border-radius: 46px;
    text-decoration: none !important;
}

.btn-contacto:hover {
    background-color: white;
}

@media(max-width:1034px) {
    .fondo-index {
        height: auto;
    }
}

@media(max-width:992px) {
    .texto-index-auto {
        font-size: 5dvw;
        padding-right: 2rem;
    }
    .texto-index-auto-2 {
        width: 100%;
        font-size: 2.5rem;
        padding-right: 2rem;
        text-wrap: wrap;
    }
}

@media(max-width:768px) {
    .texto-index-auto {
        font-size: 4dvw;
    }
    .texto-index-auto-2 {
        width: 100%;
        font-size: 7dvw;
    }
    /*.fondo-index::before {
        background: rgba(0, 0, 0, 0.754);;
    }*/
}

@media(max-width:620px) {
    .contendor-fondo-index-automotriz {
        width: 100%;
        padding: 1em;
        align-items: center;
    }
    .texto-index-auto {
        font-size: 4dvw;
    }
    .texto-index-auto-2 {
        width: 100%;
        font-size: 8dvw;
        text-align: center;
    }
    .btn-contacto {
        width: 20em;
        font-size: 10px;
        margin-right: auto;
    }
}

@media(max-width:620px) {
    .contendor-fondo-index-industrial {
        width: 100%;
        padding: 1em;
        align-items: center;
    }
    .texto-index-auto {
        font-size: 4dvw;
    }
    .texto-index-auto-2 {
        width: 100%;
        font-size: 8dvw;
        text-align: center;
    }
    .btn-contacto {
        width: 20em;
        font-size: 10px;
        margin-right: auto;
    }
}


/***** finalizacion de la propuesta orginal de automotriz  *****/

.contenido-buscador {
    position: relative;
    z-index: 1;
    padding: 0px 80px;
    margin-top: -60px;
}

.buscador {
    width: 100%;
    border-radius: 78px;
    background: #000;
}

.shadow-buscador {
    box-shadow: 0px 35px 77px 0px rgba(0, 0, 0, 0.10), 0px 141px 141px 0px rgba(0, 0, 0, 0.09), 0px 317px 190px 0px rgba(0, 0, 0, 0.05), 0px 563px 225px 0px rgba(0, 0, 0, 0.01), 0px 879px 246px 0px rgba(0, 0, 0, 0.00);
}

.buscador-form {
    width: 100%;
    border-radius: 78px;
    background: #000;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.shadow-buscador-form {
    box-shadow: 0px 35px 77px 0px rgba(0, 0, 0, 0.10), 0px 141px 141px 0px rgba(0, 0, 0, 0.09), 0px 317px 190px 0px rgba(0, 0, 0, 0.05), 0px 563px 225px 0px rgba(0, 0, 0, 0.01), 0px 879px 246px 0px rgba(0, 0, 0, 0.00);
}

.buscador-select {
    width: 100%;
    border-radius: 49px;
    border: 1px solid #FFF;
    background: #FFF;
    padding: 21px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
}


.buscador-boton {
    width: 100%;
    background: #F00;
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 21px 25px;
    color: white;
    font-weight: bold;
    border: none;
}

.icono-busqueda {
    margin-left: 10px;
}

.distribuidor {
    display: flex;
    width: 100%;
    padding: 20px 80px 20px 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 51px;
    /*background: #000;*/
    flex-wrap: wrap;
}

.distribuidor-2 {
    display: flex;
    width: 100%;
    padding: 30px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 51px;
    background: #fff;
    flex-wrap: wrap;
}

@media(max-width:768px) {
    .contenido-buscador {
        /* margin-top: 25px; */
        padding: 0px 25px;
        padding-top: 5rem;
    }
}

@media(max-width:480px) {
    .distribuidor {
        padding: 119px 10px 120px 10px;
    }
}

.distribuidor-contenido {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.distribuidor-item {
    display: flex;
    width: 180px;
    height: 80px;
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #FFF;
}

.distribuidor-item-industrial img {
    transition: transform 0.3s ease-in-out;
}

.animacion-marca:hover {
    background: #948f8f;
    border-radius: 5px;
}

.animacion-marca:hover .distribuidor-item-industrial {
    background: #948f8f;
    border-radius: 5px;
}

.animacion-marca:hover .distribuidor-item-industrial img {
    transform: scale(1.1);
}

.producto-nuevos {
    position: relative;
    width: 100%;
    height: auto;
    background-image: url('../img/industrial/fondo-marcas.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.producto-nuevos::before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.92);
    width: 100%;
    height: 100%;
}

.producto-contenedor {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 6rem;
    margin-bottom: 5rem;
}

.productos-imagenes {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: flex-start;
    gap: 23px;
    justify-content: center;
    flex-wrap: wrap;
}

.productos-btn {
    position: relative;
    z-index: 1;
    color: white;
    margin-top: 4rem;
    margin-bottom: 4rem;
    border-radius: 40px;
    padding: 20px 30px;
    font-weight: bold;
}

.productos-btn:hover {
    background: white;
    color: #000;
    text-decoration: none;
}

.seccion-personal {
    margin-top: 5rem;
    display: flex;
    height: 364px;
    padding: 90px 100px 90px 100px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #000;
}

.personal-contenedor{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.personal-contenedor-texto {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-refaccion-personal {
    display: flex;
    padding: 20px 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 46px;
    background: #F00;
    color: white;
    font-weight: bold;
}

.btn-refaccion-personal:hover {
    background: white;
    color: #000;
    text-decoration: none;
}

.personal-texto {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

/*esta seccion es de buscar por categoria en la parte automotriz**/

.categorias-seccion-busqueda {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contenedor-categorias-busqueda {
    display: flex;
    height: 93px;
    padding: 10px;
    align-items: center;
    flex: 1;
    border-radius: 58px;
    background: #F8F7F7;
    margin-right: 10px;
    text-decoration: none !important;
}

.contenedor-imgs-categorias-busqueda {
    width: 60px;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-categorias-busqueda:hover .contenedor-imgs-categorias-busqueda i {
    color: white;
}

.img-busqueda-normal,
.img-busqueda-hover {
    width: 100%;
}

.img-busqueda-hover {
    display: none;
}

.texto-busqueda-categoria {
    position: relative;
    margin: 0;
    border-left: 1px solid black;
    padding-left: 15px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-busqueda-categoria a {
    text-decoration: none;
}

.enlace-busqueda-categoria {
    text-decoration: none !important;
}

.contenedor-categorias-busqueda:hover {
    background: var(--color-hover-categoria, #f00);
}

.contenedor-categorias-busqueda:hover .img-busqueda-normal {
    display: none;
}

.contenedor-categorias-busqueda:hover .img-busqueda-hover {
    display: block;
}

.contenedor-categorias-busqueda:hover .texto-busqueda-categoria {
    color: white;
    border-left: 1px solid white;
}

.contenedor-categorias-busqueda:hover .texto-busqueda-categoria a {
    color: white;
}

.contenedor-categorias-busqueda:hover .enlace-busqueda-categoria {
    text-decoration: none;
    color: white;
}

@media (max-width:768px) {
    .categorias-seccion-busqueda {
        display: none;
    }
}

/*------fin de busqueda categorias----**/

/*sitios de interes en index*/

.contenedor-sitios-interes {
    padding: 5rem;
}

.contenedor-sitios-interes-pagina {
    display: flex;
    height: 93px;
    padding: 10px;
    align-items: center;
    flex: 1;
    border-radius: 58px;
    background: #F8F7F7;
    margin-right: 10px;
}

.contenedor-imgs-sitios-interes {
    width: 60px;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-sitio-interes-normal,
.img-sitio-interes-hover {
    width: 100%;
}

.img-sitio-interes-hover {
    display: none;
}

.texto-sitios-interes {
    position: relative;
    margin: 0;
    border-left: 1px solid black;
    padding-left: 15px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enlace-sitio-interes {
    text-decoration: none !important;
}

.texto-sitios-interes a {
    text-decoration: none;
}

.contenedor-sitios-interes-pagina:hover {
    background: #f00;
}

.contenedor-sitios-interes-pagina:hover .img-sitio-interes-normal {
    display: none;
}

.contenedor-sitios-interes-pagina:hover .img-sitio-interes-hover {
    display: block;
}

.contenedor-sitios-interes-pagina:hover .texto-sitios-interes {
    border-left: 1px solid white;
    color: white;
}

.contenedor-sitios-interes-pagina:hover .texto-sitios-interes a {
    color: white;
}


/*fin de sitios de interes en index*/

.display-inverse-none {
    display: none;
}

.display-inverse-block {
    display: block;
}

.display-flex-inverse {
    display: flex;
}

@media(max-width:1330px) {
    .producto-nuevos {
        height: 100%;
    }
}

@media (max-width:992px) {
    .buscador {
        font-size: 12px;
    }
}

@media (max-width:992px) {
    .buscador-form {
        flex-direction: column;
    }
}

@media(max-width:768px) {
    .display-inverse-none {
        display: block;
    }

    .display-inverse-block {
        display: none;
    }

    .display-flex-inverse {
        display: none;
    }
 
    .seccion-personal {
        padding: 0;
    }

    .seccion-personal p {
        padding: 0px 10px;
        text-align: center;
    }

    .btn-refaccion-personal {
        margin-top: -30px;
    }

}

@media (max-width:360px) {
    .btn-refaccion-personal,
    .productos-btn {
        padding: 10px;
        font-size: 12px;
    }
}

/*fin de Estilos de index*/



.light {
    background: #f3f5f7;
}

#pageHeaderTitle {
    margin: 2rem 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
}

/* Cards */
.postcard {
  flex-wrap: wrap;
  display: flex;
  
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  margin: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
  color: #ffffff;

    &.dark {
        background-color: #18151f;
    }
    &.light {
        background-color: #e1e5ea;
    }
    
    .t-dark {
        color: #18151f;
    }
    
  a {
    color: inherit;
  }
    
    h1, .h1 {
        margin-bottom: 0.5rem;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .small {
        font-size: 80%;
    }

  .postcard__title {
    font-size: 1.75rem;
  }

  .postcard__img {
    max-height: 180px;
    width: 100%;
    object-fit: cover;
    position: relative;
  }

  .postcard__bar {
    width: 50px;
    height: 10px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
  }

  .postcard__text {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .postcard__preview-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    height: 100%;
  }

  .postcard__tagbox {
    display: flex;
    flex-flow: row wrap;
    font-size: 14px;
    margin: 20px 0 0 0;
        padding: 0;
    justify-content: center;

    .tag__item {
      display: inline-block;
      background: rgba(83, 83, 83, 0.4);
      border-radius: 3px;
      padding: 2.5px 10px;
      margin: 0 5px 5px 0;
      cursor: default;
      user-select: none;
      transition: background-color 0.3s;

      &:hover {
        background: rgba(83, 83, 83, 0.8);
      }
    }
  }

  &:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
    border-radius: 10px;
  }

  &:hover .postcard__bar {
    width: 100px;
  }
}

@media screen and (min-width: 769px) {
  .postcard {
    flex-wrap: inherit;

    .postcard__title {
      font-size: 2rem;
    }

    .postcard__tagbox {
      justify-content: start;
    }

    .postcard__img {
      max-width: 300px;
      max-height: 100%;
      transition: transform 0.3s ease;
    }

    .postcard__text {
      padding: 3rem;
      width: 100%;
    }

    .media.postcard__text:before {
      content: "";
      position: absolute;
      display: block;
      background: #18151f;
      top: -20%;
      height: 130%;
      width: 55px;
    }

    &:hover .postcard__img {
      transform: scale(1.1);
    }

    &:nth-child(2n+1) {
      flex-direction: row;
    }

    &:nth-child(2n+0) {
      flex-direction: row-reverse;
    }

    &:nth-child(2n+1) .postcard__text::before {
      left: -12px !important;
      transform: rotate(4deg);
    }

    &:nth-child(2n+0) .postcard__text::before {
      right: -12px !important;
      transform: rotate(-4deg);
    }
  }
}
@media screen and (min-width: 1024px){
        .postcard__text {
      padding: 2rem 3.5rem;
    }
        
        
    
  .postcard.dark {
        .postcard__text:before {
            background: #18151f;
        }
  }
    .postcard.light {
        .postcard__text:before {
            background: #e1e5ea;
        }
  }
}

/*inicio de paginado*/

.pagination.pagination-circle .page-item.active .page-link {
    border-radius: 50%;
}
.pagination .page-item .page-link:hover {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border-radius: .125rem;
    background-color: #eee;
}
.pagination.pg-blue .page-item.active .page-link:hover {
    background-color: #AB0F0F;
}
.pagination .page-item.active .page-link {
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    border-radius: .125rem;
    background-color: #AB0F0F;
    color: #fff;
}
.pagination .page-item .page-link {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    outline: 0;
    border: 0;
    background-color: transparent;
    font-size: .9rem;
    color: #999;
    font-weight:bold;
}
.pagination.pagination-circle .page-item .page-link:hover {
    border-radius: 50%;
}
.pagination.pagination-circle .page-item .page-link {
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 50%;
}
.pagination .page-item.active .page-link{
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}
.page-link{
  border:none!important;
}

/*fin de paginado*/

/*inicio de copy link*/

.shareLink {
  .permalink {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    .textLink {
      text-align: center;
      padding: 12px 60px 12px 30px;
      height: 45px;
      width: 450px;
      font-size: 16px;
      letter-spacing: .3px;
      color: #494949;
      border-radius: 25px;
      border: 1px solid #fff;
      background-color: #fff;
      outline: 0;
      appearance: none;
      transition: all .3s ease;
    }
      &:focus {
        border-color: #d8d8d8;
      }
      &::selection {
        color: #fff;
        background-color: #AB0F0F;
      }
    }
    .copyLink {
        position: relative;
        margin-left: -30px;
      &:hover {
        &:after {
          opacity: 1;
          transform: translateY(0) translateX(-50%);
        }
      }
      &:after {
        content: attr(tooltip);
        width: 140px;
        bottom: -40px;
        left: 50%;
        padding: 5px;
        border-radius: 4px;
        font-size: 0.8rem;
        opacity: 0;
        pointer-events: none;
        position: absolute;
        background-color: #000000;
        color: #ffffff;
        transform: translateY(-10px) translateX(-50%);
        transition: all 300ms ease;
            text-align: center;
      }
      i {
        font-size: 20px;
        color: #AB0F0F;
      }
      @media(max-width:768px) {
        &:after {
            left: 0;
            margin-left: -40px;
        }
      }
    }
  }
  
@media(max-width:768px) {
    .shareLink {
        width: 100%;
    }
    .textLink {
        width: 95% !important;
    }  
}

.card-horizontal {
    display: flex;
    flex: 1 1 auto;
}

/*fin de copy link*/

/*inicio de preload gif*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255); 
    opacity: 1; 
    transition: opacity 0.5s ease; 
    z-index: 9999;
  }
  
  #spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
 
  #preloader.hidden {
    opacity: 0;
    pointer-events: none; 
  }

/*fin de preload gif*/

.search-input {
    padding: 20px 10px;
    background:  transparent !important;
}
.search-input::placeholder {
    font-size: 14px;
}

.btn-icono {
    padding: 8px 22px;
}

.btn-icono i {
    color: #777777 !important;
    font-size: 12px;  
}

.info-date {
    font-size: 14px;
    color: #777777;
}

.info-date-title {
    color: #a9a9a9;
    font-size: 13px;
}

.blockquote {
    background-color: #f7f8fa;
    color: #777777;
    line-height: 29.75px;
    margin: 20px 0px;
    padding: 20px 30px;
    font-size: 17.5px;
    border-left: 3px solid #000;
}

.hastack {
    color: #777777;
    font-size: 14px;
    padding-top: 20px;
}

.hastack a {
    color: #777777;
    font-size: 14px;
}

.hastack a:hover {
    color: #000;
    text-decoration: none;
}

.hastack  p {
    font-size: 14px;
}

.a-img-aca {
    width: 100%;
}

@media(max-width:815px) {
    .card-horizontal {
        flex-direction: column;
    }
}

.border-redon {
    background: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*inicio estilos de novedades*/

.wraper {
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 21rem;
    height: auto;
}

.wraper:hover .fondo-wraper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.817);
    transition: all 0.5s ease;
    z-index: 99;
}

.texto-fondo-wraper {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    width: 100%;
    bottom: 0px;
    height: 100px;
    opacity: 0;
    z-index: 99;
}

.texto-fondo-wraper span:nth-child(2) {
    font-size: 13px;
}

.wraper:hover .texto-fondo-wraper {
    opacity: 1;
    text-decoration: none;
    transition: all 0.5s ease;
    color: white;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.title-novedad {
    font-size: 18px;
    font-weight: 700;
}

.fondo-icono-wraper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.fondo-icono-wraper i {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #171B2D;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wraper:hover 
.fondo-icono-wraper {
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
}

.wraper:hover 
.img-novedad {
    transform: scale(1.08);
    transition: all 0.5s ease;
}

/*fin estilos de novedades*/

/*inicio estilos de iconos de la pagina*/

.iconos-negros i {
    color: #000 !important;
}

.ico-footer i {
    color: #000 !important;
}

.redes i {
    color: #000000 !important;
}

.redes:hover {
    background-color: white;
}

.navbar-toggler i {
    color: white;
}

.icons-historia i {
    color: white;
}

/*fin estilos de iconos de la pagina*/

/*estilos de select2 buscador*/

.select2-container {
    width: 100% !important;
    background: #FFF;
    position: relative;
}

.select2-container--classic .select2-selection--single  {
    border: 0px !important;
    background: transparent !important;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    font-weight: bold;
    color: #000;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background: transparent !important; 
    border: 0px !important;
} 

.select2-container--open {
    width: 14vw !important;
}

.select2-container .select2-selection--single {
    display: flex !important;
}

.select2-selection__rendered {
    white-space: normal !important;
}

@media (max-width:1700px) {
    .select2-container--open {
        width: 13vw !important;
    }
}

@media (max-width:1400px) {
    .select2-container--open {
        width: 11vw !important;
    }
}

@media (max-width:1200px) {
    .select2-container--open {
        width: 10vw !important;
    }
}

@media (max-width:768px) {
    .select2-container--open {
        width: 73vw !important;
    }
}

@media (max-width:700px) {
    .select2-container--open {
        width: 70vw !important;
    }
}

@media (max-width:650px) {
    .select2-container--open {
        width: 68vw !important;
    }
}

@media (max-width:600px) {
    .select2-container--open {
        width: 65vw !important;
    }
}

@media (max-width:550px) {
    .select2-container--open {
        width: 60vw !important;
    }
}

@media (max-width:500px) {
    .select2-container--open {
        width: 55vw !important;
    }
}

@media (max-width:450px) {
    .select2-container--open {
        width: 55vw !important;
    }
}

@media (max-width:400px) {
    .select2-container--open {
        width: 45vw !important;
    }
}

@media (max-width:350px) {
    .select2-container--open {
        width: 40vw !important;
    }
}

@media (max-width:330px) {
    .select2-container--open {
        width: 30vw !important;
    }
}

@media only screen and (width: 375px) and (height: 667px) {
    .select2-container--open {
        width: 50vw !important;
    }
}
@media only screen and (width: 414px) and (height: 896px) {
    .select2-container--open {
        width: 55vw !important;
    }
}

@media only screen and (width: 390px) and (height: 844px) {
    .select2-container--open {
        width: 50vw !important;
    }
}

@media only screen and (width: 430px) and (height: 932px) {
    .select2-container--open {
        width: 55vw !important;
    }
}

@media only screen and (width: 540px) and (height: 720px) {
    .select2-container--open {
        width: 65vw !important;
    }
}

/*fin estilos de select2 buscador*/

/*animacion de catalogos*/

.animated {
    -webkit-animation-duration: 1s;
       -moz-animation-duration: 1s;
         -o-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
       -moz-animation-fill-mode: both;
         -o-animation-fill-mode: both;
            animation-fill-mode: both;
  }

.animated.bounce {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
  }

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
    40% {-webkit-transform: translateY(-30px);}
    60% {-webkit-transform: translateY(-15px);}
  }
  
  @-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
    40% {-moz-transform: translateY(-30px);}
    60% {-moz-transform: translateY(-15px);}
  }
  
  @-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
    40% {-o-transform: translateY(-30px);}
    60% {-o-transform: translateY(-15px);}
  }
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
  }

  .animacion-copy {
    position: relative;
    z-index: 999;
  }
  
/*fin animacion de catalogos*/

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    z-index: 1112;
}
 
/**/


#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  #myImg:hover {opacity: 0.7;}
  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    z-index: 9999;
  }
  
  /* Modal Content (image) */
  .modal-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
  }
  
  /* Caption of Modal Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    text-transform: uppercase;
  }
  
  /* Add Animation */
  .modal-content, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }

.product {
    border: 1px solid #eeeeee;
    max-width: 400px; 
}
.modificador-productos-detalles {
    background-color: #f7f7f7;
}

.modificador-productos-detalles h5 {
    font-size: 15px;
}

.modificador-productos-detalles a {
    text-decoration: none;
}

.clase-producto {
    font-size: 11px !important;
}

.img-producto {
    width: 100%;
}

.img-link-producto {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.overdrive {
    position: relative;
}

.btn-add-to-detalles, .btn-product-view-details {
    opacity: 0;
    height: auto;
    margin: 0;
    -webkit-transition: 400ms;
    -o-transition: 400ms;
    transition: 400ms;
    position: absolute;
    bottom: 0;
    left: -60px;
}

.btn-product-view-details {
    left: auto;
    bottom: 0;
    right: -60px;
}

.btn-color-detalles {
    width: 115px;
    color: #fff;
    background-color: #000;
    border-color: #000;
    padding: 5px 5px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width:1200px) {
    .btn-color-detalles {
        max-width: 100px;;
    }
}

.btn-color-detalles:hover {
    background-color: #171B2D;
    color: white;
}


.btn-detalles-modificador {
    background-color: white;
    border: 1px solid #000;
    color: #000;
}

.btn-detalles-modificador:hover {
    background-color: #000;
    color: white;
}

.card-producto {
    overflow: hidden;
} 

.card-producto:hover .btn-add-to-detalles{
    left: 0;
    opacity: 1;
}

.card-producto:hover .btn-product-view-details {
    left: auto;
    opacity: 1;
    right: 0;
}

@media (max-width:768px) {
    .card-producto {
        max-width: 400px;
        overflow: hidden;
    }
    .modficador-pading-productos-buscador {
        padding-top: 0px !important;
    }
    .modficador-margin-productos-buscador {
        margin-top: 0px;
    }
}

.indicaciones-detalles {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.indicaciones-detalles:hover {
    color: #737373;
    text-decoration: none;
}

.product-title {
    font-weight: 600;
    line-height: 1.42857143;
    color: #333333;
    font-size: 2rem;
}

.short-description {
    color: #777777;
    font-size: 14px;
}

.especificaciones-prodcutos {
    line-height: 1.7;
    color: #777777;
    font-size: 14px;
}

.pull-left {
    float: left;
}

.img-marca-productos {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;

}

.descripcion-corta-productos {
    color: rgb(119, 119, 119);
}

.tab-content {
    padding: 15px;
    border: 1px solid #eeeeee;
}

@media(max-width:992px) {
    .margin-productos-relacionados {
        margin-top: 4rem;
    }
}

.modificador-prev-marcas {
    left: -50px !important;
    overflow: hidden;
}

.modificador-next-marcas {
    right: -50px !important;
    overflow: hidden;
}

@media(max-width:450px) {
    .modificador-prev-marcas {
        left: -25px !important;
        overflow: hidden;
    }
    
    .modificador-next-marcas {
        right: -25px !important;
        overflow: hidden;
    }
}

.servles {
    max-width: 100%;
}

.pagination {
    flex-wrap: wrap !important;
}

@media (max-width: 992px) {
    .card-horizontal {
        flex-direction: column !important;
    }
}


/*css industrial **/

/* .fondo-index-industrial {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url('../img/industrial/fondo.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; 
}

.fondo-index-industrial::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.599) 0.17%, rgba(255, 0, 0, 0.588) 104.33%); 
}

.contendor-fondo-industrial-index {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-left: 140px;
    width: 912px;
    margin-top: 100px;
} */

.modificador-indsutrial-fondo::before {
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.599) 0.17%, rgba(255, 42, 0, 20%) 104.33%) !important; */
}

@media(max-width:992px) {
    .modificador-texto-index-industral {
        font-size: 6dvw;
    }
}

@media(max-width:620px) {
    .modificador-contenedor-fondo-index-industrial {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        padding: 1em;
    }
    .modificador-texto-index-industral {
        text-align: left;
    }
}


.texto-index-industrial {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 140% */
    text-transform: uppercase;
}

.descripcion-industrial-index {
    color: #fff;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; 
    padding-left: 2rem;
}

@media (max-width: 1100px) {
    .contendor-fondo-industrial-index {
        width: 700px;
        margin: 200px 0px 0px 30px;
    }
    .modificador-texto-industrial {
        font-size: 35px;
    }
}
@media (max-width: 768px) {
    .contendor-fondo-industrial-index {
        width: 100%;
        padding: 100px 20px 0 20px;
        margin: 0;
    }
}
@media (max-width: 500px) {
    .contendor-fondo-industrial-index {
        width: 100%;
        padding: 20px 20px 0 20px;
        margin: 0;
        gap: 10px;
    }
    .modificador-texto-industrial {
        font-size: 26px;
    }
    .descripcion-industrial-index {
        font-size: 20px;
    }
    .modificador-texto-industrial {
        width: 80%;
    }
}


.mt-seccion-industrial {
    margin-top: 1rem;
}

.texto-maquinaria {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
}

.contenedor-categorias-industrial {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.categorias-section-industrial {
    display: flex;
    height: 93px;
    padding: 30px 17px;
    align-items: center;
    flex: 1;
    border-radius: 58px;
    background: #F8F7F7;
    margin-right: 10px;
}

.categorias-section-industrial:hover {
    background: #f00;
}

.categorias-section-industrial:hover  a {
    text-decoration: none;
    color: white;
}
.categorias-section-industrial:hover  p {
    border-left: 1px solid white;
    color: white;
}

.enlace-categorias-industrial {
    text-decoration: none !important;
}

.cont-img-indus2 {
    width: 50px;
    margin-right: 10px;
}
.img-industrial-icon-2,
.img-industrial-icon {
    width: 100%;
}

.img-blanco-industrial-icon-2,
.img-blanco-industrial-icon {
    width: 100%;
    display: none;
}

.categorias-section-industrial:hover .img-industrial-icon {
    display: none;
}
.categorias-section-industrial:hover .img-blanco-industrial-icon {
    display: block;
}

.entrega-industrial:hover {
    background-color: #f00;
}
.entrega-industrial:hover  a{
    text-decoration: none;
    color: white;
}
.entrega-industrial:hover  p{
    border-left: 1px solid white;
    color: white;
}

.entrega-industrial:hover .img-industrial-icon-2 {
    display: none;
}
.entrega-industrial:hover .img-blanco-industrial-icon-2 {
    display: block;
}

.categorias-texto-industrial {
    border-left: 1px solid black;
    padding-left: 15px;
}

.mt-categoria-industrial {
    margin-top: 3rem;
}

.mt-seccion-dos-industrial {
    margin-top: 5rem;
}

.descripcion-industrial-fabricantes {
    color: #000;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
}

.contendor-entrega-industrial {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.entrega-industrial {
    display: flex;
    height: 93px;
    padding: 30px 17px;
    align-items: center;
    flex: 1;
    border-radius: 58px;
    background: #F8F7F7;
    margin-right: 10px;
}

.distribuidor-industrial {
    position: relative;
    width: 100%;
    height: auto;
    background-image: url('../img/industrial/fondo-marcas.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; 
}

@media (max-width:1400px) {
    .distribuidor-industrial {
        height: 100%;
    } 
}

.pt-marcas-industrial {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.marcas-industriales {
    width: 100%;
    padding-left: 5rem;
    padding-right: 5rem;
    padding-top: 1rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.distribuidor-item-industrial {
    display: flex;
    width: 180px;
    height: 80px;
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #FFF;
}

.distribuidor-item img {
    transition: transform 0.3s ease-in-out;
}

.animacion-marca:hover {
    background: #edf0f1;
    border-radius: 5px;
}

.animacion-marca:hover .distribuidor-item {
    background: #edf0f1;
    border-radius: 5px;
}

.animacion-marca:hover .distribuidor-item img {
    transform: scale(1.1);
}

.mt-nuevo-productos-industrial {
    margin-top: 9rem;
}

.seccion-personal-industrial {
    margin-top: 5rem;
    display: flex;
    height: 364px;
    padding: 90px 100px 90px 100px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #EFEFEF;
}

.personal-texto-industrial {
    color: #000000;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.carousel-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:1024px) {
    .contendor-fondo-industrial-index {
        width: 100%;
        margin: 0;
        padding: 20px 20px;
    }
}


@media (max-width:748px) {
    .texto-maquinaria,
    .descripcion-industrial-fabricantes,
    .fz-20-responsive,
    .personal-texto-industrial {
        font-size: 20px;
    }

    .descripcion-industrial-index {
        font-size: 16px;
    }

    .modificador-texto-industrial {
        font-size: 25px;
    }
}



@media only screen and (width: 1024px) and (height: 1366px) {
    .contendor-fondo-industrial-index {
        width: 100%;
        margin: 0;
        margin-top: 15rem;
    }
}

@media only screen and (width: 912px) and (height: 1368px) {
    .contendor-fondo-industrial-index {
        width: 100%;
        margin: 0;
        margin-top: 15rem;
    }
}

@media only screen and (width: 820px) and (height: 1180px) {
    .contendor-fondo-industrial-index {
        width: 100%;
        margin: 0;
        margin-top: 10rem;
    }
}

@media only screen and (width: 540px) and (height: 720px) {
    .contendor-fondo-industrial-index {
        width: 100%;
        gap: 10px;
    }
}

@media only screen and (width: 280px) and (height: 653px) {
    .contendor-fondo-industrial-index {
        padding: 40px 10px 10px 10px;
    }

    .texto-index-industrial {
        margin: 0;
    }

    .texto-index-industrial,
    .descripcion-industrial-index,
    .fz-16-responsive {
        font-size: 16px;
    }

    .modificador-texto-industrial,
    .descripcion-industrial-fabricantes,
    .texto-maquinaria,
    .fz-20-responsive {
        font-size: 20px;
    }
    .modificador-texto-industrial {
        width: 100%;
    }
    .modificador-buscador-industrial {
        margin-top: -70px !important;
    }
    .mt-seccion-industrial {
        margin-top: 3rem;
    }
} 

@media (max-width:768px) {
    .contenedor-categorias-industrial {
        display: none;
    }
    .marcas-industriales {
        display: none;
    }

    .seccion-personal-industrial {
        padding: 20px;
    }
}


/*Fin de estuilos industrial index*/

/*inicio de modal buscador*/

.buscador-modal {
    width: 100%;
    display: flex;
    background: white;
    border: 5px solid white;
    border-radius: 30px;
}

.moda-indus,
.moda-auto {
    width: 50%;
    position: relative;
}

.border-derecho {
    border-right: 5px solid white;
    border-radius: 30px;
}

.border-izquierdo {
    border-left: 5px solid white;
    border-radius: 30px;
}

.moda-auto::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.599) 0.17%, rgba(255, 0, 0, 0.588) 104.33%);
    border-radius: 30px;
}
.moda-indus::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0.17%, rgba(13, 0, 189, 0.40) 104.33%);
    border-radius: 30px;
}

.img-fondo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.contenedor-modal-auto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; /* Para centrar el texto */
    color: white;
}

.contenedor-modal-industrial p,
.contenedor-modal-auto p {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.contenedor-modal-industrial a,
.contenedor-modal-auto a {
    font-size: 16px;
    color: white;
    font-weight: bold;
    background-color: red;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}

.contenedor-modal-industrial a:hover,
.contenedor-modal-auto a:hover {
    background-color: white;
    color: #000;
}

.contenedor-modal-industrial {
    position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center; /* Para centrar el texto */
        color: white;
}

.modal-content {
    background: transparent;
}

.modal-header {
    border-bottom: 1px solid transparent !important;
} 

@media (max-width:992px) {
    .img-fondo {
        height: 100%;
    }
    .contenedor-modal-industrial p,
    .contenedor-modal-auto p {
        font-size: 20px;
        color: white;
        font-weight: bold;
    }
    
}

@media (max-width:768px) {
    .buscador-modal {
        flex-direction: column;
    }

    .moda-indus,
    .moda-auto {
        width: 100%;
    }

    .img-fondo {
        width: 100%;
        object-fit: cover;
    }

    .moda-indus::before {
        height: 100%;
    }
}


/*find  de modal buscador*/

/*inicio de micrositios*/

.fondo-micrositio {
    width: 100%;
    height: 60dvh;
}

.img-fondo-micrositio {
   width: 100%; 
   height: 100%;
} 

@media(max-width:1400px) {
    .fondo-micrositio {
        height: 100%;
    } 
}

.catalogos-micrositios {
    position: relative;
    background-image: url('../img/micro-sitios/fondo-catalogo.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 4em;
}

.catalogos-micrositios::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
}

.contendor-textos {
    padding: 6rem 2rem;
}

.img-catalogos-micrositios {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 5rem;
}

.cont-preguntas {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.preguntas-frecuentes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 4rem;
}

.pregunta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.pregunta i {
    color: #EB3300;
}

.pregunta h5 {
    color: #191D2E;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.pregunta-frecuente-micro {
    display: flex;
    width: 100%;
    padding: 30px;
    border-radius: 58px;
    background: #EFEFEF;
}

.respuesta-pregunta {
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px 0px;
    background: #EFEFEF;
}

details[open]  {
    background-color: transparent;
}


details[open] i {
    color: white;
    animation: rotate-icon 0.6s ease-in-out both;
} 

details[open] summary ~ * {
    animation: swing-in-top-fwd 2s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
} 

details[open] .pregunta {
    background-color:  var(--color-fondo-pregunta, #ed3300ff);
    padding: 1rem;
    border-radius: 20px 20px 0px 0px;
    color: white;
}

details[open] .pregunta h5 {
    color: white;
}

details[open] .respuesta-pregunta {
    padding: 1rem;
    border-radius: 0px 0px 20px 20px;
}


details:not([open]) .respuesta-pregunta {
    animation: scale-out-top 3s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@keyframes scale-out-top {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(0);
              transform: scale(0);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
      opacity: 1;
    }
  } 




@keyframes swing-in-top-fwd {
    0% {
      -webkit-transform: rotateX(-100deg);
              transform: rotateX(-100deg);
      -webkit-transform-origin: top;
              transform-origin: top;
      opacity: 0;
    }
    100% {
      -webkit-transform: rotateX(0deg);
              transform: rotateX(0deg);
      -webkit-transform-origin: top;
              transform-origin: top;
      opacity: 1;
    }
} 

@keyframes rotate-icon {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}





/***** variantes de marca 3 *****/

.marca-micrositio {
    background-color: #000;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contenedor-marca-micrositio {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px 
}

.img-marca-individual-micrositio {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 350px;
    border-radius: 30px;
}

.marca-micrositio-individual {
    width: 60%;
}

.sobre-la-marca-micrositio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    width: 600px;
}

.sobre-la-marca-micrositio  h3 {
    text-align: left;
    font-weight: 600;
} 

/***** fin de variantes de marca 3 *****/



.img-logo-marca-individual-micrositio {
    width: 208px;
    height: 148px;
}

@media(max-width:500px) {
    .img-logo-marca-individual-micrositio {
        width: 100%;
    }
}

.refacciones-marca-micrositio {
    display: flex;
    height: 364px;
    padding: 50px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #000;
}

.my-7 {
    margin-top: 7rem;
    margin-bottom: 7rem;
}

.contenido-refacciones-marca-micrositio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 20px;
}

.contenido-refacciones-marca-micrositio h3 {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; 
}

.contenido-refacciones-marca-micrositio a {
    width: 260px;
    display: flex;
    padding: 20px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 46px;
    background: #F00;
    color: white;
    text-decoration: none;
}

.display-carousel-micrositio {
    display: none;
}


@media(max-width:768px) {
    .marca-micrositio-individual {
        width: 60%;
        height: auto;
    }
    .modificador-marca-micrositio {
        margin-top: -4em !important;
    }

    .contenedor-marca-micrositio {
        flex-direction: column;
    }

    .img-marca-individual-micrositio {
        height: 250px;
    }

    .contendor-textos p,
    .cont-preguntas p,
    .sobre-la-marca-micrositio p {
        font-size: 16px;
    }

    .contendor-textos h3,
    .cont-preguntas h3,
    .sobre-la-marca-micrositio h3,
    .contenido-refacciones-marca-micrositio h3 {
        font-size: 25px;
    }

    .contenido-refacciones-marca-micrositio p {
        text-align: center;
        font-size: 16px;
    }

    .contenido-refacciones-marca-micrositio a {
        width: 200px;
        font-size: 16px;
        padding: 10px;
    }

    .img-catalogos-micrositios {
        display: none;
    }
    .display-carousel-micrositio {
        display: block;
    }
}

@media(max-width: 510px) {
    .img-marca-individual-micrositio {
        width: 100%;
    }
    .sobre-la-marca-micrositio {
        width: 100%; 
    }
    .modificador-marca-micrositio {
        margin: 0px;
        padding-top: 5em !important;
    }
}

.row-gap-1 {
    row-gap: 1rem;
}

.img-novedades-inicio {
    width: 350px;
    height: 350px;
}

.img-fondo-micrositio-seccion-dos {
    background-image: url('../img/micro-sitios/nsk/fondo.png');
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.contenedor-descripcion-marca-micrositio {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.descripcion-uno-marca-micro {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.descripcion-dos-marca-micro {
    width: 50%;
}

.img-resolucion-marca-micro {
    width: 50%;
}

@media(max-width:768px) {
    .contenedor-descripcion-marca-micrositio {
        flex-direction: column;
        gap: 25px;
    }
    .descripcion-uno-marca-micro {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .descripcion-uno-marca-micro,
    .descripcion-dos-marca-micro {
        width: 100%;
    }
    .img-resolucion-marca-micro {
        width: 60%;
    }
}

.contenedor-opciones-marca {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    padding: 1rem;

}

.contenido-uno-opciones, 
.contenido-dos-opciones, 
.contenido-tres-opciones {
    width: 25rem;
    height: 15rem;
    position: relative;
}

.contenido-uno-opciones:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(50deg, rgb(134 121 121) 0%, rgba(0, 0, 0, 0.70) 100%);
    z-index: 1;
}
.imagen-opciones-marca-uno {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: -1;
}

.texto-marca-opciones-marca {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.contenido-dos-opciones:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(50deg, rgb(134 121 121) 0%, rgba(0, 0, 0, 0.70) 100%);
    z-index: 1;
}

.contenido-tres-opciones:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(50deg, rgb(134 121 121) 0%, rgba(0, 0, 0, 0.70) 100%);
    z-index: 1;
}

.texto-marca-opciones-marca p {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-wrap: pretty;
}

/*fin de micrositios*/

 .tamaño-imgane-card {
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-tamaño-card {
    height: 26rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-botton-clientes {
    background: #AB0F0F;
}

.img-responsive {
    width: 90% !important;    
}

.img-tamaño-card img {
    max-block-size: -webkit-fill-available;
}

@media (max-width:600px) {
    .tamaño-imgane-card {
        height: 19rem;
    }
}

.tamano-img-carousel {
    width: 80%;
}

.modificador-galeria-imagenes-productos {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
    
.galeria-imagenes-producto {
    display: flex;
    flex-direction: column;
    width: 5rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.galeria1 {
    max-width: 100%;
    cursor: pointer;
}

@media(max-width:768px) {
    .modificador-galeria-imagenes-productos {
        flex-direction: column-reverse;
    }
    .galeria-imagenes-producto {
        width: 100%;
        height: 4rem;
        flex-direction: row;
    }
    .galeria1 {
        max-width: 100%;
        height: 100%;
    }
}

/**modal de industrial y de automotriz*/

.modal-titulo {
    color: white;
    margin: 0;
    margin-top: 5px;
    
}
.producto-modal-buscador {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 1rem;
    color: white;
    font-size: 16px;
}

.modal-contenido {
    margin-top: 1rem;
}

.btn-modal-automotriz {
    background: #AB0F0F !important;
    border:  #AB0F0F  !important;
}

.modificador-modal {
    padding: 0  !important;

}
.contenedor-modal-busqueda {
   position: relative;
   width: 100%;
   height: 100%; 
   display: flex;
   justify-content: center;
   align-items: center;
} 
.modificador-modal-dialog {
    width: 100%;
}
.btn-modal-industrial {
    background: #f00 !important;
    border: #f00 !important;
}

.btn-modal-automotriz:hover,
.btn-modal-automotriz:focus,
.btn-modal-automotriz:active,
.btn-modal-industrial:hover,
.btn-modal-industrial:focus,
.btn-modal-industrial:active {
    background: #EFEFEF  !important;
    color: black  !important;
    border-color: #000000  !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.01)  !important;
}

/**imagenes de iso para la parte industrial*/

.contenedor-iso {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.contenedor-imagen-1,
.contenedor-imagen-2
 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enlace-iso {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen-iso {
    width: 50%;
}

@media (max-width:768px) {
    .imagen-iso {
        width: 100%; 
    }
}


.tarjeta-contenedor-imagen {
    width: 40%;
}

.a-img-aca {
    display: block;
    height: 100%;
    background-color: red;
}

.tarejta-imagen-articulo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.modificador-body-articulo {
    width: 50%;
}

@media(max-width:992px) {
   .tarjeta-contenedor-imagen {
    width: 100%;
   } 
   .modificador-body-articulo {
    width: 100%;
   }
}

/***/
.contenedor-de-valores {
    display: flex;
     flex-wrap: wrap;
    justify-content: center;
    padding-left: 5rem;
    padding-right: 5rem;
    width: 100%;
    gap: 20px;
}

.circulo-icono {
    border: 1px solid #AB0F0F;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circulo-icono i {
    color: #AB0F0F;
}

.contenedor-dos-valores {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 17rem;
    height: 20rem;
    gap: 30px;
    
}

.descripcion-valores {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 12rem;
}

.borde-descripcion {
    border-right: 1px solid #AB0F0F;
}

.linea-valor {
    position: relative;
}

.linea-valor::before {
    position: absolute;
    content: '';
    width: 30%; 
    height: 3px; 
    background-color: #AB0F0F; 
    top: 100%; 
    left: 0; 
    transform: translateY(-50%);
}

.fila-valores {
    display: flex;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.w-60 {
    width: 75%;
}

@media (max-width:768px) {
    .contenedor-de-valores {
        padding-left: 1rem;
    padding-right: 1rem;
    }
}

 .contenido-centrado {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    
}
.descripcion-valores ul {
    text-align: center;
    list-style-type: none;
    padding: 0
}

.contenido-img-centrado {
    display: flex;
    justify-content: center;
    padding: 0;

}

.tamano-card {
    height: auto;
}

.centro-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (width: 820px) and (height: 1180px) {
    .tamano-card {
        height: 22rem;
    }

}



/*-------------------------------------------
---------------------------------------------
baner temporal
---------------------------------------------
---------------------------------------------*/





.banner-contador {
    width: 100%;
    height: 50px;
    background-color: red; 
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.div-contador {
    width: 250px;
    height: 100%;
    background-color: #E8F9FD; 
    color: #000;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    font-family: 'Orbitron', sans-serif; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2; 
    padding: 0 10px; 
}

.texto-dinamico {
    position: absolute;
    white-space: nowrap;
    font-size: 20px;
    animation: scrollText 15s linear infinite;
    z-index: 1; 
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 600px) {
    .banner-contador {
        height: 40px;
    }

    .div-contador {
        width: 150px;
        font-size: 14px;
    }

    .texto-dinamico {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .banner-contador {
        height: 30px;
    }

    .div-contador {
        width: 130px;
        font-size: 12px;
    }

    .texto-dinamico {
        font-size: 14px;
    }
}


/*---------------------
-
- Banner promocion industrial
-
------------------------*/

.banner-industrial {
    width: 100%;
    height: 80px;
    background-color: #0e087c;
    position: relative;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.texto-banner-industrial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.texto-banner-industrial h1 {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.texto-banner-industrial h2 {
    color: white;
    font-size: 12px;
    margin: 0;
}

.reloj-banner-industrial {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.item-banner-industrial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.caja-blanca-banner-industrial {
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.caja-blanca-banner-industrial span {
    font-weight: bold;
}

.texto-reloj-banner-industrial {
    color: white;
    font-size: 12px;
    font-weight: bold;
    margin: 0;
}

.enlace-banner-industrial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.btn-banner-industrial {
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 30px;
    background: linear-gradient(70deg, rgba(82,247,214,1) 42%, rgba(27,221,246,1) 100%);
    font-size: 12px;
    border-radius: 5px;
    /* margin-top: -20px; */
}

.btn-banner-industrial:hover {
    text-decoration: none;
    background: linear-gradient(70deg, rgba(27,221,246,1) 39%, rgba(81,246,211,1) 100%);
}

#cerrar-banner-industrial {
    position: absolute;
    color: white;
    right: 20px;
    top: 50%;
    transform: translatey(-50%);
}

/*---------------------
-
- clientes
-
------------------------*/

.color-login-fondo {
    background: #e6e6e6;
}

.login-clientes {
    width: 50%;
    height: 100%;
    margin: auto;
    padding: 64px 32px;
    background: #eeefef;
    position: relative;
    border-radius: 30px;
}

.icon-login {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #45a5be;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-login i {
    color: white;
    font-size: 24px;
}

.title-login-cliente {
    text-align: center;
    margin: 0;
    padding-bottom: 16px;
    color: rgb(102, 102, 102);
}

.cont-login {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.input-login {
    width: 90%;
    padding: 30px;
    border-radius: 10px;
    border: none;
}

.icono-input-login {
    position: absolute;
    left: 40px;
    font-size: 24px;
    color: #848687;
} 

.icono-input-login.hidden {
    display: none;
}

.input-submit-login {
    width: 90%;
    padding: 15px;
    background: #3f9ab2;
    border: none;
    box-shadow: none !important;
    border-radius: 10px;
}

.input-submit-login:hover {
    background: #50a9c2;
}

.input-submit-login:active {
    background: #50a9c2 !important;
    border: none !important;
}

.input-submit-login:focus {
    background: #50a9c2 !important;
    border: none !important;
}

.btn-enlace-login {
    padding-left: 30px;
    color: rgba(0, 0, 0, 0.411);
}

.btn-enlace-login:hover {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.692);
}

@media(max-width:992px) {
    .login-clientes {
        width: 70%;
    }
}

@media(max-width:768px) {
    .login-clientes {
        width: 100%;
    }
}

.btn-sesion-login:hover {
    text-decoration: none;
    color: #50a9c2;
}

/*---------------------
-
- clientes lista
-
------------------------*/

.fondo-negro-lista {
    width: 50%;
    margin: auto;
    height: auto;
    background: #000;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-indicacion-lista {
    background: red;
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 5px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}

.texto-general-lista {
    margin: 0;
    color: white;
}

.texto-info-vigencia {
    text-align: center;
    padding: 8px;
    background: #c00000;
    color: white; 
    margin-bottom: 3px;
    text-transform: uppercase;
    font-weight: 900;
}

.texto-info-aviso {
    font-size: 12px;
    text-align: center;
    padding: 8px;
    background: black;
    color: white;
    font-weight: 900;
}

.card-product-lista {
    border: 2px solid var(--color-border-lista) !important;
    border-radius: 0 30px 30px 30px;
    overflow: hidden;
}

/* .card-product-lista a {
    padding: 10px;
} */

/*---------------------
-
- modificador link del menu ecomerce
-
------------------------*/

.modificador-ecomerce {
    left: -25px;
}

.color-red-ecomerce {
    background: #c00000 !important;
    height: 100%;
}

.menuHover:hover .color-red-ecomerce {
    background: #000 !important;
}

/* @media(max-width:996px) {
    .color-red-ecomerce {
        background: transparent !important;
        height: 100%;
    } 
} */


/* @media (max-width:1315px) {
    .navbar {
        flex-direction: column;
    }
} */

@media (max-width:995px) {
    .navbar {
        flex-direction: row;
    }
}

.container-list {
    padding: 0 10rem;
}

@media (max-width:1350px) {
    .container-list {
        padding: 0 1rem;
    }
}

/*---------------------
-
- modificador modal de automotriz
-
------------------------*/

  .modal-dialogB {
    margin: 15% auto;
    width: 80%;
    max-width: 450px;
  }
  
  .modal-contentB {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
  }
  
  .modal-headerB {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  
  .modal-titleB {
    margin: 0;
    font-size: 1.25rem;
  }
  
  .closeB {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
  
  .closeB:hover,
  .closeB:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-bodyB {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;

  }
  

  .search-containerB {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  .form-controlB {
    width: 100%;
    padding: 10px 40px 10px 10px; 
    border: 1px solid #ccc;
    border-radius: 5px; 
    font-size: 16px;
    text-align: center; 
  }

  .formularioB {
    width: 100%;
  }
  
  .search-buttonB {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #888;
  }

  .form-controlB::placeholder {
    text-align: center;
  }
 
  .form-controlB::-webkit-input-placeholder {
    text-align: center;
  }

  .form-controlB::-moz-placeholder {
    text-align: center;
  }

  .transparent {
    background: transparent !important;
  }

  .ui-front {
    z-index: 9999 !important;
  } 

  .ui-widget-content {
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  @media(max-width: 600px) {
    .ui-widget-content {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
    }

    #ui-id-2 {
        width: 90% !important;
        left: 0 !important;
        right: 0 !important;
        margin: auto !important;
    }
  }

/*---------------------
-
- Valores REDISEÑO
-
------------------------*/

.fondo-imagen-valores {
    width: 100%;
    height: 94.5vh;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 60%) 50%, rgba(0, 0, 0, 60%)), url(../img/valores.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarjeta-general-valores {
    width: 100%;
    height: 185px;
    position: relative;
    transition: background-color 0.4s ease;
    overflow: hidden;
}

.tarjeta-general-valores:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #c00000;
    transition: 0.5s ease;
}

.tarjeta-general-valores:hover {
    color: #1e1e2b;
    transition-delay: 0.5s;
    background-color: #c00000 !important;
}

.tarjeta-general-valores:hover h2,
.tarjeta-general-valores:hover p,
.tarjeta-general-valores:hover i {
    transition-delay: 0.5s;
    color: white !important;
}

.tarjeta-general-valores:hover::before {
    width: 100%;
}

.tarjeta-individual-valores {
    width: 100%;
    height: 175px;
    position: relative;
    overflow: hidden;
}

.tarjeta-individual-valores:hover {
    rotate: 8deg;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.linea-roja-final {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    bottom: 0;
}

.circulo-icono {
    width: 40px;
    height: 40px;
}

.tarjeta-individual-responsabilidad {
    width: 100%;
    height: auto;
}

.tarjeta-individual-responsabilidad:hover {
    text-decoration: none;
}

.titulo-valor {
    margin-top: 10px;
    font-size: 16px;
}

.texto-valor {
    font-size: 14px;
}

.margen-text-valores {
    margin: 1rem 0px;
}

.margen-responsabilidad {
    margin-top: 1rem;
}

/* .modifcador-valores {
    margin-top: 44px;
} */

.fa-xl {
    font-size: 1.5em;
}

.tarjeta-general-valores p, 
    .tarjeta-individual-valores p, 
    .texto-valor{
        font-weight: 600;
    }

@media (max-width: 1520px) and (max-height: 860px) {
    .margen-text-valores {
        margin: 1rem 0px; 
    }

    .margen-responsabilidad {
        margin-top: 1rem; 
    }
}

@media (max-width: 1280px) and (max-height: 800px) {
    .fondo-imagen-valores {
        height: 84vh;
    }
}


@media (max-width:1820px) and (max-height: 768px) {
    .modificador-cont {
        width: 100% !important;
    }
    .tarjeta-general-valores {
        height: 140px;
    }
    .tarjeta-general-valores h2,
    .tarjeta-individual-valores h2,
    .titulo-valor
     {
        font-size: 13px;
    }
    .tarjeta-general-valores p, 
    .tarjeta-individual-valores p, 
    .texto-valor{
        font-size: 12px;
        font-weight: 600;
    }
    /* .tarjeta-general-valores i,
    .tarjeta-individual-valores i {
        font-size: 10px;
    } */
    .circulo-icono {
        width: 30px;
        height: 30px;
    }
    .tarjeta-individual-valores {
        height: 144px;
    }
    .tarjeta-individual-responsabilidad p  {
        font-size: 10px;
    }
    .margen-text-valores {
        font-size: 16px;
    }
    
}

/* Si el ancho es menor a 992px (ej. tablets o pantallas pequeñas) */
@media (max-width: 992px) {
    .margen-text-valores {
        margin: 2rem 0px ;
    }

    .margen-responsabilidad {
        margin-top: 2.5rem;;
    }
}

.rounded-2x {
    border-radius: 20px;
}

@media(max-width:992px) {
    .fondo-imagen-valores {
        height: auto;
    }
    .tarjeta-general-valores,
    .tarjeta-individual-valores {
        margin: 10px 0px;
    }
    .tarjeta-general-valores {
        height: auto;
    }
    .tarjeta-general-valores {
        text-align: justify;
    }
    .tarjeta-individual-valores {
        height: 190px;
    }
    .tarjeta-individual-responsabilidad {
        margin-top: 10px !important;
        margin-bottom: 20px;
    }
    .modifcador-valores {
        margin-top: 0px;
    }
}

.background {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.589) 50%, rgba(28, 27, 27, 0.362)), url(../img/bolsa-trabajo.jpg);
    background-position: center center;
    background-size: contain;
}

.tarjeta-ofrecemos {
    position: relative;
    /* width: 250px; */
    height: 110px;
    border: 3px solid rgb(206, 15, 15);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    padding: 20px; 
}

.unete-texto{
    font-size: 42px;
}

.tarjeta-ofrecemos p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: white;
}

.circulo-ofrecemos{
    position: absolute;
    background: #c00000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -30px;
}
.icono-beneficios {
    color: white;
    font-size: 17px;
}

.tarjeta-ofrecemos:hover {
    border-color: #c00000;
    background: #c00000;
    color: white;
}

.tarjeta-ofrecemos:hover .circulo-ofrecemos {
    background: white;
    border: 1px solid #c00000;
}

.tarjeta-ofrecemos:hover .icono-beneficios {
    color: #c00000;
}

.tarjeta-ofrecemos .circulo-ofrecemos,
.tarjeta-ofrecemos .icono-beneficios {
    transition: all 0.3s ease; 
}

.espacio-grid {
    padding-top: 2rem;
}

.contenedor-imagen {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .contenedor-imagen{
        flex-direction: column-reverse;
    }
    .background {
        background-size: cover;
    }

}

.curriculum-color {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-image: url('../img/patron.png');
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    
}

.circulo-curriculum {
    width: 60px;
    height: 60px;
    background: #c00000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icono-curriculum {
    font-size: 24px;
    color: white;
}


.formulario-diseno{
    display: flex;
    align-items: center;
    justify-content: center;
}

.contenido-forma {
    width: 400px;
    height: 350px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    
}

.form-curriculum {
    width: 100%;
    height: auto;
}

.text-formulario {
    font-weight: 700;
    color: rgb(0, 0, 0);
    padding-bottom: 20px;
}

.btn-padding {
    padding-top: 3rem;
}

@media(max-width:768px){
    .contenido-forma {
        width: 330px;
    }
    .text-curri {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}


.contenedor-ofrecemos {
    width: 100%;
    height: 90vh;
}

.fondo-ofrecemos{
    background: #2e2a28;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.image-reclutamiento {
    width: 21vw;
    max-height: 16vh;
    object-fit: contain;
}

.espaciado-ofrecemos {
    padding-top: 3vh;
}

.texto-ofrecemos {
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 2.4vh;
    padding-top: 2vh;
}

.contendor-caja-beneficios{
    border: 3px solid red;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%; 
    max-width: 600px; 
    height: 20vh; 
    border-radius: 20px;
    margin: 3vh 0;
}

.circulo-imagen-beneficios{
    position: absolute;
    top: -3vh; 
    width: 5vh;
    height: 5vh;
    background: white;
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-beneficio-card {
    font-size: 2vh; 
    font-weight: bold;
    color: white;
    padding: 0 1vw; 
    text-align: center;
}

@media(max-width: 1028px){
    .contenedor-ofrecemos {
        height: auto;
    }
}

@media (max-width:768px) {
    .fondo-ofrecemos {
        flex-direction: column-reverse;
        gap: 3rem;
    }
    .image-reclutamiento{
        width: 100%;
        max-height: 400px;
    }
    .unete-texto {
        text-align: center;
    }
}


/*-------seccion de redes sociales micrositio*/


.social-button {
    position: fixed;
    bottom: 230px;
    left: 42px;
    z-index: 99;
    /*display: none;*/
}

.pulse-boton-social {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    background-color: red;
    transition: all 0.3s ease;
    position: relative;
}

.pulse-boton-social i {
    font-size: 22px;
    color: white;
    position: absolute;
    transition: all 0.3s ease;
}

/* Control de visibilidad de los íconos */
.icon-close {
    opacity: 0;
    transform: rotate(-180deg);
}

.icon-share {
    opacity: 1;
}

/* Estilos para la lista de redes sociales */
.social-networks {
    position: absolute;
    top: 5px;
    left: 70px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.social-networks li {
    margin: 0;
}

.social-networks a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.facebook {
    background-color: #3b5998;
}

.instagram {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.tiktok-clas {
    background: black;
}

/* Mostrar menú al hacer hover o al estar activo */
.social-button:hover .social-networks,
.social-button:focus-within .social-networks {
    visibility: visible;
    opacity: 1;
    left: 70px;
}

/* Cambio de ícono al hover */
.social-button:hover .icon-share,
.social-button:focus-within .icon-share {
    opacity: 0;
    transform: rotate(180deg);
}

.social-button:hover .icon-close,
.social-button:focus-within .icon-close {
    opacity: 1;
    transform: rotate(0);
}

.social-networks a:hover {
    transform: scale(1.1);
}

.pulse-boton-social:hover {
    transform: scale(1.1);
}

@media (max-width:768px) {
    .social-button {
        bottom: 140px;
        left: 10px;
        display: block;
    }
}

.cont-popover {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-mod-popover{
    width: 25px;
    height: 25px;
    border-radius: 50px;
    border: 1px solid rgb(23, 27, 45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-mod-popover i {
    font-size: 16px;
    color: #0e087c;
}

.btn-mod-popover:hover {
    background-color: rgb(23, 27, 45);
    text-decoration: none;
}

.btn-mod-popover:hover i {
    color: white;
}

.web-social-media{
    position: fixed;
    top: 50%;
    transform: translateY(-50px);
}

.enlace-web-social-media {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.media__facebook {
    background-color: #3b5998;
}

.media__instagram {
    background: #d6249f;
}

.media__tiktok {
    background: black;
}

/*.enlace-web-social-media:hover {
    background: #F00;
}*/

.enlace-web-social-media:hover i {
    color: white;
}

@media(max-width: 768px) {
    .web-social-media{
        display: none;
    }
}