@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
	--primary-color: #5f727e;
	--secundary-color: #2f393f;
	--background-color: #f3f3f3;
	--dark-color: #151515;
	--background-dark: #2d3548;
	--blue-color: #37909d;

  --width-container: 1200px;
  --font-size: 3rem;
}
html {
	font-size: 62.5%;
	font-family: 'Poppins', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ********************************** */
/*             UTILIDADES             */
/* ********************************** */
.container {
	max-width: 120rem;
	margin: 0 auto;
}

.heading-1 {
	text-align: center;
	font-weight: 500;
	font-size: 4rem;
    margin-top: 3rem;
	color: var(--secundary-color);
}

.heading-2 {
	color: var(--secundary-color);
	text-align: center;
	font-weight: 600;
	font-size: 3rem;
	padding-top: 1rem;
	
}

.heading-3 {
	color: var(--background-color);
	text-align: left;
	font-weight: 700;
	font-size: 3rem;
	padding-top: 1rem;
	position: absolute; 
  top: var(--spacing-l); 
  left: var(--spacing-l); 
  z-index: 10; 
}



.final {
	text-align: center;
	font-weight: 500;
	font-size: 4rem;
    margin-top: 1rem;
	animation: fadeInOut 3s infinite;
	padding-bottom: 2rem;
	text-decoration: none;
}

.final1{
	text-decoration: none;
	color: var(--dark-color);
}


@keyframes fadeInOut {
	0%, 100% {
		opacity: 0; 
	}
	50% {
		opacity: 1; 
	}
}


/* ********************************** */
/*               HEADER               */
/* ********************************** */

/* ************* NAVBAR ************* */




.container-navbar {
	position: relative;
	background-color: var(--secundary-color);
    transition: background-color 0.3s ease;
	padding-bottom: 3px;
}

.container-navbar::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px; /* Ajusta la altura del borde */
    background: linear-gradient(to right, #fff 45%, #37909e 55%);
}

.container-navbar.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center; 
	margin-right: auto;
	margin-left: -8rem;
}

.logo-container a {
	text-decoration: none;
	display: flex; /* Esto asegura que el contenido interno se alinee */
    align-items: center; /* Centra verticalmente */
}

.logot {
    height: 5rem; 
    width: auto; 
	margin-right: 1.2rem; 
	cursor: pointer;
}

.company-name {
    font-size: 3.5rem; 
    color: var(--background-color); 
    font-weight: 600;
	cursor: pointer; 
}

.escala {
    color: white;
}

.floors {
    color: var(--blue-color);
}




.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 1rem;
}

.navbar .fa-bars, .navbar .fa-times {
    display: none;
    font-size: 3.5rem;
    cursor: pointer;
	color: var(--background-color);
}

.menu {
	display: flex;
	gap: 2.5rem;
	margin: 0;
	align-items: center;
	margin-right: -7rem;
	
}

.menu li {
	list-style: none;
}

.menu a {
	text-decoration: none;
	font-size: 1.6rem;
	color: var(--background-color);
	font-weight: 500;
	text-transform: uppercase;
	position: relative;
    border-radius: 20px;
	padding: 0.5rem 1rem;
}


.menu a::after {
	content: '';
	width: 100%;
	height: 0;
	background-color: var(--background-color);
	position: absolute;
	bottom: -3px;
	left: 50%;
	transform: translate(-50%, 50%);
	opacity: 0;
	transition: all 0.3s ease;
	border-radius: 2rem;
}

.menu a:hover::after {
	opacity: 1;
}

.menu a:hover {
	background-color: white;
	color: var(--secundary-color);
}



.menu a.active {
	background-color: white;
    color: var(--secundary-color); 
	font-size: 1.6rem;
	font-weight: 600;
}

.selected {
    color: var(--background-color);  
}

/* ********************************** */
/*               Novedades            */
/* ********************************** */

/*----------------------------------------*/
.products {
    position: relative; /* Asegúrate de que la sección esté en el flujo */
    padding: 2rem; /* Ajusta según sea necesario */
    background: var(--background-color); /* Añade un fondo para ver mejor el contenedor */
    z-index: 1; /* Para asegurar que esté por encima de otros elementos */
}
.all-products{
	display: flex;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
	margin-left: 9rem;
}

.border-nov{
	width: 350px;
	height: 4px;
	background: var(--secundary-color);
	margin: 2px 10rem;
	text-align: left;
  }

.products h2{
	text-align: center;
	margin-bottom: 1rem;
	font-size: 4rem;
	color: var(--secundary-color);
	font-weight: 500;
}


.product{
	overflow: hidden;
	background: var(--secundary-color);
	color: var(--background-color);
	text-align: center;
	width: 260px;
	height: 400px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 1.2rem;
	margin: 2rem;
	border: 5px solid transparent;
	transition: all 0.3s ease-in-out;

	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */
}

.product.visible {
	opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}

.product .product-title, .product .product-price{
	font-size: 18px;
}



.product:hover {
	border-color: var(--blue-color);
}

.product img {
	height: 240px;
	width: 200px;
	margin: 1rem;
	transition: all 0.3s ease-in-out;
	border-radius: 1.2rem;
	border: 5px solid transparent;
}

.product a:link, .product a:visited{
	color: var(--secundary-color);
	display: inline-block;
	text-decoration: none;
	background-color: var(--background-color);
	padding: 1.2rem 3rem;
	border-radius: 1rem;
	margin-top: 1rem;
	font-size: 14px;
	transition: all 0.3s;
	
}

.product a:hover{
	transform: scale(1.1);
}

/*INER INICIO*/


.inner-inicio {
    position: relative;
    background: var(--secundary-color);
    color: white; 
    padding: 50px;
    max-width: 70%; 
    margin: 50px auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	flex-direction: column;
	border: solid var(--blue-color) 4px;
	opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.8s ease, transform 0.8s ease;

}

.inner-inicio.graffiti-effect {
    opacity: 1; 
    transform: translateY(0); 
}
.text-inicio {
    text-align: center; 
    font-size: 2.3rem; 
    line-height: 1.5; /* Espaciado entre líneas */
    margin: 10px 0; 
}

@media (max-width: 768px) {
    .inner-inicio {
		max-width: 90%;
        padding: 10px 20px; /* Reducir padding en pantallas pequeñas */
		border-radius: 1px;
    }

    .text-inicio {
        font-size: 2.2rem; /* Reducir tamaño de fuente en pantallas pequeñas */
    }
}
/* ********************************** */
/*               BANNER               */
/* ********************************** */
.banner {
	background-image: linear-gradient(130deg, #000000, #00000060),
		url('img/escala6.png');
	height: 56.5rem;
	background-size: 100% cover;
	background-position: center;
    background-repeat: no-repeat;
	background-color: var(--primary-color);
    overflow: hidden;
}

.content-banner {
	max-width: 90rem;
	margin: 10px 10rem;
	padding: 15rem 0;
	color: white;
}

.content-banner p {
	color: var(--blue-color);
    text-shadow: 1px 1px 1px rgb(255, 255, 255);
	font-size: 6.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
    
}

.content-banner h3 {
	color: white;
	font-size: 2rem;
	font-weight: 600;
	background-color: var(--blue-color);
	width: 58%;
}

.content-banner h2 {
	color: #fff;
	font-size: 3.5rem;
	font-weight: 600;
	line-height: 1.2;
	padding-bottom: 2rem;
}

.content-banner a {
	text-decoration: none;
}


.content-banner a:hover {
    background-color: var(--secundary-color);
}


/*ACERCA DE NOSOTROS*/
.about{
    background: url(img/nosotros/nosotros1.jpeg) no-repeat left;
    background-size: 55%;
    background-color: var(--background-color);
    overflow: hidden;
    padding: 4rem 0;
}
.inner-section{
    width: 50%;
    float: right;
    background-color: var(--secundary-color);
    padding: 4.5rem;
    box-shadow: 10px 10px 8px rgba(0,0,0,0.4);
}
.inner-section h1{
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
	color: var(--background-color);
	text-align: center;
}
.text{
    font-size: 15px;
    color: var(--background-color);
    line-height: 30px;
    text-align: justify;
    margin-bottom: 15px;
}
.skills button{
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 2px;
    border: none;
    border-radius: 20px;
    padding: 8px;
    width: 200px;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
}
.skills button:hover{
    transition: 1s;
    background-color: #ecf5f5;
    color: #00999c;
}

.content_mv {
    display: flex;
    gap: 10rem;
    justify-content: center;
    align-items: stretch;
    padding: 20px;
	background-color: var(--background-color);
    width: 100%;
}

.mision {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    padding: 20px;
    width: 35%;
    text-align: center;
	justify-content: space-between;
	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */
}

.mision.visible {
	opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}

.mis {   
	background-color: var(--primary-color);
	border-bottom: solid var(--secundary-color) 10px;
}

.vis {
	background-color: var(--secundary-color);
	border-bottom: solid var(--primary-color) 10px;
}

.mision h2 {
    margin-top: 0;
    font-size: 2.5rem;
    color: var(--background-color);
	text-transform: uppercase;
}

.mision p {
    color: var(--background-color);
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: justify;
}

.mis:hover {
    transition: 1s;
	background-color: var(--secundary-color);
}

.vis:hover {
	transition: 1s;
	background-color: var(--primary-color);
  

}

/*3 cultura*/
.cultura {
	background-color: var(--background-color);
	display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    margin:auto;
	padding: 5rem 15rem;
}


.image_cultura{
    background: url("img/nosotros/history.jpg") center/cover no-repeat;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);

	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */
}

