*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}
body{
    background-size: cover;
    height: 100vh;
    background-position: center;
}

/***********************
        Menu
************************/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(63, 59, 59, 0.7); /* Fondo transparente */
    color: white;
    padding: 10px;
}

.nav-links a{
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.logo img {
    margin-left: 50px;
    width: 60px;
    height: 70px;  
}

.nav-links {
    display: flex;
    list-style-type: none;
    font-size: 20px; /* Tamaño de fuente más grande */
}

.nav-links li:last-child {
    margin-right: 0;
}

.nav-links li:hover {
    border-radius: 20%; /* Convertir el elemento en un círculo */
    background-color: #203378; /* Cambiar el color al pasar el cursor por encima */
}

.nav-links li a {
    display: block;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-links li:hover a {
    color: white; /* Cambiar el color del texto al pasar el cursor por encima */
}

.productos .dropdown {
    display: none;
    position: absolute;
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    z-index: 999; /* Valor alto para que se superponga */
}

.productos:hover .dropdown {
    display: block;
    list-style-type: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    background-color: white;
    margin: 5px;
    width: 25px;
    height: 2px;
}
.search-container {
    display: flex;
    align-items: center;
}

.search-container form {
    display: flex;
}

.search-container input[type=text] {
    padding: 10px;
    margin: 0;
    border: none;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.search-container button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.search-container button:hover {
    background-color: #555;
}

@media screen and (max-width: 800px) {

    .nav-links, .social-media {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-active {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-links li, .social-media a {
        margin: 10px 0;
    }

    .productos .dropdown {
        position: static;
    }

    .search-container {
        display: none;
    }
}

@media screen and (max-width: 1250px){
    .search-container {
        display: none;
    }
}

/***********************
        Banner
***********************/

.banner{
	position: relative;
	width: 100%;
	height: calc(80vh);
	background-color: #F5F5F5;
	background-size: cover;
	background-position: center;
	transition: all .1s ease-out;
	background-image: url('../assets/img/banner-1.jpg');
	animation: banner 28s infinite linear;
}
.banner-content{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	color: #FFF;
	background-color: rgba(0, 22, 40, .6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.banner-content h1{
	margin: 0;
	padding: 0;
	padding-bottom: 30px;
	font-size: 70px;
	text-align: center;
}
.banner-content a{
	text-decoration: none;
	color: #FFF;
    font-size: 40px;
	padding: 9px 20px;
	border: 1px solid #FFF;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}
.banner-content a:hover{
	background-color: #fff;
	color: #333;
}
@keyframes banner{
	0%{
		background-image: url('/img/banner/industria\ oil\ y\ gas.jpg');
	}
	25%{
		background-image: url('/img/banner/industria\ oil\ y\ gas.jpg');
	}


	26%{
		background-image: url('/img/banner/industriaalimentaria.jpg');
	}
	50%{
		background-image: url('/img/banner/industriaalimentaria.jpg');
	}


	51%{
		background-image: url('/img/banner/industriaconstruccion.jpg');
	}
	75%{
		background-image: url('/img/banner/industriaconstruccion.jpg');
	}
	

	76%{
		background-image: url('/img/banner/insudstriaminera.jpg');
	}
	100%{
		background-image: url('/img/banner/insudstriaminera.jpg');
	}

}


/***********************
    certificaciones
************************/
.certificacion {
    background-color: #313c47;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.izquierda,
.izquierdav {
    flex: 1;
    max-width: 400px;
    text-align: center;
    color: rgb(158, 158, 158);
}

.v-line {
    width: 1px;
    height: 100px;
    background-color: #000;
    margin: 0 20px;
}

@media (max-width: 767px) {
    .certificacion {
        flex-direction: column;
    }

    .v-line {
        width: 100px;
        height: 1px;
        margin: 20px 0;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .certificacion {
        padding: 10px;
    }

    .izquierda,
    .izquierdav {
        max-width: 300px;
    }

    .v-line {
        margin: 0 10px;
    }
}

@media (min-width: 1024px) {
    .certificacion {
        padding: 40px;
    }

    .izquierda,
    .izquierdav {
        max-width: 500px;
    }

    .v-line {
        margin: 0 30px;
    }
}
/***********************
    Quienes somos index
***********************/
.quienessomos-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    background-color: rgba(161, 112, 79, 0.7);
}

.quienessomos-text {
    flex: 1 1 100%;
    max-width: 400px;
    text-align: center;
    margin-bottom: 20px;
}

.quienessomos-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #131212;
    margin-bottom: 10px;
}

.quienessomos-description {
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #0e0d0d;
    text-align: center;
}

.quienessomos-image {
    flex: 1 1 100%;
    max-width: 400px;
    text-align: center;
    margin-bottom: 20px;
    perspective: 1000px;
}

.quienessomos-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    transform: rotateY(0deg);
    transition: transform 1s;
}

.quienessomos-image:hover img {
    transform: rotateY(45deg);
}

.quienessomos-image:hover img {
    transform: rotateY(45deg);
}

@media (min-width: 768px) {
    .quienessomos-section {
        padding: 30px;
    }

    .quienessomos-text,
    .quienessomos-image {
        max-width: 500px;
    }

    .quienessomos-text {
        margin-right: 50px;
    }

    .quienessomos-image {
        margin-left: 50px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .quienessomos-section {
        padding: 15px;
    }

    .quienessomos-text,
    .quienessomos-image {
        max-width: 300px;
        margin-bottom: 15px;
    }

    .quienessomos-title {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .quienessomos-description {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .quienessomos-section {
        padding: 30px;
    }

    .quienessomos-text,
    .quienessomos-image {
        max-width: 500px;
        margin-bottom: 30px;
    }

    .quienessomos-title {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .quienessomos-description {
        font-size: 20px;
    }
}
/***********************
    Quienes somos
************************/
.headerqs{
    width:100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 99;
    box-shadow: 0 0 10px #000;
    background: rgba(0,0,0,0.5);
    position: inherit;
}
.quienessomos {
    
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}

.tituloqs {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.sectionqs {
    max-width: 80%;
    margin: 20px auto;
    padding: 80px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sectionmv {
    max-width: 100%;
    margin: 20px auto;
    padding: 80px;
    background-color: #eceaf1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sectionqs h2 {
    text-align: center;
    color: #333;
}
.sectionmv h2{
    text-align: center;
    color: #333;

}

.two-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.columnh {
    width: 48%;
    padding: 5em;
    font-size: large;
}

.columnhs {
    width: 48%;
    padding: 5em;
    font-size: large;
    margin-top: 60px;
}
.column {
    width: 48%;
}

.columnp{
    width: 48%;
}

.sectionqs img {
    max-width: 80%;
    height: auto;
    margin-top: 20px; /* Añadido para separar la imagen del texto */
    border-radius: 5%;
}

.sectionqs p {
    color: #666;
    font-size: 1.2em; /* Tamaño de fuente más grande */
    text-align: justify;
}

.sectionmv p {
    color: #666;
    font-size: 1.2em; /* Tamaño de fuente más grande */
    text-align: justify;
    padding-left: 100px;
    padding-right: 100px;
}

.certifications-section {
    max-width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.certifications-section h1{
    text-align: center;
    font-size: 60px;
}

.certification-images {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.certification-image {
    width: 30X0px;
    height: 150px;
    margin: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.certification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certification-image:hover {
    transform: scale(1.1);
}

.sectionqsp{
    max-width: 80%;
    margin: 20px auto;
    padding: 20px;
    
}

.sectionqsp h2{
    text-align: center;
}

.sectionqsp img{
    width: 100%;
    padding: 60px;
    border-radius: 100px;
}

.sectionqsp p{
    font-size: 30px;
    text-align: center;
}



@media only screen and (max-width: 600px) {
    .sectionqs {
        padding: 10px;
    }

    .sectionqsp {
        padding: 0px;
    }
    .sectionmv p {
        padding: 10px;
    }
    .sectionmv {
        padding: 0px;
    }

    .sectionqs {
        padding: 0px;
    }

    .certifications-section h1 {
        text-align: center;
        font-size: 30px;
    }

    .two-column {
        flex-direction: column;
    }

    .columnhs {
        width: 100%;
        padding: 0px;
        font-size: large;
        margin-top: 60px;
    }


    .columnh,
    .column,
    .columnp {
        padding: 20px;
        width: 100%;
        text-align: justify;
    }
    .column img{
        margin-left: 45px;
    }
    .certifications-section {
        padding: 10px;
        max-width: 90%;
    }
    .sectionqsp img{
        padding: 0px;
    }

}
/***********************
        INDUSTRIAS
***********************/
.contenedori{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.industrias{
    margin: 10px;
    border-radius: 30px;
    border-style: solid;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}
.contenedori figure{
    margin: 20px;
    position:relative;
    height: 250px;
    width: 230px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 60px;
    box-shadow: 0px 15px 25px rgba(0,0,0,0.50);
}
.contenedori figure img{
    width: 100%;
    height: 100%;
    transition: all 400ms ease-out;
    will-change: transform;
    
}
.contenedori figure .capa{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #86bc24;
    transition: all 400ms ease-out;
    opacity: 0;
    visibility: hidden;
    text-align: center;
}
.contenedori figure:hover > .capa {
    opacity: 1;
    visibility: visible;
}
.contenedori figure:hover > .capa h3{
    margin-top: 10px;
    margin-bottom: 15px;
}
.contenedori figure:hover > img{
    transform: scale(1.3);
}
.contenedori figure .capa h3{
    color: #fff;
    font-weight: 400;
    margin-bottom: 120px;
    transition: all 400ms ease-out;
     margin-top: 30px;
}
.contenedori figure .capa p{
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    width: 100%;
    max-width: 220px;
    margin: auto;
}

/* Estilos generales */
.industrias {
    max-width: 100%;
    padding: 20px;
  }
  
  .contenedori {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  figure {
    position: relative;
    margin: 10px 0;
    width: 100%;
    max-width: 400px;
  }
  
  figure img {
    max-width: 100%;
    height: auto;
  }
  
  .capa {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
  }
  
  .capa h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .capa p {
    font-size: 1rem;
  }
  
  /* Estilos para pantallas pequeñas */
  @media screen and (max-width: 767px) {
    .contenedori {
      flex-direction: column;
      align-items: center;
    }
    
    figure {
      max-width: 100%;
    }
  }
  
  /* Estilos para pantallas medianas */
  @media screen and (min-width: 768px) and (max-width: 1023px) {
    .contenedori {
      justify-content: center;
    }
  }
  
  /* Estilos para pantallas grandes */
  @media screen and (min-width: 1024px) {
    .contenedori {
      justify-content: space-between;
    }
  }
/************************
    Marcas aliadas
*************************/

.titulo {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.slider {
    width: 95vw;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.slider .slide-track {
    display: flex;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
    width: calc(200px * 14);
    align-items: center;
}

.slider .slide {
    width: 200px;
    margin: 10px;
}

.slider .slide img {
    width: 200px;
    height: 100px;
    border-radius: 25px;
    margin: 20px;
    border-radius: 10px; /* Ajusta el radio de borde según sea necesario */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-100px * 7));
        transform: translateX(calc(-100px * 7));
    }
}

/***********************
        Productos
***********************/
.menu_producto{
    position: relative;
}

.prodsec{
    width: 100%;
    height: 85vh;
    background-color: #090909;
}

.tituloprod{
    text-align: center;
    padding: 10px;
    font-size: 50px;
    color: #FFF;
}
.c-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 75vh;
    display: flex;
    flex: 1 1 auto;
    overflow: hidden;
  }
  .c-accordion__item {
    --cover: var(--cover-placeholder);
    background: var(--cover);
    background-position: center center;
    background-size: cover;
    background-color: var(--cover-placeholder);
    background-blend-mode: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #111111 100%);
    position: relative;
    flex-grow: 1;
    height: 100%;
    width: 100px;
    min-width: 2.05rem;
    transition: all 0.3s ease-in-out;
  }
  .c-accordion__item:hover, .c-accordion__item:focus-within, .c-accordion__item:target {
    _flex-grow: 2;
    width: 50%;
    background-color: transparent;
  }
  .c-accordion__item:hover .c-accordion__title--hover-hide, .c-accordion__item:focus-within .c-accordion__title--hover-hide, .c-accordion__item:target .c-accordion__title--hover-hide {
    max-height: 0;
    opacity: 0;
  }
  .c-accordion__item:hover .c-accordion__title--hover-show, .c-accordion__item:focus-within .c-accordion__title--hover-show, .c-accordion__item:target .c-accordion__title--hover-show {
    opacity: 1;
  }
  .c-accordion__item:hover .c-accordion__description, .c-accordion__item:focus-within .c-accordion__description, .c-accordion__item:target .c-accordion__description {
    opacity: 1;
  }
  .c-accordion__item:hover {
    cursor: pointer;
  }
  .c-accordion__action {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.75);
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #111111 100%);
    text-decoration: none;
  }
  .c-accordion__title {
    color: white;
    font-family: "Roboto Condensed";
    margin: 0;
    max-height: 100%;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
  }
  .c-accordion__title--hover-show {
    opacity: 0;
    width: 100%;
  }
  .c-accordion__title--hero {
    font-size: 2rem;
    line-height: 100%;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: -145px;
  }
  .c-accordion__aside {
    padding: 1rem;
    position: absolute;
    height: 100%;
    right: 1rem;
    bottom: 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .c-accordion__aside:before {
    content: "+";
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2rem;
    display: inline-block;
  }
  .c-accordion__aside:after {
    content: "";
    flex-grow: 1;
    width: 1px;
    display: block;
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .c-accordion__content {
    padding: 24rem 4.5rem 0rem 8rem;
    width: 55%;
    text-align: left;
    line-height: 4px;
    font-size: 16px;
    left: -50rem;
  }
  .c-accordion__description {
    color: white;
    font-weight: 500;
    line-height: 120%;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    margin-left: -145px;
    width: 85%;
  }

/***********************
        CAtegoria1
************************/

.bannerc1{
    margin: 0px;
    width: 100%;
    height: 90vh;
    background-color: #198d95;
}
.containercardc1 {
    width: 100%; /* Ancho del contenedor menos el espacio para el margen */
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .containercardc1 > * {
    margin-right: 5%; /* Espacio entre elementos */
    margin-bottom: 5vw; /* Espacio entre filas */
  }
  
  .containercardc1 > *:last-child {
    margin-right: 0; /* Elimina el margen derecho del último elemento en cada fila */
  }
  
  .titlec1 {
    color: #181918;
    padding: 10px;
    text-align: center;
    font-size: 4vw; /* Tamaño de fuente en unidades vw */
  }
  
  .cardc1 {
    position: relative;
    width: 14vw; /* Tamaño de la tarjeta en unidades vw */
    height: 14vw; /* Tamaño de la tarjeta en unidades vw */
    background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100%);
    border-radius: 1vw; /* Radio de borde en unidades vw */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .cardc1 img {
    width: 100%; /* Tamaño del icono en unidades vw */
    fill: #333;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .cardc1:hover {
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.2); /* Tamaño de sombra en unidades vw */
  }
  
  .cardc1__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 100%;
    height: 100%;
    padding: 1vw; /* Relleno en unidades vw */
    box-sizing: border-box;
    background-color: #fff;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .cardc1:hover .cardc1__content {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1;
  }
  
  .cardc1__title {
    margin: 0;
    font-size: 1.5vw; /* Tamaño de fuente en unidades vw */
    color: #0b0b0b;
    font-weight: 700;
  }
  
  .cardc1__description {
    margin: 1vw 0 0; /* Margen en unidades vw */
    font-size: 0.8vw; /* Tamaño de fuente en unidades vw */
    color: #777;
    line-height: 1.4;
  }
  
  .cardc1:hover img {
    scale: 0;
    transform: rotate(-45deg);
  }
  
  @media screen and (max-width: 768px) {
    .containercardc1 {
      padding-left: 20px;
      justify-content: center;
      height: 100%; 
    }

    .bannerc1{
        margin: 0px;
        width: 100%;
        height: 100%; 
    }
  
    .containercardc1 > * {
    
      margin-right: 0;
      margin-bottom: 5vw;
    }
  
    .titlec1 {
      font-size: 6vw;
    }
  
    .cardc1 {
      width: 60vw;
      height: 20vw;
      margin-right: 0;
    }
  
    .cardc1__title {
      font-size: 3vw;
    }
  
    .cardc1__description {
      font-size: 2vw;
    }
  }

/***********************
        Categoria2
************************/
/***********************
        Categoria3
************************/

/***********************
        Boton Modal
************************/
.modal{
	display: none;
	position: fixed;
	z-index:1;
	overflow: auto;
	left: 0;
	top:0;
	width: 100%;
	height:100%;
	background: rgba(0, 0, 0, 0.452);
}

.contenido-modal{

	position: relative;
	background-color: #fefefe;
	margin: auto;
	width: 30%;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, .4);
	animation-name: modal;
	animation-duration: 1s;
}
@keyframes modal{
	from{top:-330px; opacity:0;}
	to{top:0; opacity:1;}
}
.close{
	color: #f2f2f2;
	font-size:30px;
	font-weight: bold;
}
.close:hover{
	color:#7f8c8d;
	text-decoration: none;
	cursor: pointer;
}

.modal-header1{
    text-align: center;
    height: 30px;
	background: #34495e;
    width: 100%;
    color: white;  
    margin-top: 120px;
	
}
.footer1{
    text-align: center;
    height: 30px;
	background: #34495e;
    width: 100%;
    color: white;  
}

p{
	text-align: justify;
}

.modal-body1{
	background-color: #e9f0f8;
}

@media screen and (max-width:900px){
	.contenido-modal{
		width: 70%;
	}
	.textos{
		padding: 150px;
	}
}

@media screen and (max-width:500px){
	.textos{
		padding:50px;
	}
}
/***********************
    Formulario modal
************************/
.formm{
    width: 60%;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    margin: auto;
    max-width: 100%;
    border-radius: 1em;
    padding: 3.5em 1.5em;
    
}
.form_titlem{
    padding-bottom: 20px;
    flex-basis: 100%;
    text-align: center;
    font-size: 2.9rem;
    margin-bottom: .4em;

}
.form_containerm{
    width: 50%;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    gap: 1em;
    
}
.form_nombrem{
    order: 1;
    font-size: 1rem;
    flex-basis: 240px;
    padding: .8rem 1em;
    border: 1px solid #bbb0b0;
    border-radius: 0.2em;

}
.form_empresam{
    order: 2;
    font-size: 1rem;
    flex-basis: 240px;
    padding: .8rem 1em;
    border: 1px solid #bbb0b0;
    border-radius: 0.2em;

}
.form_emailm{
    order: 3;
    font-size: 1rem;
    flex-basis: 495px;
    padding: .8rem 1em;
    border: 1px solid #bbb0b0;
    border-radius: 0.2em;

}

.form_celularm{
    order: 4;
    font-size: 1rem;
    flex-basis: 240px;
    padding: .8rem 1em;
    border: 1px solid #bbb0b0;
    border-radius: 0.2em;

}


.form_nitm{
    order: 5;
    font-size: 1rem;
    flex-basis: 240px;
    padding: .8rem 1em;
    border: 1px solid #bbb0b0;
    border-radius: 0.2em;

}

.form_input--messagem{
    order: 6;
    flex-basis: 495px;
    resize: none;
    padding: 1.8em 1em;
    margin-bottom: .5em;
    font-size: 1rem;
}

.form_ctam{
    order: 7;
    font-size: 1rem;
    flex-basis: 495px;
    background-color: #a2bdb0;
    color: #131212;
    border: none;
    font-weight: 300;
    padding: .7em o;
    border-radius: .2em;
    cursor: pointer;
    font-weight: 400;
    padding: 10px;
    
}

/***********************
        Contactenos
************************/
.contenedor_contactenos {
    display: flex;
    justify-content: center;
    height: 790px;
    margin-top: 10px;
}

.fondo_contactenos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.contenedor_1 {
    margin-left: 300px;
    width: 60%;
    padding-left: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 10px;
    position: relative;
    z-index: 1;
    background-color: #f9f9f9;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contenedor_2 {
    
    width: 60%;
    padding-left: 10px;
    padding-top: 30px;
    padding-right: 100px;
    position: relative;
    z-index: 1;
    background-color: #f9f9f9;
    height: 85vh;
    display: flex;
    flex-direction: column;
    
}

.contenedor_1 h1,
.contenedor_2 h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.formulario {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.nombre-apellido {
    grid-column: 1 / span 2;
    display: grid;
    gap: 10px;
}

.nombre-apellido input{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    width: 90%;    
}

.nombre-apellido label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.formulario-lista {
    grid-column: 1 / span 2;
}

.formulario-lista label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.formulario-lista input,
.formulario-lista select,
.formulario-lista textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    width: 90%;  
}

.formulario-lista textarea {
    resize: vertical;
    height: 100px;
    width: 90%;  
}

.form_cta {
    margin: 0 auto;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.contenedor_2 p {
    margin-top: 30px;
    font-weight: bold;
    font-size: 20px;

}
@media screen and (max-width: 1800px) {
    .contenedor_contactenos{
        height: 100%;
    }
    .contenedor_1 {
        width: 70%;
        height: 100%;
    }

    .contenedor_2 {
        width: 70%;
        height: 100%;
    }
    
    .fondo_contactenos{
        height: 1200px;
    }

}
@media screen and (max-width: 868px) {
    
    .contenedor_contactenos {
        flex-direction: column;
        align-items: center;
        height: 1850px;
        background-color: wheat;
    }

    .fondo_contactenos {
        display: none;
    }

    .contenedor_1,
    .contenedor_2 {
        width: 80%;
        padding: 20px;
        margin: 20px auto;
        max-width: 600px; /* Añadido para limitar el ancho máximo */
        height: auto;
    }

    .formulario {
        grid-template-columns: 1fr;
    }

    .nombre-apellido {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .nombre-apellido label,
    .nombre-apellido input{
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .formulario-lista label {
        font-size: 16px;
    }

    .formulario-lista input,
    .formulario-lista select,
    .formulario-lista textarea {
        font-size: 16px;
    }

    .contenedor_1 h1,
    .contenedor_2 h1 {
        font-size: 20px;
    }
    .contenedor_celcorr {
        flex-direction: column;
        gap: 50px;
        justify-content: center;
        margin-top: 20px;
    }
}
/*****************************/
.logos_contenedor2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contenedor_direcciones{
    width: 100%;
}

.contactenos_dir,
.contactenos_cel,
.contactenos_correo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactenos_dir img,
.contactenos_cel img,
.contactenos_correo img {
    margin-right: 10px;
    width: 30px;
    height: 30px;
}

.contactenos_dir h2,
.contactenos_cel h2,
.contactenos_correo h2 {
    font-size: 24px;
    margin: 0;
}

.contactenos_dir p,
.contactenos_cel p,
.contactenos_correo p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.contenedor_celcorr {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .logos_contenedor2 {
        
        justify-content: space-between;
    }

    .contenedor_direcciones,
    .contenedor_celcorr {
        width: auto;
    }
}
/**************************/
.mapa_contactenos iframe{
    width: 100%;
    height: 200px;
}


/****************************
        Cotizaciones
 ****************************/
.cotizaciones {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
}

.cotizaciones_form {
    position: relative;
    width: 100%;
    height: 100vh;
}

.fondo_cotizaciones {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.formulario_cotizaciones {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
}

.formulario_cotizaciones label {
    font-weight: bold;
}

.formulario_cotizaciones .campo-grupo {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.formulario_cotizaciones .campo-grupo .campo {
    flex: 1;
    min-width: 48%;
}

.formulario_cotizaciones input[type="text"],
.formulario_cotizaciones input[type="email"],
.formulario_cotizaciones select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulario_cotizaciones textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.formulario_cotizaciones .form_cta {
    display: block;
    margin: 0 auto;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.formulario_titulo {
    text-align: center;
    margin-bottom: 20px;
}

.formulario_titulo h2 {
    font-size: 4.5rem;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.formulario_descripcion {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #555;
    margin: 50px;
}

/* Media queries */
@media screen and (max-width: 768px) {
    
    .formulario_cotizaciones {
        width: 90%;
        
    }

    .formulario_titulo h2 {
        font-size: 2.5rem;
    }

    .formulario_descripcion {
        display: none;
    }

    .fondo_cotizaciones {
        position: fixed;
    }
    .formulario_cotizaciones textarea {
        width: 100%;
        height: 100px;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }
}

@media screen and (min-width: 1200px) {
    .formulario_cotizaciones {
        max-width: 800px;
        top: 52%;
    }
}

/***********************
        RESPONSIVE
************************/


/***********************
        Whatsapp icon
************************/
.whatsapp {
    position: fixed;
    right: 0.5cm;
    bottom: 0.5cm;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 15px;
}

@media (max-width: 767px) {
    .whatsapp {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        right: 0.2cm;
        bottom: 0.2cm;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .whatsapp {
        width: 70px;
        height: 70px;
        border-radius: 12px;
        right: 0.3cm;
        bottom: 0.3cm;
    }
}

@media (min-width: 1024px) {
    .whatsapp {
        width: 80px;
        height: 80px;
        border-radius: 15px;
        right: 0.5cm;
        bottom: 0.5cm;
    }
}


/***********************
        Footer
************************/

footer{
    width: 100%;
    background: #202020;
    color: white;
    position: absolute;   
}

.container-footer-all{
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 50px 0px 30px 0px;
}

.container-body{
    display: flex;
    justify-content: space-between;
}

.colum1{
    max-width: 550px;
}

.colum1 img{
    margin-top: 20px;
    width: 450px;
    height: 250px;
    padding: 30px;
    background-color: #d7dee2;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0px 15px 25px rgba(199, 163, 163, 0.5);
}

.colum2{
    max-width: 350px;
    text-align: center;
}

.colum2 h1{
    font-size: 22px;
}

.row{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.row img{
    width: 46px;
    height: 46px;
    border-radius: 30px;
}

.colum3{
    max-width: 400px;
    text-align: center;
}

.colum3 h1{
    font-size: 22px;
}
.column4{
    max-width: 400px;
    overflow:hidden;
    padding-bottom:20.25%;
    position:relative;
    height:0;
}

.column4 iframe{
    width: 350px;
    height:210px;
    border-radius: 20px;
}
.column4 h1{
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}
.row2{
    margin-top: 30px;
    display: flex;
}

.row2 img{
    width: 36px;
    height: 36px;
}

.row2 label{
    margin-top: 10px;
    margin-left: 20px;

}

.container-footer{
    width: 100%;  
    background: #101010;
}

.footer{
    max-width: 1400px;

    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;  
    padding: 10px;
}

.copyright{
    color: #C7C7C7;
}

.copyright a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.information a{
    text-decoration: none;
    color: #C7C7C7;
}


@media screen and (max-width: 1100px){
    
    .container-body{
        flex-wrap: wrap;
    }
    
    .colum1{
        max-width: 100%;
    }

    .colum1 img{
        max-width: 100%;
    }
    
    .colum2,
    .colum3{
        margin-top: 40px;
    }
}
  
  /* Estilos para hacer el footer responsive */
  @media only screen and (max-width: 700px) {
    .container-body {
      flex-direction: column; /* Cambia la dirección de los elementos a columnas en pantallas más pequeñas */
    }
  
    .colum1, .colum2, .colum3 {
      flex-basis: 100%; /* Establece el ancho base de cada contenedor al 100% en pantallas más pequeñas */
      margin-bottom: 20px; /* Agrega un margen inferior para separar cada contenedor */
    }
  
    .column4 {
      flex-basis: 100%; /* Establece el ancho base del cuarto contenedor al 100% en pantallas más pequeñas */
      margin-top: 20px; /* Agrega un margen superior para separar del resto de los contenedores */
    }
  
    .container-footer-all {
      flex-direction: column; /* Cambia la dirección de los elementos a columnas en pantallas más pequeñas */
    }
  }
/**********************
    RESPONSIVE
***********************/

/* Estilos para el banner */
