/* service-website
  001 - generales
  002 - side_bar
*/

/* 001 - generales */

html {
    box-sizing: border-box;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
}
    
*,
*::after,
*::before {
   box-sizing: inherit;
}
    
body {
   margin: 0;
   padding: 0;
   overflow-x: hidden;
}

ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p{
    padding: 0;
    margin: 0;
}

section, main{
    position: relative;
}

/*002 - side_bar*/

.side_bar{
    width: 80px;
    height: 100vh;
    background-color: #d88e26;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 25px 2px;
    z-index: 9999;
}

.ul_nav{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ul_nav li{
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    color: #fff;
    margin: 20px 0;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.a_nav {
    color: #fff;
    transition: 0.3s;
}

.ul_nav li:hover{
    transform: rotate(-90deg);
}

.button_nav_div{
  display: flex;
  flex-direction: column;
  align-items: center;

}

.btn_nav{
    height: 40px;
    width: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    background-color: transparent;
    outline: none;
    border: none;
    padding: 0; 
    align-items: center;
    justify-items: center;
    cursor: pointer;
    margin-top: 5px; 
}

.span_btn_nav{
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.btn_nav:hover .span_btn_1, .btn_nav:hover .span_btn_3, .btn_nav:hover .span_btn_4, .btn_nav:hover .span_btn_5, .btn_nav:hover .span_btn_6, .btn_nav:hover .span_btn_7, .btn_nav:hover .span_btn_9{
    background-color: #975f10;
}

.sub_nav{
    width: 360px;
    background-color: #161a2a;
    position: absolute;
    left: 80px;
    border-radius: 0 10px 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.a_nav_hidden{
    opacity: 1;
    visibility: visible;
}

.ul_sub_nav{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.ul_sub_nav li{
    background-color: #d88e26;
    padding: 8px;
    
}

.a_sub_nav{
    color: #161a2a;
    font-weight: 700;
    font-size: 1.1rem;
}

.sna{
    font-size: 0.65rem;
}




.nav_catalogo{
  position: absolute;
  top: 200px;
  right: 0;
  width: 150px;
  z-index: 800;
  background-color: #d88e26;
  padding: 15px;
  border-radius: 15px 0 0 15px;
}

.catalogos_ul li{
  padding: 5px 0;
  border-bottom: solid 2px #a8a8a8;
}

.nav_white{
  color: #fff;
}

/* From Uiverse.io by ubaidi10 */ 
.card_sidebar {
  width: 80%;
  height: fit-content;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
}

/* for all social containers*/
.socialContainer {
  width: 30px;
  height: 30px;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
}

.socialContainer .fa-brands{
  color: #fff;
}

/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
  transform: scale(1.5);
  border-radius: 15px;
}
/* twitter*/
.containerTwo:hover {
  background-color: #00acee;
  transition-duration: 0.3s;
  transform: scale(1.5);
  border-radius: 15px;
}
/* linkdin*/
.containerThree:hover {
  background-color: #b10000;
  transition-duration: 0.3s;
  transform: scale(1.5);
  border-radius: 15px;
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #25d366;
  transition-duration: 0.3s;
  transform: scale(1.5);
  border-radius: 15px;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.card:has(.socialContainer:hover) .socialContainer:not(:hover) {
  opacity: 0.1;
}

/*head*/

.hero_section{
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.hero_section{
    z-index: 800;
}

.graphicv_01{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 200;
}

.blur{
    height: 280vh;
    width: 50%;
    position: absolute;
    z-index: 810;
    background-color: #161a2a;
    top: -170px;
    overflow: hidden;
    animation: blurwindow 6s infinite;
}

.blur_bar{
    width: 70px;
    position: absolute;
    z-index: 815;
    height: 200%;
    background-color: #fff;
}

@keyframes blurwindow {
    0%{
        transform: translateX(100%) rotate(26deg);
        opacity: 0.6;
        filter: blur(4px);
    }
    50%{
        transform: translateX(15%) rotate(26deg);        
        opacity: 0.25;
        filter: blur(1px);
    }
    100%{
        transform: translateX(100%) rotate(26deg);        
        opacity: 0.6;
        filter: blur(4px);
    }
}


.graphici_01{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 830;
}

.hero_section_content{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    right: 0;
    z-index: 840;    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.productos_h3_i {
  position: relative;
  z-index: 700;
  text-align: center;
  padding-top: 20px;
}


.hero_section_img02{
    width: 45%;
    height: auto;
    position: absolute;
    right: 15%;
    top: 10%;
}

.hero_section_p{
    width: 100%;
    position: absolute;
    color: #e9e9e9;
    bottom: 25px;
    right: 10px;
    text-align: right;
    font-size: calc(2rem + 1vw);
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/*bienvenido*/

.bienvenidos_section{
    padding: 60px 0;
    position: relative;
    align-items: center;
    z-index: 700;
    display: flex;
}

em{
    color: #d88e26;
}

.bienvenidos_info{
    position: relative;
    width: 60%;
    z-index: 770;
}

.margin_left_100xp{
  padding-left: 100px;
}

.bienvenido_h3{
    margin-bottom: 20px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 2rem;
    text-align: center;
}

.bienvenidos_text{
    line-height: 1.5;
    text-align: justify;
    margin-top: 10px;
    color: #a8a8a8;
}

.bienvenidos_ul{
    list-style-type: disc;
    padding-left: 35px;
    line-height: 1.5;
    margin-top: 10px;
    color: #a8a8a8;
}

.bienvenidos_graphic_img{
    position: relative;
    width: 30%;
    min-width: 300px;
    object-fit: cover;
    z-index: 720;
}

.productos_section{
    width: 100%;
    height: auto;
    position: relative;
    background-color: #000;
}

.productos_grid{
    display: grid;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(auto-fill, minmax(min(450px, 100%), 1fr));
    justify-items: center;
    gap: 30px;
    position: relative;
    z-index: 500;
    padding-bottom: 50px;
}

.productos_item{
    width: 100%;
}

.productos_h2{
    position: relative;
    margin: 0 auto 40px;
    padding-top: 35px;
    text-align: center;
    z-index: 450;
    color: #fff;
}



.productos_flex_i{
  width: 100%;
  padding-left: 100px;
  position: relative;
  z-index: 470;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 120px;
}

.productos_flex_item{
  width: 40%;
}

.productos_flex_p{
  position: relative;
  z-index: 450  ;
  color: #a8a8a8;
  line-height: 1.4;
  margin-top: 20px;
  font-weight: 700;
  margin-right: 30px;
  text-align: justify;
}

.productos_flex_video{
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 480;
}

/* From Uiverse.io by ElSombrero2 */ 
.card {
    overflow: visible;
    width: 100%;
    height: 350px;
    position: relative;
  }

  .productos_a{
    color: #fff;
  }
  
  .content {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 300ms;
    box-shadow: 0px 0px 10px 1px #000000ee;
    border-radius: 5px;
  }
  
  .front, .back {
    background-color: #151515;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .back {
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .productos_card_img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
  }

  .back::before {
    position: absolute;
    content: ' ';
    display: block;
    width: 100%;
    height: 160%;
    background: linear-gradient(90deg, transparent, #ff9966, #ff9966, #ff9966, #ff9966, transparent);
    animation: rotation_481 5000ms infinite linear;
  }
  
  .back-content {
    position: absolute;
    width: 99%;
    height: 99%;
    background-color: #151515;
    border-radius: 5px;
    color: white;
    gap: 30px;
  }

  .productos_card_strong{
    position: absolute;
    z-index: 720;
    top: 20px;
    left: 20px;
    display: inline-block;
    padding: 10px;
    background-color: #040a3da6;
    border-radius: 3px;
    text-align: center;
    width: min-content;
  }
  
  .card:hover .productos_card_img {
    transform: scale(1.2);
  }
  
  @keyframes rotation_481 {
    0% {
      transform: rotateZ(0deg);
    }
  
    0% {
      transform: rotateZ(360deg);
    }
  }
  
  .front {
    transform: rotateY(180deg);
    color: white;
  }
  
  .front .front-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .front-content .badge {
    background-color: #00000055;
    padding: 2px 10px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    width: fit-content;
    font-size: 1.5rem;
  }
  
  .description {
    box-shadow: 0px 0px 10px 5px #00000088;
    width: 100%;
    padding: 10px;
    background-color: #00000099;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    transform: translateY(300px);
    transition: 0.3s;
    display: flex;
    justify-content: center;
  }
  
  .card:hover .description {
    transform: translateY(0);
  }

  .title {
    font-size: 1rem;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  .title p {
    width: 100%;
  }

  .title strong{
    color: #fff;
  }


  /*contacto*/

  .contacto_section{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding-top: 100px;
    padding-left: 100px;
    background-color: #011620;
  }

  .contacto_info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 40%;
    color: #d88e26;
    font-size: 1.3rem;
  }

  .contacto_h4{
    font-weight: 700;
  }

  .contacto_p{
    margin-top: 20px;
    font-style: italic;
    font-size: 1.5rem;
  }

  .contacto_ul{
    margin-top: 20px;
    margin-left: 5px;
  }

  .contacto_ul li{
    margin-top: 10px;
    font-family: 'Times New Roman', Times, serif;
  }

  .contacto_ul li i{
    margin-right: 10px;
    font-size: 1rem;
  }

  /* From Uiverse.io by Smit-Prajapati */ 
.orange {
  color: #ff7a01;
}

.form-container {
  max-width: 700px;
  margin: 30px;
  background-color: #001925;
  padding: 30px;
  border-left: 5px solid #ff7a01;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.heading {
  display: block;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-container .form .input {
  color: #87a4b6;
  width: 100%;
  background-color: #002733;
  border: none;
  outline: none;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
  border-left: 1px solid transparent;
}

.form-container .form .input:focus {
  border-left: 5px solid #ff7a01;
}

.form-container .form .textarea {
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  background-color: #013747;
  color: #ff7a01;
  font-weight: bold;
  resize: none;
  max-height: 150px;
  margin-bottom: 20px;
  border-left: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.form-container .form .textarea:focus {
  border-left: 5px solid #ff7a01;
}

.form-container .form .button-container {
  display: flex;
  gap: 10px;
}

.form-container .form .button-container .send-button {
  flex-basis: 70%;
  background: #ff7a01;
  padding: 10px;
  color: #001925;
  text-align: center;
  font-weight: bold;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.form-container .form .button-container .send-button:hover {
  background: transparent;
  border: 1px solid #ff7a01;
  color: #ff7a01;
}

.contacto_container_img{
  width: 100%;
  background-color: #000b21;
  display: flex;
  justify-content: center;
  padding: 30px;
}

.footer{
  padding-left: 100px;
  padding-top: 20px;
  padding-bottom: 50px;
  background-color: #011620;
  border-top: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffffd6;
}

.footer_section{
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.footer_section .fa-brands {
  margin: 0 10px;
  color: #ffffffd6;
  transition: 0.3s;
}

.footer_section .fa-brands:hover {
  transform: scale(1.1);
  color: #ff9966;
}

/*gafetes*/

.hero_section_general{
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.graphici_01_general{
  width: 100%;
  height: auto;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  z-index: 780;
}

.hero_section_p_general{
    width: 100%;
    color: #e9e9e9;
    text-align: center;
    font-size: calc(2rem + 1vw);
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contenido{
  background-color: #f0f0f0;
}

.contenido_section{
  width: 100%;
  padding-left: 80px;
  padding-top: 100px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contenido_flex{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px auto;
}

.contenido_description{
  margin: 30px auto 0;
  width: 80%;
  line-height: 1.5;
  text-align: justify;
  font-size: 1rem;
  font-weight: 700;
  color: #555;
}

.contenido_item{
  width: 30%;
}

.contenido_flex_description{
  width: 100%;
  color: #b6b6b6;
  font-size: 1.1;
  font-weight: 700;
}

.contenido_flex_img{
  width: 100%;
}

.contenido_flex_ul {
  margin-top: 20px;
  list-style-type: disc;
  color: #a8a8a8;
  font-weight: 700;
  padding-left: 20px;
}

.contenido_ol{
  font-size: 1.1rem;
  color: #a8a8a8;
  padding-left: 20px;
}

.contenido_flex_ul li, .contenido_ol li{
  margin-top: 15px;
}

.mb_20{
  margin-bottom: 20px;
}

.margin_lef120{
  margin-left: 120px;
}

.padding_top_80{
  padding-top: 80px;
}

.item_id{
  width: 40%;
}

.identifcaciones_tipos_flex{
  display: flex;  
  padding: 60px 0;
  padding-left: 60px;
}

.contenido_flex_ul_footer{
  color: #a8a8a8;
  font-weight: 500;
  list-style-type: disc;
}

.contenido_flex_ul_footer li{
  margin-top: 15px;
}

.lh_15{
  line-height: 1.5;
}

.margin_t0{
  margin-top: 0;
}

.width_80{
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.padding_t80{
  padding-top: 80px;
}

.productos_grid_promo{
    display: grid;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
    justify-items: center;
    gap: 30px;
    position: relative;
    z-index: 500;
    padding-bottom: 70PX;
}

.flex_uniforme{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 500;
  width: 60%;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;

}

.gris_65{
  color: #a8a8a8;
  font-weight: 700;
}

/*beneficos*/

.beneficios_section{
  width: 100%;
  padding-top: 80px;
  padding-bottom: 25px;
  padding-left: 100px;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.beneficios_h2{
  text-align: center;
  margin-bottom: 15px;
}

em{
  color: #d88e26;
}

.beneficios_grid{
  width: 80%;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
  gap: 35px;
}

.beneficios_grid_item{
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.beneficios_grid_span{
  display: inline-block;
  border-radius: 500%;
  background-color: #a9a9a9;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  transition-duration: 0.4s;
}

.beneficios_grid_span i{    
  font-size: 1.1rem;
  color: #fff;
}

.beneficios_grid_p{
  font-size: 1.1rem;
  font-weight: 700;
}

.beneficios_grid_item:hover .beneficios_grid_span{
  background-color: #e6652a;
  transform: scale(1.2);
}

.mapamental{
  text-align: center;
  width: 75%;
  max-width: 800px;
  display: inline-block;
  margin: auto;
}

/* 006 - print-publicity */

.print-publicity{
  padding: 20px 0;
  padding-left: 100px;
}

.print-h2{
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.print-leyenda{
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(3,18,119,1) 100%);
  padding: 25px 30px;
  margin: 15px auto 35px;
}

.print-leyenda p{
  text-align: center;
  color: #0ca5c4;
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
}

.print-leyenda em{
  color: #fff;
  font-size: 3rem;
  margin: 0 10px;
}

.print-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}

.print-item{
  display: flex;
  transition: 0.4s;
  justify-content: space-between;
  border-top: 1px solid #0ca5c4;
  border-right: 1px solid #0ca5c4;
  border-bottom: 1px solid #0ca5c4;
  border-radius: 0 8px 8px 0;
  transition: 0.4 ease-in-out;
}

.print-item:hover{
  display: flex;
  box-shadow: 0 0 5px 5px #dedede;
  transform: scale(1.03);
  border: none;
}

.print-img{
  width: 130px;
  object-fit: cover;
  overflow: hidden;
}

.print-img img{
  width: 130px;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-in-out;
}

.print-img img:hover{
  transform: scale(1.2);
}

.print-info{
  display: flex;
  max-width: 62%;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding-right: 15px;
  align-self: center;
}

.print-h4{
  color: #0ca5c4;
  font-weight: 700;
  margin: 0;
}

.print-ul{
  text-align: right;
  margin: 10px 0;
}

.print-a{
  text-decoration: none;
  color: #031277;
  font-weight: 700;
  font-size: 1.1rem;
  transition: 0.4s ease-in-out;
  display: inline-block;
  padding-bottom: 5px;
}

.print-a:hover{
  color: #0ca5c4;
  border-bottom: 1px solid #d88e26;    
}


/* 008 - other-print */

.other{
	width: 100%;
	margin: 30px auto;
}

ul.tabs{
	width: 100%;
	list-style: none;
	display: flex;
	justify-content: space-evenly;
	border-bottom: 1px solid #d88e26;
}

ul.tabs li{
	width: 18%;
}

ul.tabs li a{
	color: #fff;
	text-decoration: none;
	text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
	display: block;  
  background-color: #a8a8a8;
  border-radius: 15px;
	padding: 20px 0px;
}

.active{
	border-bottom: 3px solid #ff9966;
}

ul.tabs li a .tab-text{
	margin-left: 8px;
}

.other-sections{
	width: 100%;
	background: #fff;
}

.other-article{
  width: 100%;
	padding: 30px;
	display: flex;
  flex-direction: column;
	gap: 20px;
	align-items: center;
}

.other_info_content{
  display: flex;
}

.other-info{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.other-h3{
  margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    color: #d88e26;
    text-align: center;
}

.other_info_content{
  display: flex;
}

.other-sections article p{
	text-align: justify;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #a9a9a9;
    margin-top: 10px;
}

.other-img{
    width: 60%;
}

.other-img img{
    width: 100%;
}

.img_layout{
  width: 100%;
}

.padding_top_0{
  padding-top: 0;
}

@media screen and (max-width: 1120px){
    .other-img{
        width: 50%;
    }

    .other-info{
        width: 50%;
    }
}

@media screen and (max-width: 700px){
	ul.tabs li{
		width: none;
		flex-basis: 0;
		flex-grow: 1;
	}

    ul.tabs{
		flex-direction: column;
	}

    ul.tabs li{
		width: 100%;
	}

	ul.tabs li a{
		width: 100%;
		padding: 15px 0px;
	}

    .other-article{
        flex-direction: column;
    }

    .other-img{
        width: 100%;
    }

    .other-info{
        width: 90%;
    }
}

@media screen and (max-width: 450px){

	ul.tabs li a .tab-text{
		width: 100%;
	}

	.other-sections article{
		padding: 0;
	}
}

/* From Uiverse.io by alexmaracinaru */ 
.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #d88e26;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #a8a8a8;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #a8a8a8;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #ff9966;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}


/* From Uiverse.io by Spacious74 */ 
.outer {
  width: 300px;
  height: 250px;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
  position: relative;
}

.dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0 10px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
  0%,
  100% {
    top: 10%;
    right: 10%;
  }
  25% {
    top: 10%;
    right: calc(100% - 35px);
  }
  50% {
    top: calc(100% - 30px);
    right: calc(100% - 35px);
  }
  75% {
    top: calc(100% - 30px);
    right: 10%;
  }
}

.card_exibidor {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: solid 1px #202222;
  background-size: 20px 20px;
  background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  color: #fff;
}
.ray {
  width: 220px;
  height: 45px;
  border-radius: 100px;
  position: absolute;
  background-color: #c7c7c7;
  opacity: 0.4;
  box-shadow: 0 0 50px #fff;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}

.card_exibidor .text {
  font-weight: 700;
  font-size: 2.5rem;
  background: #d88e26;
  background-clip: text;
  color: transparent;
}

.exibidores_ul{
  text-align: center;
}

.line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #2c2c2c;
}
.topl {
  top: 10%;
  background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}
.bottoml {
  bottom: 10%;
}
.leftl {
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #747474 30%, #222424 70%);
}
.rightl {
  right: 10%;
  width: 1px;
  height: 100%;
}

/*proceso*/

.proceso {
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 20px;
  padding-left: 90px;
}

.proceso h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.proceso .subtitulo {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

/* Estilos de la Línea de Tiempo */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  border-left: 4px solid #d88e26;
}

.paso {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animación de Scroll */
.paso.visible {
  opacity: 1;
  transform: translateY(0);
}

.numero {
  font-size: 1.5rem;
  font-weight: bold;
  color: #090909;
  background: #fff;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contenido {
  text-align: left;
}

.contenido h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 5px;
}

.contenido p {
  font-size: 1.1rem;
  color: #555;
}

.hero_h3{
  position: relative;
  z-index: 700;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  text-align: center;
}

.centrar_position{
  left: 50%;
  transform: translateX(-50%);
}

.pading_20{
  padding-bottom: 0;
}

.padding_button_30px{
  padding-bottom: 30px;
}

/* Responsivo */
@media (max-width: 600px) {
  .timeline {
    padding-left: 20px;
  }

  .paso {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contenido .margin_buton_40{
  margin-bottom: 40px;
}

.margin0{
  padding: 0;
}

.color_gris{
  color: #747474;
}



.lead_container {
  background: white;
  padding: 30px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.lead_title {
  color: #2c3e50;
}
.lead_text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.lead_success {
  color: green;
  font-weight: bold;
}
.lead_error {
  color: red;
  font-weight: bold;
}
.lead_btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  background: #007BFF;
  border-radius: 5px;
  font-size: 1.1rem;
  margin-top: 20px;
}
.lead_btn:hover {
  background: #0056b3;
}

.pading_60lef{
  padding-left: 60px;
}

.margin_top_50px{
  margin-top: 50px;
}

.padding_0left{
  padding-left: 0;
}

.width_70{
  width: 70%;
}

.padding_botton_50{
  padding-bottom: 50px;
}

.margin_botton_50px{
  margin-bottom: 50px;
}

.bullets{
  list-style-type: disc;
}

.bullets li::marker{
  color: #d88e26;
  font-size: 1.5rem;
}

.img_produtos_item{
  width: 100%;
}

.contenido .productos_h3_i{
  position: relative;
  margin: 0 auto 25px;
  text-align: center;
  z-index: 450;
  padding-top: 40px;
  color: #ff7a01;
  font-size: 1.5rem;
  font-weight: 700;
}

.font_13{
  font-size: 1.3rem;
}

.flex_mkevento{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
  margin-bottom: 20px;
}

.mk_eventos_img{
  width: 30%;
  max-width: 450px;
  min-width: 280px;
}

.padding_bottom_45px{
  padding-bottom: 25px;
}

.padding_top_45px{
  padding-top: 25px;
  text-align: center;
}

.mar_lef_95{
  margin-left: 95px;
}

.bullets_padding_60{
  padding-left: 60px;
}

@media screen and (max-width:790px) {

  .mar_lef_95{
    margin-left: 0;
  }

  .bullets_padding_60{
    padding-left: 0;
  }

  .margin_lef120{
    margin-left: 5px;
  }
 
  .contenido_description li{
    padding-top: 10px;
  }

  .width_70{
    width: 98%;
  }

  .side_bar {
    width: 50px;
    padding: 35px 0;
    
}
  .bienvenidos_section{
    flex-direction: column;
}

.hero_section_p{
  padding-left: 60px;
}

.hero_section_p_general{
  padding-left: 50px;
}

.bienvenidos_info{
  position: relative;
  width: 98%;
  padding-left: 5px;
  padding-right: 10px;
}

.margin_left_100xp{
  padding-left: 58px;
}


.bienvenidos_graphic_img{
  width: 100%;
  min-width: 300px;
  margin-top: 30px;
  padding-left: 5px;
  padding-right: 10px;
}

.beneficios_section{
  padding-left: 58px;
  padding-right: 10px;
}

.mapamental{
  width: 100%;
}

.contacto_section{
  flex-direction: column;
  padding-left: 58px;
  padding-right: 10px;
}

.productos_h2{
  padding-left: 10px;
  padding-right: 10px;
}

.form-container {
  margin: 20px;
  padding: 0;
}

.sub_nav{
  left: 50px;
}

.contacto_info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 95%;
  color: #d88e26;
  font-size: 1.1rem;
}

.productos_section{
  padding-left: 50px;
  overflow-x: hidden;
}

.productos_grid {
  width: 90%;
}

.productos_flex_p{
  padding-left: 8px;
}

.bullets{
  padding-left: 28px;
}

.bullets li{
  text-align: left;
}

.other_info_content {
  flex-direction: column;
}

.print-publicity {
  padding-left: 58px;
  padding-right: 10px;
}

.contenido_flex {
  flex-direction: column;
  align-items: center;
}

.item_id {
  width: 90%;
  margin-top: 20px;
}

.productos_flex_i {
  flex-direction: column;
  padding-left: 0;
  padding-bottom: 10px;
}

.hero_h3{
  padding-top: 20px;
}

.img_produtos_item{
  padding-top: 20px;
}

.contenido_description{
  width: 100%;
}

.productos_flex_item {
  width: 95%;
}

.identifcaciones_tipos_flex {
  flex-direction: column;
  padding-left: 58px;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.identificaciones_tipos_img{
  max-width: 300px;
}

.contenido_item {
  width: 100%;
}

.contenido_flex_img{
  margin-top: 20px;
}

.proceso {
  width: 98%;
  margin: auto;
  text-align: center;
  padding-left: 58px;
  padding-right: 10px;
}

.contenido_section {
  padding-left: 58px;
  padding-right: 10px;
  padding-top: 50px;
}

.flex_mkevento{
  padding-left: 58px;
  padding-right: 10px;
}



.nav_catalogo{
  width: 80%;
  top: 70%;
}

.catalogos_ul{
  display: flex;
  flex-wrap: wrap;
}

.catalogos_ul li{
  padding: 5px 10px;
}

.p50lef{
  padding-left: 50px;
}

.contenido_flex_imgen{
  width: 100%;
}

}

@media screen and (max-width: 940px) and (max-height: 600px) {
  
  .side_bar{
    padding: 10px 0;
  }

  .ul_nav li{
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    font-size: 0.7rem;
    margin: 10px 0;    
  }

  .card_sidebar{
    padding: 10px 20px;
    gap: 10px;
  }

  .btn_nav{
    width: 35px;
    height: 35px;
  }

  .span_btn_nav {
    width: 5px;
    height: 5px;
  }

  .ul_sub_nav li{
    padding: 1px;
    
}

.a_sub_nav{
    font-size: 0.9rem;
}

.sub_nav{
  top: 0;
}

}