.image_cultura.visible {
	opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}


.content_cultura{
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);

	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */
}

.content_cultura.visible {
	opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}

.content_cultura h2{
    text-transform: uppercase;
    font-size: 4rem;
    letter-spacing: 6px;
    opacity: 0.9;
	color: var(--background-color);
}
.content_cultura span{
    height: 0.3rem;
    width: 80%;
    background: var(--background-color);
    margin: 15px 0;
}
.content_cultura p{
    padding-bottom: 15px;
    font-weight: 400;
    opacity: 0.8;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    line-height: 1.7;
	color: white;
	font-size: 1.4rem;
}

.vertical-line{
    height: 30px;
    width: 0.5px;
    background: #777;
    margin: 0 auto;
}

/*MEDIAS*/

@media screen and (max-width:1200px){
    .inner-section{
        padding: 80px;
    }
}
@media screen and (max-width:1000px){
    .about{
        background-size: 100%;
        padding: 100px 40px;
    }
    .inner-section{
        width: 100%;
    }
}

@media screen and (max-width:600px){
    .about{
        padding: 0;
    }
    .inner-section{
        padding: 60px;
    }
    .skills button{
        font-size: 19px;
        padding: 5px;
        width: 160px;
    }
}

@media (max-width: 768px) {
    .content_mv {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .mision {
    	width: 90%;
    }

	.cultura {
        grid-template-columns: 1fr; 
        padding: 2rem; 
    }

    .image_cultura {
        background-size: cover; 
        background-position: center; 
        height: 200px; 
    }

    .content_cultura {
        width: 100%; 
        padding: 1rem; 
    }

    .content_cultura h2 {
        font-size: 2.7rem; 
        letter-spacing: 3px; 
    }

    .content_cultura span {
        width: 90%; 
    }

    .content_cultura p {
        width: 90%; 
        font-size: 1.4rem; 
        padding-bottom: 10px; 
    }

    .vertical-line {
        height: 20px; 
        width: 0.5px;
    }

}

/* ********************************** */
/*            MAIN CONTENT            */
/* ********************************** */
.main-content {
	background-color: var(--background-color);
	padding-top: 0px;
}

/* ********************************** */
/*     CARDS POR QUE ELEGIRNOS        */
/* ********************************** */
.container-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	padding: 5rem 0;
}

.card-feature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	background-color: var(--secundary-color);
	border-radius: 1rem;
	padding: 1.5rem 3rem;
	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */
}
.card-feature.visible {
    opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}

.card-feature i {
	font-size: 6rem;
	color: var(--background-color);
}

.feature-content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.feature-content span {
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--background-color);
}

.feature-content p {
	color: var(--background-color);
	font-weight: 500;
}

/*CARDS TRABAJOS*/

.column-3 {
	float: left;
	width: 25% ;
	padding: 10px;
  }
  
  @media screen and (max-width: 600px) {
	 .column-3{
	  width:100% ;
	  display: block;
	  margin-bottom: 8px;
  
	  }
  }
  
  .row-3 {
	margin:10px
  }
  
  .row-3::after {
	content: "";
	display: table;
	clear: both;
  }
  
  .card-3 {
	width: 300px; 
    height: 250px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
	padding: 10px;
	text-align: center;
	background: var(--secundary-color);
	border: 8px;
	margin: 3px auto;
  }
  
  .card-3:hover {
	transform: translate3d(0, -1px, 0) scale(1.08);
	transition: 0,6s;
	background-color: var(--primary-color);
  }

  .card-3 i {
	font-size: 4.5rem;
	color: var(--background-color);
	margin-bottom: 0.9rem;
  }

  .card-3 h3 {
	font-size: 2rem;
	color: var(--background-color);
  }

  #row-p {
	font-size: 1.6rem;
	text-align: justify;
	color: var(--background-color);
	width: 100%;
  }

/* ********************************** */
/*             iconos flotantes       */
/* ********************************** */
.floating-buttons {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color); 
    color: white;
    text-decoration: none;
    font-size: 30px;
    border-radius: 5px; 
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: var(--secundary-color)
}



/* Estilo del botón flotante */
.floating-btn {
    position: fixed;
    bottom: 18px;
    right: 20px;
    background-color: var(--primary-color); 
    color: var(--background-color); 
    width: 35px; /* Ajuste para hacerlo cuadrado */
    height: 32px; /* Ajuste para hacerlo cuadrado */
    text-align: center;
    line-height: 50px; /* Igual que el height para centrar el texto */
    border-radius: 8px; /* Borde redondeado suave */
    box-shadow: 0 3px 5px rgba(1, 1, 1, 0.5); 
    z-index: 1000; 
    text-decoration: none;
}

.floating-btn:hover {
    background-color: var(--secundary-color); 
}


.floating-btn i {
    font-size: 2.8rem;
	margin-top: 0.5rem; 
    
}

/* ********************************** */
/*            CARDS HOME 3           */
/* ********************************** */

.top-categories {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 3rem;
}

.container-categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.card-category {
	height: 25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	border-radius: 2rem;
	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */
}
.card-category.visible {
    opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}

.category-moca {
	background-image: linear-gradient(#00000080, #00000080),
		url('img/inicio/resina.jpg');
	background-size:cover;
	background-position: bottom;
	background-repeat: no-repeat;
}

.category-capuchino {
	background-image: linear-gradient(#00000080, #00000080),
		url('img/inicio/impermeabilizacion.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.category-expreso {
	background-image: linear-gradient(#00000080, #00000080),
		url('img/inicio/ucrete.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.card-category p {
	font-size: 2.3rem;
	font-weight: 500;
	color: #fff;
	text-transform:capitalize;
	position: relative;
	transition: font-size 0.3s ease-in-out;
    
}
.card-category:hover p {
	font-size: 2.5rem; 
}

.card-category a {
    text-decoration: none;
}

.card-category p::after {
	content: '';
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translate(-50%, 50%);
}


.card-category span {
	font-size: 1.6rem;
	color: #fff;
	cursor: pointer;
}

.card-category span:hover {
	color: var(--primary-color);
}

/* ********************************** */
/*            TOP PRODUCTS            */
/* ********************************** */
.top-products {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 3rem;
}

.container-options {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
}

.container-options span {
	color: #777;
	background-color: #fff;
	padding: 0.7rem 3rem;
	font-size: 1.4rem;
	text-transform: capitalize;
	border-radius: 2rem;
	cursor: pointer;
}

.container-options span:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.container-options span.active {
	background-color: var(--primary-color);
	color: #fff;
}

/* Products */
.container-products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	gap: 3rem;
}

.card-product {
	background-color: #fff;
	padding: 2rem 3rem;
	border-radius: 0.5rem;
	cursor: pointer;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.container-img {
	position: relative;
}

.container-img img {
	width: 100%;
}

.container-img .discount {
	position: absolute;
	left: 0;
	background-color: var(--primary-color);
	color: #fff;
	padding: 2px 1.2rem;
	border-radius: 1rem;
	font-size: 1.2rem;
}

.card-product:hover .discount {
	background-color: #000;
}

.button-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;

	position: absolute;
	top: 0;
	right: -3rem;
	z-index: -1;
	transition: all 0.4s ease;
}

.button-group span {
	border: 1px solid var(--primary-color);
	padding: 0.8rem;

	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s ease;
}

.button-group span:hover {
	background-color: var(--primary-color);
}

.button-group span i {
	font-size: 1.5rem;
	color: var(--primary-color);
}

.button-group span:hover i {
	color: #fff;
}

.card-product:hover .button-group {
	z-index: 0;
	right: -1rem;
}

.content-card-product {
	display: grid;
	justify-items: center;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(4, min-content);
	row-gap: 1rem;
}

.stars {
	grid-row: 1/2;
	grid-column: 1/-1;
}

.stars i {
	font-size: 1.3rem;
	color: var(--primary-color);
}

.content-card-product h3 {
	grid-row: 2/3;
	grid-column: 1/-1;

	font-weight: 400;
	font-size: 1.6rem;
	margin-bottom: 1rem;
	cursor: pointer;
}

.content-card-product h3:hover {
	color: var(--primary-color);
}

.add-cart {
	justify-self: start;
	border: 2px solid var(--primary-color);
	padding: 1rem;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s ease;

	display: flex;
	align-items: center;
	justify-content: center;
}

.add-cart:hover {
	background-color: var(--primary-color);
}

.add-cart i {
	font-size: 1.5rem;
	color: var(--primary-color);
}

.add-cart:hover i {
	color: #fff;
}

.content-card-product .price {
	justify-self: end;
	align-self: center;

	font-size: 1.7rem;
	font-weight: 600;
}

.content-card-product .price span {
	font-size: 1.5rem;
	font-weight: 400;
	text-decoration: line-through;
	color: #777;
	margin-left: 0.5rem;
}

/* ********************************** */
/*               GALLERY              */
/* ********************************** */
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 30rem);
	gap: 1.5rem;
	margin-bottom: 3rem;
}



.gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-img-3 {
	grid-column: 2/4;
	grid-row: 1/3;
}

/* ********************************** */
/*              SPECIALS              */
/* ********************************** */
.specials {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 3rem;
	z-index: 10;
}

/* ********************************** */
/*                SERVICIOS               */
/* ********************************** */

*,
*::before,
*::after {
  box-sizing: border-box;
}



.main{
  max-width: 1200px;
  margin: 0 auto;
}

.banner-servicios {
	background-image:
		url('img/servicios/servicios.jpg');
	height: auto;
	min-height: 40rem;
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
	position: relative;
}

.banner-servicios::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: 1;
}



img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 33.3333%;
  }
}

.card {
  background-color: var(--secundary-color);
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-bottom: solid var(--primary-color) 5px;

  opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */

}

.card.visible {
	opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}


.card_content {
  padding: 1rem;
}

.card_title {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
  text-align: center;
}

.card_text {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;    
  font-weight: 450;
}

.card:hover {
	transform: scale(1.03);
	top: -15px;
	box-shadow: 0 12px 16px rgba(0, 0, 0, 0.5);
	background-color: var(--primary-color);
  }

  .card {
	animation: cardAnimation 0.5s ease-in-out;
  }

.card-service {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 8rem;
	background-color: var(--background-color);
	border-radius: 1rem;
	padding: 1rem 0;
}

.card-service a {
	text-decoration: none;
}

.card-service i{
color: var(--secundary-color);
transition: transform 0.3s ease; 
}

.card-service i:hover {
    transform: scale(1.8);
	color: var(--primary-color);

}

/*SERVICIOS PRIMERA SECCION*/

.main-content {
    width: 100%;
}

.banner-section {
    position: relative;
    width: 100%;
    height: auto;
}

.image-container {
    width: 100%;
    height: auto;
}

.image-container img {
    width: 100%;
    height: 42rem;
    display: block;
	border-bottom: solid black 5px;
}

.services-section {
    padding: 20px 9px;
    background-color: var(--background-color);
    text-align: center;
}

.text-content {
    max-width: 80%;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    color: var(--secundary-color);
	text-align: justify;
	font-weight: 500;
}

.text-content h1 {
	font-size: 4.5rem;
	text-align: center; 
	font-weight: 500;
}

.text-content p {
	font-size: 1.6rem;
	font-weight: 450; 
}

.text-content a {
	text-decoration: none;
	font-weight: 600;
	color: var(--secundary-color);
}
 /*RESPONSIVE*/
@media (max-width: 768px) {
	.services-section {	
		padding: 0;
	}

	.image-container {
		position: relative;
		width: 100%;
		margin: 0; 
        padding: 0
	}

	.image-container img {
		width: 100%;
		height: auto;
		object-fit: cover;
		display: block;
	}

    .text-overlay {
        position: relative;
        background-color: transparent; 
        min-height: 100px; 
		box-sizing: border-box;
		padding:20px;
		margin-top: 32rem
    }

    .text-content {
        text-align: center; 
		padding: 0;
		margin-top: 0;
    }

    .text-content h1 {
        font-size: 4rem; 
		margin-bottom: 10px;
    }

    .text-content p {
        font-size: 2.3rem; 
    }
}

.boton-container {
    display: flex;
    justify-content: center; 
    align-items: center;           
}

.boton-container a {
	text-decoration: none;
}

.button {
	display: flex;
	height: 60px;
	padding: 0;
	background: var(--secundary-color);
	border: none;
	outline: none;
	border-radius: 5px;
	overflow: hidden;
	font-family: "Quicksand", sans-serif;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	justify-content: center;
	margin: 3rem 0;

	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */
}
.button.visible {
	opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}
.button:hover {
	background: var(--primary-color);
}

.button:active {
	background: var(--secundary-color);
}

.button__text,
.button__icon {
	display: inline-flex;
	align-items: center;
	padding: 0 24px;
	color: var(--background-color);
	height: 100%;
	font-size: 2.5rem;

}

.button__icon {
	font-size: 2.5em;
	background: rgba(0, 0, 0, 0.08);
}

	


/*PRODUCTOS EN SERVICIOS*/
.producto-section {
    width: 100%;
    max-width: 700px; 
    margin: 0 auto;
    padding: 1rem; 
    text-align: center;
}

.producto-title {
    font-size: 4.5rem; 
    margin: 5rem 0;

	font-weight: 500;
	color: var(--secundary-color);
}

.producto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: center;
    gap: 1rem; 
	border-top: solid var(--secundary-color) 5px;

	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */
	
}

.producto-grid.visible, .producto-details.visible {
	opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}

.producto-info {
    text-align: center;
    font-size: 3.5rem;
	color: var(--secundary-color);
	
}

.producto-info p {
    margin: 0.3rem 0; 
}

.producto-image img {
    max-width: 95%; 
    height: auto;
    border-radius: 4px;
	transition: transform 0.3s ease; 
}

.producto-image img:hover {
    transform: scale(1.1); 
}
.producto-details {
    background-color: var(--secundary-color);
    padding: 1.3rem; 
    font-size: 2rem; 
    max-width: 1200px; 
	color: var(--background-color);
	text-align: center;
	border-radius: 1rem;
	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */
}

.whatsapp-container {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.whatsapp-button {
    padding: 10px 30px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px; 
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -15px; 
	transition: background-color 0.3s ease;
}

.whatsapp-icon i {
    color: white;
    font-size: 30px;
}

.whatsapp-container:hover .whatsapp-icon {
    background-color: #128C7E;
}



/* ********************************** */
/*               TRABAJOS               */
/* ********************************** */




.banner-trabajos {
	background-image:
		url('img/obras/principal2.jpg');
	height: auto;
	min-height: 35rem;
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
	position: relative;
}

.banner-trabajos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.trabajos-section {
display: block;
background-color: var(--background-color);
}



.trabajos-section h2 {
	text-align: center;
	font-weight: 500;
	font-size: 4.5rem;
	color: var(--secundary-color);
	padding-top: 2rem;
}

.trabajos-section p {
text-align: center;
font-size: 2.5rem;
color: var(--secundary-color);
font-weight: 500;
}

/* BOTONES*/

.filter-buttons {
    margin: 20px 0;
    text-align: center;
}


.filter-btn {
    background-color: var(--secundary-color);
    color: var(--background-color);             
    border: none;            
    padding: 10px 20px;        
    margin: 2rem;              
    border-radius: 5px;       
    cursor: pointer;          
    font-size: 1.8rem;           
    transition: background-color 0.3s, box-shadow 0.3s; 
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
	font-weight: 550;
}


.filter-btn:hover {
    background-color: var(--blue-color); 
	box-shadow: 0 0 10px 4px rgba(0, 123, 255, 0.4);
}

.filter-btn:active {
    transform: translateY(4px); /* Mueve el botón hacia abajo */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Mantiene la sombra original */
}

@media (max-width: 768px) {
    .filter-btn {
        font-size: 1.6rem;  /* Tamaño de fuente más pequeño */
        padding: 8px 16px;  /* Menor relleno */
        margin: 0.8rem;  /* Reducir el espacio entre los botones */
    }
}

@media (max-width: 480px) {
    .filter-btn {
        font-size: 1.8rem;  /* Reducir aún más el tamaño de la fuente */
        padding: 6px 15px;  /* Ajuste del relleno para pantallas muy pequeñas */
        margin: 0.5rem;     /* Reducir el margen entre los botones */
        width: 60%;         /* Hacer que los botones ocupen casi todo el ancho en pantallas pequeñas */
        display: block;     /* Alineación vertical de los botones */
        margin-left: auto;  /* Centrar los botones */
        margin-right: auto;
    }
}
/*SECCIONES*/

/*PRINCIPAL*/
.trabajos-res{
	display: none;
	background-color: var(--background-color);
	padding-bottom: 3rem;
	align-items: center;
	width: 100%;
}



.trabajos-res.show {
    display: block;
}


.trabajos-res h2{
	text-align: center;
	color: var(--secundary-color);
	padding-bottom: 1.5rem;
}

.trabajos-res p {
	text-align: justify;
	color: var(--secundary-color);
	justify-content: center;
	width: 75%;
	margin: 0 auto;
	font-weight: 400;
	padding-bottom: 1rem;
}

#descripcion {
	text-align: center;
	font-weight: 400;
	color: var(--secundary-color);
	font-size:1.8rem ;
	margin-bottom: 1px;
}

#principal-p{
	text-align: center;
}

.trabajos-res.hide {
    display: none;
}

.content-proceso {
	margin-top: 10rem;
}

#subtittle {
	font-weight: 700;
}

.imagen-proceso {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 450px; 
	margin: 20px 0; 
}

.imagen-proceso img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.imagen-proceso img:hover {
	transform: scale(1.1); 
}
.card-proceso {
	text-align: center;
	font-size: 10rem;
	margin-top: 0;
	color: var(--secundary-color);
}

.content-proceso .details {
	text-align: left;
	font-weight: 600;
	font-size: 2rem;
}
.content-proceso .details-2 {
	text-align: left;
} 

/*CARDS*/
.carts-list {
	z-index: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4rem;
	margin-top: 1rem;
  }
  
  .cart {
	margin: 0;
	width: 300px;
	height: 400px;
	border-radius: 40px;
  	box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
	cursor: pointer;
	transition: 0.4s;
  }
  
  .cart .cart_image {
	width: inherit;
	height: inherit;
	border-radius: 40px;
  }
  
  .cart .cart_image img {
	width: 100%;
	height: 100%;
	border-radius: 40px;
	object-fit: cover;
  }
  
  .cart .cart_title {
	text-align: center;
	border-radius: 0px 0px 40px 40px;
	font-weight: bold;
	font-size: 30px;
	margin-top: -80px;
	height: 40px;
  }
  
  .cart:hover {
	transform: scale(1.08, 1.08);
	box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
	  -5px -5px 30px 15px rgba(0,0,0,0.22);
  }
  
  .title-white {
	color: white;
  }
  
  .title-black {
	color: black;
  }
  
  @media all and (max-width: 500px) {
	.cart-list {
	  flex-direction: column;
	}
  }



  /*IMAGE ROTATIVE*/
  .slider-rotative {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	perspective: 1200px; 
}

.slider-rot {
	display: flex;
    transition: transform 0.5s ease-in-out;
	transform-style: preserve-3d; /* Habilita el efecto 3D */
    width: 100%;
}

.slider-rot img {
	width: 100%;
    min-width: 100%;
    height: 500px;
    object-fit: cover;
	transform-origin: left;
    transition: transform 0.5s ease-in-out;
}


.nav-arrows-rotative {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.nav-arrows-rotative .prev-rot,
.nav-arrows-rotative .next-rot {
    background-color: var(--secundary-color);
    color: white;
    padding: 15px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.nav-arrows-rotative .prev-rot:hover,
.nav-arrows-rotative .next-rot:hover {
    background-color: var(--blue-color);
}

.view-more-btn {
    position: absolute;
    bottom: 10px; /* Ajusta la distancia desde el borde inferior */
    right: 10px; /* Ajusta la distancia desde el borde derecho */
    background-color: var(--secundary-color); /* Color de fondo */
    color: white; 
    padding: 8px 10px; 
    border-radius: 5px; 
    text-decoration: none; 
    font-size: 12px; 
    transition: background-color 0.3s ease; 
}

.view-more-btn:hover {
    background-color: var(--blue-color); 
}



@media (max-width: 768px) {
	.thumbnails-container img {
        width: 50px;
        height: 30px;
    }


    .slider-container {
        max-width: 100%;
    }

    .slider img {
        height: 300px;
    }

    .nav-arrows .prev, 
    .nav-arrows .next {
        padding: 5px;
    }

	.view-more-btn {
        padding: 6px 10px; 
        font-size: 10px; 
    }
}

@media (max-width: 480px) {
    .slider img {
        height: 200px;
    }

    .nav-arrows .prev, 
    .nav-arrows .next {
        padding: 3px;
    }
}

/*SLIDE*/


/*VIDEO-CONTAINER*/
.video-wrapper {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.video-container {
	position: relative;
	padding-bottom: 30%; 
	height: 0;
	overflow: hidden;
	width: 100%;
	max-width: 50%;
	background: #000;
}


.video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*CONTACTO*/
.contact-wrap {
	width: 80%;
	height: auto;
	margin: 20px auto;
	display: flex;
	flex-wrap: wrap;
	background-color: var(--background-color);
}

.contact-in {
	padding: 40px 30px;
}

.contact-in:nth-child(1) {
	flex: 50%;
	background-color: var(--background-color);
	
}

.contact-in:nth-child(2) {
	flex: 50%;
	background: var(--background-color);
}



.contact-in h1 {
	font-size: 24px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 20px;
}

.contact-in h2 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 15px;
	color: var(--secundary-color);
	text-align: center;
}

.contact-in h2 i {
	font-size: 23px;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	background: var(--secundary-color);
	color: var(--background-color);
	border-radius: 50px;
	line-height: 40px;
	text-align: center;
	transition: 0.3s;
}

.contact-in:hover h2 i { 
	background-color: var(--blue-color);
}

.contact-in p {
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 20px;
	color: var(--secundary-color);
}

.contact-in ul {
	padding: 0;
	margin: 0;
}

.contact-in ul li {
	list-style: none;
	display: inline-block;
	margin-right: 5px;
	margin-top: 5px;
}

.contact-in ul li a {
	display: block;
	width: 40px;
	height: 40px;
	text-align: center;
	background: var(--secundary-color);
	border-radius: 50px;
}

.contact-in ul li a i {
	font-size: 25px;
	line-height: 40px;
	color: var(--background-color);
}


.contact-in form {
	width: 100%;
	height: auto;
}

.contact-in-input {
	width: 100%;
	height: 40px;
	margin-bottom: 20px;
	border: 1px solid #fff;
	outline: none;
	padding-left: 5px;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}



.contact-in-textarea {
	width: 100%;
	height: 140px;
	margin-bottom: 20px;
	border: 1px solid #fff;
	outline: none;
	padding-top: 5px;
	padding-left: 5px;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}

.contact-in-textarea::placeholder {
	color: #fff;
}

.contact-in-btn {
	width: 100%;
	height: 40px;
	border: 1px solid #fff;
	outline: none;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	cursor: pointer;
	transition: all 0.3s ease;
}

.contact-in-btn:hover {
	background-color: var(--blue-color);
}

.contact-in iframe {
	width: 100%;
	height: 100%;
}

@media only screen and (max-width:480px) {
	.contact-in:nth-child(1) {
		flex: 50%;
	}

	.contact-in:nth-child(2) {
		flex: 50%;
	}

	.contact-in:nth-child(3) {
		flex: 100%;
	}

}

@media only screen and (max-width:360px) {
	.contact-in:nth-child(1) {
		flex: 50%;
	}

	.contact-in:nth-child(2) {
		flex: 50%;
	}

	.contact-in:nth-child(3) {
		flex: 100%;
	}

}


.banner-contactos {
	background-image:
		url('img/contacto/banner.jpg');
	height: auto;
	min-height: 35rem;
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
	position: relative;
}

.banner-contactos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.contact_tittle {
	background-color: var(--background-color);
	border-bottom: solid var(--secundary-color) 1px;
	text-align: left;
	padding-bottom: 2rem;
	color: var(--secundary-color);
	text-align: center;
}
.contact_tittle h1{
	font-size: 4.5rem;
	padding-top: 2rem;
	font-weight: 500;
}

.contact_tittle p{
	font-size: 2rem;
}

.contact_tittle span{
	font-size: 1.3rem;
}

.contacto {
	background-color: var(--background-color);
}

.container-contactos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
	gap: 1rem; 
	padding: 5rem 0;
	justify-content: center; 
	align-items: center; 
	max-width: 1200px; 
	margin: 0 20rem; 
}

.cart-contacto {
	display: flex; 
	flex-direction: column; 
	align-items: center; 
	justify-content: center; 
	gap: 1rem;
	border-radius: 1rem;
	padding: 1.5rem 3rem;
	background: var(--secundary-color);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.5);
	width: 200px; 
	height: 300px;
	transition: background 0.3s ease; 
}
.container-contactos a {
 text-decoration: none;
 cursor: pointer;
}

.whats:hover {
	background-color: green;
}

.mail:hover{
	background: #1877F2;
}

.insta:hover {
	background: linear-gradient(to bottom, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.you:hover{
	background-color:  #c4302b;
}

.cart-contacto i {
	font-size: 10rem;
	color: var(--background-color);
}

.cart-contacto:hover i {
	font-size: 10rem;
	color: var(--background-color);
	transform: scale(1.2);
}

.contact-content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-content span {
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--background-color);
}
.cart-contacto:hover span {
	color: var(--background-color);
	transform: scale(1.3);
}

.contact-content p {
	color: var(--secundary-color);
	font-weight: 500;
}

.contact-lineas {
    align-items: center;
    gap: 2rem;
	color: var(--secundary-color);
	padding-bottom: 2rem; 
}

.contact-lineas h2 {
	font-size: 3rem;
	font-weight: 500;
	margin-left: 16rem;
}

.contact-lineas p {
	font-size: 2.5rem;
	margin-left: 18rem;
}




/*FAQ CONTACTOS*/
.container-faq {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 85%;
	background-color: var(--background-color);
	color: var(--secundary-color);
	padding-bottom: 5rem;
  }
  
  .title-faq {
	text-align: center;
	font-size: 4rem;
	font-weight: 500;
  }
  
  .faq {
	max-width: 600px;
	border: 3px solid var(--primary-color);
	margin: 20px 20px 0;
	border-radius: 10px;
	position: relative;
	cursor: pointer;
	background-color: var(--secundary-color);
	color: var(--background-color);
	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */

  }

  .faq.visible {
	opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
  }
  
  .faq-question {
	margin: 15px;
	font-weight: 500;
  }
  
  .faq-toggle {
	position: absolute;
	right: 25px;
	top: 20px;
	font-size: 20px;
  }
  
  .faq-icon {
	transition: transform 0.5s ease;
  }
  
  .faq-answer {
	font-size: 1.3rem;
	text-align: justify;
	line-height: 24px;
	margin: 10px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.8s ease-in-out;
  }
  
  .faq.active .faq-answer {
	max-height: 300px;
  }
  
  .faq.active .faq-icon {
	transform: rotate(180deg);
  }
  

/*PRUEBA*/
.contact1 {
    background-color: var(--background-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    margin: auto;
    padding: 5rem 15rem;
}


.image_contact1 {
    background-color: var(--secundary-color);
    display: flex;
    justify-content: center;
    align-items: center;

}

.image_contact1 iframe {
    width: 100%;
    height: 100%;
}

.content_contact1 {
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    text-align: center; /* Centra el texto en todo el contenido */
}


.contact-details p {
    font-weight: 400;
    opacity: 0.8;
    color: white;
    font-size: 1.9rem;
    margin: 5px 0;
    display: flex;
    justify-content: center; /* Centra los iconos y textos en cada párrafo */
    gap: 10px; /* Espaciado entre el icono y el texto */
}
.contact-details h2 {
    margin-top: 40px;
    font-size: 2.5rem;
    color: var(--background-color); /* O el color que prefieras */
    text-transform: uppercase;
    letter-spacing: 2px;
}



.social-contact1 {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px; 
}

.social-contact1 a {
    color: white;
    font-size: 4rem;
    transition: color 0.3s ease;
}

.social-contact1 a:hover {
    color: var(--secundary-color);
	transform: scale(1.2); /* Aumenta el tamaño del icono al 120% */
}

.vertical-line{
    height: 30px;
    width: 0.5px;
    background: #777;
    margin: 0 auto;
}

@media (max-width: 768px) {

	.contact1 {
        grid-template-columns: 1fr; 
        padding: 2rem; 
    }

    .image_contact1 {
        background-size: cover; 
        background-position: center; 
        height: 200px; 
    }

    .content_contact1 {
        width: 100%; 
        padding: 1rem; 
    }

    .content_contact1 h2 {
        font-size: 2.7rem; 
        letter-spacing: 3px; 
    }
	
    .content_contact1 p {
        width: 90%; 
        font-size: 1.8rem; 
        padding-bottom: 10px; 
    }
}
/*FIN CONTACTO*/


/* ********************************** */
/*               GALERIA             */
/* ********************************** */
.banner-galeria {
	background-image:
		url('img/galeria/pr2.jpg');
	height: auto;
	min-height: 35rem;
	background-size: auto;
	background-position: center;
    background-repeat: no-repeat;
	position: relative;
}

.banner-galeria::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}


.gallery-section{
	width: 100%;
	padding: 20px 0;
	background: #f1f1f1;
  }
  
  .inner-width{
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 0 20px;
  }
  
  .gallery-section h1{
	text-align: center;
	color: var(--secundary-color);
	font-weight: 500;
	font-size: 4.5rem;
  }
  
  .border{
	width: 180px;
	height: 4px;
	background: var(--secundary-color);
	margin: 20px auto;
  }
  
  .gallery-section .gallery{
	display: flex;
	flex-wrap: wrap-reverse;
	justify-content: center;
  }
  
  .gallery-section .image{
	flex: 25%;
	overflow: hidden;
	cursor: pointer;
  }
  
  .gallery-section .image img{
	width: 100%;
	height: 100%;
	transition: 0.4s;
  }
  
  .gallery-section .image:hover img{
	transform: scale(1.2);
  }

  .gallery-section .image video {
    width: 100%;    
    height: auto;   
    transition: 0.4s; 
}

.gallery-section .image:hover video {
    transform: scale(1.2); 
}
  
  @media screen and (max-width:960px) {
	.gallery-section .image{
	  flex: 33.33%;
	}
  }
  
  @media screen and (max-width:768px) {
	.gallery-section .image{
	  flex: 50%;
	}
  }
  
  @media screen and (max-width:480px) {
	.gallery-section .image{
	  flex: 100%;
	}
  }




  /*video*/
  .video-galeria{
	background-color: var(--background-color);
  }
  .video-galeria h1{
	text-align: center;
	font-size: 3.5rem;
	font-weight: 500;
	color: var(--secundary-color);
  }
  .container-video {
	background: var(--background-color);
	height: 515px;
	width: 1170px;
	display:flex;
	margin: auto; 
    position: relative;
	padding-bottom: 3rem;
  }

  .container-video .video-list {
	width: 20%;
	padding: 10px;
	padding-right: 0;
  }

  .container-video .video-list video.video-active,
  .container-video .video-list video:hover{
	background:var(--secundary-color);
	box-shadow: 0 0 0 4px var(--primary-color) inset;
  }

  

  .container-video .video-list video{
	width: 100%;
	object-fit: cover;
	height: 112px;
	padding: 10px;
	cursor: pointer;
	background: var(--secundary-color);
  }

  .container-video .main-video {
	width: 80%;
	padding: 10px;

  }

  .container-video .main-video video{
	width: 100%;
	height: 100%;
	outline: none;
	padding: 10px;
	background: var(--secundary-color);
	box-shadow: 0 0 0 6px var(--primary-color) inset;
  }



/* ********************************** */
/*               FOOTER               */
/* ********************************** */

.footer {
	background: var(--secundary-color)
}

.container-footer {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding:3rem 8rem;
}

.menu-footer {
	display: grid;
	grid-template-columns: repeat(4, 1fr) ;
	gap: 1rem;
	justify-items: center;
}

.title-footer {
	font-weight: 650;
	font-size: 1.6rem;
	text-transform: uppercase;
	color: var(--blue-color);
}

.title-footer img {
    margin-bottom: -5rem; 
	margin-top: -5rem;
	width: 90%;
	margin-left: 2rem;
}




.information,
.my-account,
.newsletter {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
}

.contact-info {
	margin-top: -1rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-info ul,
.information ul,
.my-account ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-info ul li,
.information ul li,
.my-account ul li {
	list-style: none;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 300;
}

.information ul li a,
.my-account ul li a {
	text-decoration: none;
	color: #fff;
	font-weight: 300;
}

.information ul li a:hover,
.my-account ul li a:hover {
	color: var(--blue-color);
}

.social-icons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.social-icons span {
	border-radius: 50%;
	width: 3rem;
	height: 3rem;

	display: flex;
	align-items: center;
	justify-content: center;
}

.social-icons span i {
	color: #fff;
	font-size: 1.2rem;
}

.facebook {
	background-color: #3b5998;
}

.twitter {
	background-color: #000000;
}

.youtube {
	background-color: #c4302b;
}

.pinterest {
	background-color: #23c865;
}

.instagram {
	background: linear-gradient(
		#405de6,
		#833ab4,
		#c13584,
		#e1306c,
		#fd1d1d,
		#f56040,
		#fcaf45
	);
}

.content p {
	font-size: 1.4rem;
	color: #fff;
	font-weight: 300;
}



.content input::-webkit-input-placeholder {
	color: #eee;
}

.content button {
	border: none;
	background-color: var(--background-color);
	color: var(--secundary-color);
	text-transform: uppercase;
	padding: 1rem 3rem;
	border-radius: 2rem;
	font-size: 1.4rem;
	font-family: inherit;
	cursor: pointer;
	font-weight: 600;
	margin-top: 2rem;
}

.content button:hover {
	background-color: var(--secundary-color);
	color: var(--background-color);
}

.copyright {
	display: flex;
	justify-content: center;
	padding-top: 2rem;

	border-top: 1px solid var(--blue-color);
}

.copyright p {
	font-weight: 400;
	font-size: 1.4rem;
	color: var(--background-color);
}





/* ********************************** */
/*       MEDIA QUERIES -- 768px       */
/* ********************************** */
@media (max-width: 768px) {
	html {
		font-size: 45%;
	}

	.hero {
		padding: 2rem;
	}

	/*NAVBAR*/
	.logo-container {
        margin-left: 0;
    }
	.logo-container a {
		align-items: center;
	}

    .navbar {
		justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
		width: 100%;
    }

    .navbar .fa-bars, .navbar .fa-times {
        display: block;
		position: absolute;
		right: 3rem;
		top: 1.5rem;
    }

    .menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
		margin-top: 2rem;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        display: block;
        width: 100%;
        padding: 1rem;
    }

	.menu a {
        display: block;
        width: 50%;
        padding: 1rem;
		left: 50%; 
		transform: translate(-50%); 
    }

	.menu a::after {
		width: 50%; 
		height: 0; 
		border-radius: 1rem; 
		left: 50%; 
		transform: translate(-50%, 50%); 
	}
	
	/*NOVEDADES*/
	.border-nov{
		margin: 2px auto;
		text-align: left;
	  }

	  .products h2{
		margin-left: 3rem;
	}

	.all-products{
		margin: auto;
		justify-content: center;
	}
	

	/*FIN NAVBAR*/

	.banner {
		background-size:cover;
	}

	.content-banner {
		max-width: 50rem;
		margin: 0 1.5rem;
		padding: 15rem 0;
	}

	.container-features {
		grid-template-columns: repeat(2, 1fr);
		padding: 3rem 2rem;
	}

	.card-feature {
		padding: 2rem;
	}



	.container-options {
		align-items: center;
	}

	.container-options span {
		text-align: center;
		padding: 1rem 2rem;
	}

	
	.container-footer {
        grid-template-columns: 1fr; 
    }

	.menu-footer {
		display: flex;
        flex-direction: column;
        gap: 2rem;
		align-items: center;
		text-align: center;
	 }
	.title-footer {
        text-align: center; 
	
    }

	.information ul,
    .my-account ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem; 
        align-items: center; 
	

	}

	.information ul li,
    .my-account ul li {
        list-style: none;
        color: #fff;
        font-size: 1.4rem;
        font-weight: 300;
        text-align: center; 
    }
	.information ul li a,
    .my-account ul li a {
        text-decoration: none;
        color: #fff;
        font-weight: 300;
    }

    .information ul li a:hover,
    .my-account ul li a:hover {
        color: var(--dark-color);
    }

	.copyright {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
	}

    /*CARDS HOME 3*/
	.container-categories {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 3rem;
	}
	
	.card-category {
		height: 25rem;
		display: flex;
		gap: 2rem;
	}


	.card-category p {
		font-size: 2.5rem;
		font-weight: 500;
		color: #fff;
		text-transform:capitalize;
		position: relative;
		transition: font-size 0.3s ease-in-out;
		
	}

	.category-capuchino, .category-moca, .category-expreso {
		background-size: 88%;
	}



	.heading-1 {
		font-size: 3rem;
		font-weight: 550;
	}


	/*VIDEO GALERIA RESPONSIVE*/
	.video-galeria h1 {
        font-size: 3rem;
    }

    .container-video {
        width: 100%;
        height: 50%;
        padding: 1rem;
        flex-direction: column;
    }

    .container-video .video-list {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .container-video .video-list video {
        height: 90px;
        padding: 5px;
    }

    .container-video .main-video {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .container-video .main-video video {
        width: 100%;
        height: auto;
    }

	

/*Banner-obras*/
.banner-trabajos {
	
	min-height: 35rem;
}
	
/* ********************************** */
/*             iconos flotantes       */
/* ********************************** */
.floating-buttons {
    position: fixed;
    top: 30%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3.5px;
    z-index: 0;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color); 
    color: white;
    text-decoration: none;
    font-size: 30px;
    border-radius: 5px; 
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #000000; 
}

.floating-buttons { 
	display: none;
}

/*RESPONSIVE OBRAS*/
.trabajos-res {
	padding-top: 1rem;
	padding-bottom: 2rem; 
}

.trabajos-res h2 {
	font-size: 3.7rem; 
	padding-bottom: 1rem; 
}

.trabajos-res p {
	width: 90%; 
	font-size: 2rem; 
	padding-bottom: 0.5rem; 
}

#descripcion {
	font-size: 1.2rem; 
}

.content-proceso {
	margin-top: 2rem; 
}

.imagen-proceso {
	height: 350px; 
	margin: -50px 0; 
}

.imagen-proceso img {
	height: 60%; 
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); 
}

.card-proceso {
	font-size: 6rem; 
}

.content-proceso .details {
	font-size: 1.5rem; 
}

.content-proceso .details-2 {
	font-size: 1rem; 

}
.card-3 {
	width: 80%; 
	height: auto; 
	margin: 10px auto; 
}

.video-container {
	width: 400px;
	height: 300px; 
}

/*CONTACTOS*/
/*CARTAS CONTACTO*/
.container-contactos {
	margin: 0 5rem; 
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
	
}

.cart-contacto {
	width: 150px; 
	height: 250px; 
}

.contact-lineas {
    gap: 2rem;
	color: var(--secundary-color);
	text-align: left;
	
}
.contact-lineas h2 {
	font-size: 2.5rem;
	font-weight: 500;
	margin-left: 5rem;
}

.contact-lineas p {
	font-size: 2.5rem;
	margin-left: 5rem;
}

.banner-galeria {
	background-size: cover;
	height:auto ;
}


}



/*PARA IPADS*/
@media (min-width: 768px) and (max-width: 1200px) {
	/*NAVBAR*/

	
	
	.logo-container {
		margin-left: -1rem;
	}
	
	/**/
	.navbar {
		justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
		width: 100%;
    }

    .navbar .fa-bars, .navbar .fa-times {
        display: block;
		position: absolute;
		right: 3rem;
		top: 1.5rem;
    }

    .menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
		margin-top: 2rem;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        display: block;
        width: 50%;
        padding: 1rem;
		left: 50%; /* Mantén la posición centrada */
		transform: translate(-50%); /* Mantén la transformación centrada */
    }

	.menu a::after {
		width: 50%; /* Reduce el ancho del óvalo */
		height: 0; /* Ajusta la altura si es necesario */
		border-radius: 1rem; /* Ajusta el borde redondeado si es necesario */
		left: 50%; /* Mantén la posición centrada */
		transform: translate(-50%, 50%); /* Mantén la transformación centrada */
	}
	

	/*BANNER HOME*/
	.content-banner {
		max-width: 90rem;
		margin: 0 auto;
		padding: 15rem 3rem;
		color: white;
	}
	/*CARTAS BLANCAS*/
	.container-features {
		display: grid;
		grid-template-columns: repeat(2, 2fr);
		gap: 3rem;
		padding: 5rem 0;
	}
	
	.card-feature {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1.5rem;
		border-radius: 1rem;
		padding: 1.5rem 0;
	}
	
	
	/*cards home 3*/
	.container-categories {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 3rem;
	}
	
	.card-category {
		border-radius: 2rem;
		height: 25rem;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2rem;
	}

	.card-category p {
		font-size: 2.5rem;
		font-weight: 500;
		color: #fff;
		text-transform:capitalize;
		position: relative;
		transition: font-size 0.3s ease-in-out;
		
	}

	.category-capuchino, .category-moca, .category-expreso {
		background-size: 80%;
	}

	/*NOSOTROS*/
	.about{
		background-size: 100%;
		padding: 2rem 0;
	}
	.inner-section{
		width: 55%;
		float: right;
		background-color: var(--secundary-color);
		padding: 4.5rem;
		box-shadow: 10px 10px 8px rgba(0,0,0,0.4);
	}
	.inner-section h1{
		margin-bottom: 10px;
		font-size: 30px;
		font-weight: 600;
		color: var(--background-color);
		text-align: center;
	}
	.text{
		font-size: 1.2rem;
		color: var(--background-color);
		line-height: 30px;
		text-align: justify;
		margin-bottom: 15px;
	}
	.skills button{
		font-size: 1.8rem;
		text-align: center;
		letter-spacing: 2px;
		border: none;
		border-radius: 20px;
		padding: 8px;
		width: 200px;
		background-color: var(--primary-color);
		color: white;
		cursor: pointer;
	}
	.skills button:hover{
		transition: 1s;
		background-color: #ecf5f5;
		color: #00999c;
	}
	
	.content_mv {
		display: flex;
		gap: 3rem;
		justify-content: center;
		align-items: stretch;
		padding: 10px;
		background-color: var(--background-color);
		width: 100%;
	}
	
	.mision {
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
		padding: 15px;
		width: 100%;
		text-align: center;
		justify-content: space-between;
	}
	
	.mis {
		
		background-color: var(--primary-color);
	}
	
	.vis {
		background-color: var(--secundary-color);
	  
	
	}
	
	.mision h2 {
		margin-top: 0;
		font-size: 2.2rem;
		color: var(--background-color);
		text-transform: uppercase;
	}
	
	.mision p {
		color: var(--background-color);
		font-size: 1.4rem;
		line-height: 1.5;
		text-align: justify;
	}
	.floating-buttons { 
		display: none;
	}

	/*OBRAS CARDS*/
	.carts-list {
		gap: 6rem;
	  }
	  

	/*FOOTER*/
	.container-footer {
        grid-template-columns: 1fr; 
    }

	.menu-footer {
		display: flex;
        flex-direction: column;
        gap: 2rem;
		align-items: center;
		text-align: center;
	 }
	.title-footer {
        text-align: center; 
	
    }

	.information ul,
    .my-account ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem; 
        align-items: center; 
	

	}

	.information ul li,
    .my-account ul li {
        list-style: none;
        color: #fff;
        font-size: 1.4rem;
        font-weight: 300;
        text-align: center; 
    }
	.information ul li a,
    .my-account ul li a {
        text-decoration: none;
        color: #fff;
        font-weight: 300;
    }

    .information ul li a:hover,
    .my-account ul li a:hover {
        color: var(--dark-color);
    }

	.copyright {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1.5rem;
	}
	/*FIN FOOTER*/


	/*VIDEO GALERIA PARA TABLETS*/
	.container-video {
        width: 95%;
    }
		

	 /*CARTAS OBRAS*/
	 .card-3 {
		width: 200px; 
		height: 370px; 
		margin: 10px auto;
	}
	
	.video-container {
		width: 600px;
		height: 500px; 
	}

	.imagen-proceso {
		height: 350px; 
		margin: 5px 0; 
	}

	.contact-lineas {
		gap: 2rem;
		color: var(--secundary-color);
		text-align: left;
		
	}
	.contact-lineas h2 {
		font-size: 2.5rem;
		font-weight: 500;
		margin-left: 5rem;
	}
	
	.contact-lineas p {
		font-size: 2.5rem;
		margin-left: 5rem;
	}


	.container-contactos {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
		gap: 1rem; 
		padding: 5rem 0;
		justify-content: center; 
		align-items: center; 
		margin: 0 2rem; 
	}

	.cart-contacto {
		display: flex; 
		flex-direction: column; 
		align-items: center; 
		justify-content: center; 
		gap: 1rem;
		border-radius: 1rem;
		padding: 1.5rem 3rem;
		background: var(--secundary-color);
		backdrop-filter: blur(10px);
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
		border: 1px solid rgba(255, 255, 255, 0.5);
		width: 200px; 
		height: 300px;
		transition: background 0.3s ease; 
	}

	.contact1 {
        grid-template-columns: 1fr; 
    }

}


	/*NAVBAR*/
@media (min-width: 1201px) and (max-width: 1400px) {


	
	
	.navbar {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0.5rem 1rem;
	}
	
	.navbar .fa-bars, .navbar .fa-times {
		display: none;
		font-size: 3.5rem;
		cursor: pointer;
		color: var(--background-color);
	}
	
	.menu {
		display: flex;
		gap: 2.2rem;
		margin: 0;
		align-items: center;
		margin-right: 1.6rem;
		
	}
	
	.menu li {
		list-style: none;
	}
	
	
	
	.logo-container {
		display: flex;
		align-items: center; 
		margin-right: auto;
		margin-left: -1rem;
	}
	

}	
/*new carrusel*/
#container-slide2 {
	height: 60vh;
	display: grid;
	place-items: center;
	position: relative;
}
#slider-container2 {
	height: 300px;
	width: 85vw;
	max-width: 1400px;
	position: relative;
	overflow: hidden;
	padding: 20px;
	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#slider-container2.visible {
	opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}
#slider-container2 .btn-2 {
	position: absolute;
	top: calc(50% - 30px);
	height: 25px;
	width: 25px;
	cursor: pointer;
}
.slide-2 img {
    transition: transform 0.3s; /* Para el efecto de agrandamiento */
}

.slide-2 img:hover {
    transform: scale(1.1); /* Agranda la imagen un poco al pasar el cursor */
}

#slider-container2 #slider-b2 {
	display: flex;
	width: 1000%;
	height: 100%;
	transition: all .5s;
}
#slider-container2 #slider-b2 .slide-2 {
	height: 90%;
	margin: auto 10px;
	background-color: var(--background-color);
	border-radius: 5px;
	display: grid;
	place-items: center;
}
#slider-container2 #slider-b2 .slide-2 span {
	color: white;
	font-size: 60px;
}

.btn-2 {
    cursor: pointer;
    font-size: 38px; /* Tamaño del ícono */
    color: var(--secundary-color); /* Color del ícono */
    transition: color 0.3s; /* Transición de color */
	z-index: 1;
}

.btn-2:hover {
    color: var(--blue-color); /* Cambia el color al pasar el mouse */
}

.btn-left {
    position: absolute; 
    left: 5px; /* Ajusta la distancia desde la izquierda */
    top: 50%; /* Centra verticalmente */
    transform: translateY(-50%); /* Centra verticalmente */
}

.btn-right {
    position: absolute;
    right: 10px; /* Ajusta la distancia desde la derecha */
    top: 50%; /* Centra verticalmente */
    transform: translateY(-50%); /* Centra verticalmente */
}
@media only screen and (min-width: 1100px) {
	#slider-container2 #slider-b2 .slide-2 {
		width: calc(2.5% - 20px);
	}
}
@media only screen and (max-width: 1100px) {
	#slider-container2 #slider-b2 .slide-2 {
		width: calc(3.3333333% - 20px);
	}
}
@media only screen and (max-width: 900px) {
	#slider-container2 #slider-b2 .slide-2 {
		width: calc(5% - 20px);
	}

	.slide-2 img:hover {
		transform: scale(1.0); /* Agranda la imagen un poco al pasar el cursor */
	}
}
@media only screen and (max-width: 550px) {
	#slider-container2 #slider-b2 .slide-2 {
		width: calc(10% - 20px);
	}
}



/*BOTON NUEVO*/
.cta {
	position: relative;
	margin: auto;
	padding: 12px 15px;
	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: var(--blue-color);
	width: 40px;
	height: 45px;
	transition: all 0.3s ease;
  }
  
  .cta span {
	position: relative;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--background-color);
  }
  
  .cta svg {
	position: relative;
	top: 0;
	margin-left: 10px;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke: var(--background-color);
	stroke-width: 2;
	transform: translateX(-5px);
	transition: all 0.3s ease;
  }
  
  .cta:hover:before {
	width: 100%;
	background: var(--blue-color);
  }
  
  .cta:hover svg {
	transform: translateX(0);
  }
  
  .cta:active {
	transform: scale(0.95);
  }

  /*BOTON DOWNLOAD*/
  .btn-download {
	width: 8em;
	height: 2.3em;
	margin: 0.5em;
	background: var(--secundary-color);
	color: white;
	border: none;
	border-radius: 0.625em;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	z-index: 1;
	overflow: hidden;
   }
   
   .btn-download:hover {
	color: var(--secundary-color);
   }
   
   .btn-download:after {
	content: "";
	background: var(--blue-color);
	position: absolute;
	z-index: -1;
	left: -20%;
	right: -20%;
	top: 0;
	bottom: 0;
	transform: skewX(-45deg) scale(0, 1);
	transition: all 0.5s;
   }
   
   .btn-download:hover:after {
	transform: skewX(-45deg) scale(1, 1);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
   }

   /*GARANTIA*/
   .image-garantia {
    display: flex;
    flex-direction: column; /* Para apilar la imagen y el texto verticalmente */
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px; /* Puedes ajustar el tamaño máximo según sea necesario */
    margin: 0 auto; /* Centra el contenedor horizontalmente */
    overflow: hidden; /* Para evitar el desbordamiento de la imagen */
	opacity: 0; /* Inicialmente oculto */
    transform: scale(0.5); /* Inicialmente más pequeño */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Suaviza la animación */

}
.image-garantia.visible {
	opacity: 1; /* Aparece gradualmente */
    transform: scale(1); /* Vuelve a su tamaño original */
}

.image-garantia img {
	width: 75%; /* La imagen ocupa el 100% del ancho del contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    display: block; /* Elimina el espacio debajo de la imagen */
}

.service-text {
    margin-top: 10px; /* Espacio entre la imagen y el texto */
    text-align: center; /* Centra el texto */
    font-size: 16px; /* Puedes ajustar el tamaño de la fuente */
    color: var(--secundary-color); /* Color del texto; ajusta según tu diseño */
	font-weight: 500;
}


/* Estilo de la barra de desplazamiento */
::-webkit-scrollbar {
    width: 7px; /* Ancho de la barra de desplazamiento vertical */
    height: 7px; /* Alto de la barra de desplazamiento horizontal */
}

/* Estilo del fondo de la barra de desplazamiento */
::-webkit-scrollbar-track {
    background: var(--secundary-color); /* Color del fondo de la barra de desplazamiento */
    border-radius: 10px; /* Esquinas redondeadas */
}

/* Estilo del "pulgar" de la barra de desplazamiento */
::-webkit-scrollbar-thumb {
    background: var(--blue-color); /* Color del pulgar */
    border-radius: 10px; /* Esquinas redondeadas */
}

/* Estilo del pulgar al pasar el mouse por encima */
::-webkit-scrollbar-thumb:hover {
    background: var(--background-color); /* Color del pulgar al pasar el mouse */
}


/*POPUP*/
 /* Estilo del fondo del popup */
 .popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

/* Estilo del popup */
.popup-content {
	position: relative;
	background: var(--background-color);
	padding: 20px;
	border-radius: 10px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateY(-100px); /* Posición inicial fuera de pantalla */
	animation: slideDown 1s ease-out forwards; /* Animación */
}

/* Estilo de la imagen */
.popup-content img {
	width: 500%;
	height: auto;
	border-radius: 10px;
}

/* Botón de cierre */
.cerrar-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: var(--secundary-color);
}

.cerrar-btn:hover {
	color: red;
}

 /* Animación de caída */
 @keyframes slideDown {
	0% {
		opacity: 0;
		transform: translateY(-100px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Estilo para hacer que el popup sea responsive */
@media (max-width: 768px) {
	.popup-content {
		padding: 15px;
	}
}



