@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap');

/** Clientes**/
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/** Clientes**/

* {
  font-family: "Asap", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #efefef;
}

body {
  font-size: 16px;
}

/** Barra superior ***/

header {
  background-color: #FAC510; /* Color de fondo de la barra de navegación */
  padding: 10px 0;
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.34);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.textosuperior {
  font-size: 28px;
  width: 75%;
  text-align: center;
  color: #4b3a08;
  font-weight: bolder;
}
.redessociales {
  width: 25%;
  text-align: center;
  color: #4b3a08;
}

.burger {
  display: none; /* Ocultar el icono de hamburguesa en pantallas grandes */
}

@media screen and (max-width: 768px) {
 .burger {
    display: block; /* Mostrar el icono de hamburguesa en pantallas pequeñas */
    cursor: pointer;
    width: 20%;
  }
  .textosuperior {
    width: 60%;
  }
  .redessociales {
    width: 20%;
  }
}

/* Estilos para el icono de hamburguesa */
.burger .line1,
.burger .line2,
.burger .line3 {
  width: 25px;
  height: 3px;
  background-color: #efefef;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Animación para transformar el icono en una X al hacer clic */
.change .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.change .line2 {
  opacity: 0;
}

.change .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/** Barra superior ***/

/** Menu lateral ***/

.pagina {
  display: block;
  background-color: #efefef;
  width: 100%;
  transform: translateX(0);
  transition: transform 0.3s;
}

.menulateral {
  position: fixed;
  height: 100vh;
  width: 250px;
  background-color: #efefef; /* Color de fondo de la barra lateral */
  transform: translateX(-250px);
  transition: transform 0.3s;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.34);  Sombra */
}

.menulateral-show {
  transform: translateX(0);
  transition: transform 0.3s;
}

.pagina-margen {
  transform: translateX(252px);
  transition: transform 0.3s;
}

@media screen and (min-width: 768px) {
  .menulateral {
    transform: translateX(0);
    transition: transform 0.3s;
  }
  .pagina {
    transform: translateX(252px);
    transition: transform 0.3s;
    width: calc(100% - 252px);
  }
}

.logolateral {
  background-color: #efefef; /* Color de fondo del logotipo */
  color: #fff;
  font-size: 24px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-top: 1px;
  padding: 15px 20px;
  background-color: #688dad;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.34);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sidebar-menu li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.sidebar-menu li a i {
  margin-right: 10px;
}

.cotenidoprincipal {
  width: 100%;
  background-color: #efefef;
  padding: 4%;
  background-image: url("../images/imagenagua.png");
}



.sideform {
  list-style: none;
  padding: 15px 0;
  margin: 4px 0 0 0;
  background-color: #FAC510;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.34);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sideform li {
  padding: 5px 20px;
}

.sideform li .titleform {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.sideform li .field {
  display:flex;
  flex-direction:row;
  -moz-box-shadow:    0px 0px 2px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
  box-shadow:         0px 0px 2px 0px rgba(0,0,0,0.2);
}

.sideform li .field>input[type=text], .sideform li .field>button {
  display:block;
}

.sideform li .field>input[type=text] {
  width: 100%;
  flex:1;
  padding:0.5em;
  border:0.2em solid #688dad;
  border-left: none;
  border-top: none;
}

.sideform li .field>button {
  padding:0.5em 0.6em;
  background-color: #688dad;
  color: #fff;
  border:none;
  cursor: pointer;
}


/** Menu lateral ***/


.cotenidoprincipal h1 {
  color: #4b3a08;
  font-size: 30px;
  padding: 20px 0px 40px 0px;
}

.cotenidoprincipal h2 {
  color: #4b3a08;
  font-size: 26px;
  padding: 20px 0px 20px 0px;
}

.cotenidoprincipal p {
  text-align: justify;
  color: #4b3a08;
  padding: 0px 0px 40px 0px;
  font-size: 18px;
}


.cotenidoprincipal p a {
  color: #2e2300;
}


.redessociales a {
  display: inline-block;
  margin: 0 5px;
}

.redessociales img {
  width: 20px; /* Ajusta el tamaño de acuerdo a tus necesidades */
  height: 20px; /* Ajusta el tamaño de acuerdo a tus necesidades */
}




/** Clientes**/
button {
  border: none;
  cursor: pointer;
}

.container_cl{
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}

.card-slider-main {
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  margin-top: 10px;
  gap: 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.card-slider-main::-webkit-scrollbar,
.card-slider::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.label-container {
  display: flex;
  align-items: center;
}

.label-container h2 {
  color: #4b3a08;
  font-family: "Asap", sans-serif;
  margin-right: auto;
  font-weight: 600;
}

.label-container i {
  font-size: 18px;
}

.label-container button {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  color: #4b3a08;
  cursor: pointer;
  padding: 10px;
  width: fit-content;
  margin-left: 5px;
}

.label-container button:disabled {
  background-color: whitesmoke;
  cursor: not-allowed;
  border: none;
}

.card-wrapper {
  transition: transform 0.3s ease-in-out;
  font-family: "Asap", sans-serif;
  background: transparent;
  width: 18vw;
}

.card-wrapper:hover {
  cursor: pointer;
  transform: scale(0.95);
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  height: 200px;
  width: 160px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  image-rendering: pixelated;
}

.image-container::after {
    content: "";
    position: absolute;
    top: 80%;
    left: 0;
    right: 0;
    border: none;
    border-radius: 0 0 20px 20px;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1)100%);
}

.card-wrapper-name {
  font-weight: bold;
  font-size: 18px;
  margin: 0;
  color: #4b3a08;
}

.info-container p {
  font-size: 14px;
  color: #4b3a08;
  padding: 0;
}

@keyframes scroll-images {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-calc(100% + 10px));
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {

  .container_cl {
      max-width: 350px;
      margin: auto;
      padding: 10px;
    }
    
    /* Card Slider */
    
    .label-container h2 {
      color: #111;
      font-family: Poppins, serif;
      margin-right: auto;
      font-size: 18px;
      font-weight: bold;
    }
    
    .label-container i {
      font-size: 14px;
    }
    
    /* Card Slider */
    
    /* Restaurant Card */
    .card-wrapper {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      height: fit-content;
      gap: 10px;
      margin-top: 10px;
    }
    
     .image-container img {
      width: 180px;
      height: 140px;
      display: block;
      border-radius: 20px;
      object-fit: cover;
      image-rendering: pixelated;
    }
    
    .image-container::after {
      content: "";
      position: absolute;
      top: 80%;
      left: 0;
      right: 0;
      border: none;
      border-radius: 0 0 20px 20px;
      bottom: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.8) 100%
      );
    }
    
    .card-wrapper-name {
      font-weight: bold;
      font-size: 16px;
      margin: 0;
    }
    
        
   .info-container p{
      font-size: 10px;
    }

    /* Restaurant Card */
}


@media (min-width: 576px) {
.container_cl {
  max-width: 540px;
}
}

@media (min-width: 768px) {
.container_cl {
  max-width: 720px;
}
}

@media (min-width: 992px) {
.container_cl {
  max-width: 960px;
}
}

@media (min-width: 1200px) {
.container_cl {
  max-width: 1140px;
}
}

@media (min-width: 1400px) {
.container_cl {
  max-width: 1320px;
}
}

/** Clientes**/


.section-hide {
  display: none;
}

.section-show {
  display: block;
}

/*************Gallery******************/

.gallery-icso 
{
  column-count: 4;
  --webkit-column-count: 4;
  --moz-column-count: 4;
  gap: 1rem;
  padding: 1rem;
}

.videos-icso {
  column-count: 4;
  --webkit-column-count: 4;
  --moz-column-count: 4;
  gap: 1rem;
  padding: 1rem;
}

.image-icso {
  padding: 5px;
  background-color: transparent;
  transition: all 200ms ease;
  &:hover {
    background-color: #20A4F3;
  }
}

.video-icso {
  padding: 5px;
  background-color: transparent;
  transition: all 200ms ease;
  &:hover {
    background-color: #20A4F3;
  }
}

.image-icso img {
  height: auto;
  width: 100%;
  cursor: zoom-in;
}

.video-icso video {
  height: auto;
  width: 100%;
  cursor: zoom-in;
}

.img-panel__selct {
  background-color: #20A4F3;
  
}
.display-box {
  padding: 1em;
  max-width: 1000px;
  min-width: 300px;
  margin: 1em auto;
  display: grid;
  grid-gap: 1em;
  grid-template-columns: repeat(auto-fill, 210px);
  grid-auto-flow: row;
  justify-content: center;
  
}
.img-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  transition: all 200ms ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-wrapper__initial {
  background-color: rgba(0,0,0,.7);
}
.image__selected {
  max-width: 70vw;
  max-height: 80vh;
  display: block;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  position: relative;
  border: transparent solid 4px;
  border-radius: 5px;
}
.img-selected-initial {
  border: white solid 4px;
}
.img-close {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 1.5em;
  left: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 200ms ease-in-out;
  cursor: pointer;
  border-radius: 5px;
  &:hover {
    background-color: #CA3B4E;
  }
  &:before {
    content: " ";
    height: 40px;
    width: 5px;
    background-color: white;
    transform: rotate(45deg);
    position: absolute;
    cursor: pointer;
  }
  &:after {
    content: " ";
    height: 40px;
    width: 5px;
    transform: rotate(135deg);
    position: absolute;
    z-index: 100;
    background-color: white;
    cursor: pointer;
  }
}

.add-img-fieldset {
  padding: 1em;
}
.file-input {
  visibility: hidden;
}
.file-input-label {
  padding: 10px 15px;
  background-color: #255F85;
  border-radius: 3px;
  font-family: sans-serif;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  &:hover {
    background-color: #4C7C9B;
  }
}

/* Responsive-ness for different screen-sizes */
@media screen and (max-width: 810px) {
  .gallery-icso {
    column-count: 3;
    --webkit-column-count: 3;
    --moz-column-count: 3;
  }
  
  .videos-icso {
    column-count: 3;
    --webkit-column-count: 3;
    --moz-column-count: 3;
  }
}

@media screen and (max-width: 500px) {
  .gallery-icso {
    column-count: 2;
    --webkit-column-count: 2;
    --moz-column-count: 2;
  }
  
  .videos-icso {
    column-count: 2;
    --webkit-column-count: 2;
    --moz-column-count: 2;
  }
}

@media screen and (max-width: 400px) {
  .gallery-icso {
    column-count: 1;
    --webkit-column-count: 1;
    --moz-column-count: 1;
  } 
  
  .videos-icso {
    column-count: 1;
    --webkit-column-count: 1;
    --moz-column-count: 1;
  }
}


.image-source-link {
	color: #98C3D1;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
  backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	/* ideally, transition speed should match zoom duration */
	-webkit-transition: all 0.3s ease-out; 
	-moz-transition: all 0.3s ease-out; 
	-o-transition: all 0.3s ease-out; 
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
		opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
		opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}

/*************Gallery******************/




/******clientes*******/

.label-container h2 {
  color: #4b3a08;
  font-size: 30px;
  padding: 20px 0px 40px 0px;
}

.content {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
}

.content .card {
  width: 100%;
  margin: 10px 0px;
  padding: 10px 15px;
  background-color: #ffffff;
}

.content .card:hover {
  transform: scale(1.13);
  background-color: #efefef;
  border: 2px solid #4b3a08;
  border-radius: 5px;
}

.content .card a {
  text-decoration:none;
}

.content .card a img {
  width: 100%;
  aspect-ratio: 1.45;
  border-radius: 10%;
}
.content .card a h1 {
  margin-top: 10px;
  margin-left: 10px;
  font-size: 20px;
  color: #4b3a08;
}

.content .card a p {
  font-size: 15px;
  color: #4b3a08;
  line-height: 1.5;
  padding: 10px;
  text-align:left;
}

@media only screen and (min-width: 448px) and (max-width:500px)
{
    .content .card {
        width: 100%;
    }

}

@media only screen and (min-width: 500px) and (max-width:768px)
{
    .content .card {
        width: 33%;
    }

}

@media only screen and (min-width: 768px) and (max-width:1024px)
{
    .content .card {
        width: 25%;
    }
}

@media only screen and (min-width: 1024px)
{
    .content .card {
        width: 20%;
    }
}
/******clientes*******/


/******contacto*******/
.contact-main {
padding: 0 5%;
}

.contact-card {
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-card-header {
  background-color: #ffffff;
  color: #333;
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid #ccc;
}

.contact-card-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.contact-card-body {
  padding: 20px;
  padding-bottom: 0;
}

.contact-card-body form {
  display: flex;
  flex-direction: column;
}

.contact-card-body label {
  margin-bottom: 8px;
}

.contact-card-body input {
  padding: 8px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-card-body textarea {
  padding: 8px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-card-body .map {
  margin-top:30px;
  margin-bottom:30px;
  width: 100%;
  height: auto;
}

.contact-card-footer {
  text-align: left;
  padding: 15px;
}

.contact-card-footer button {
  padding: 10px 20px;
  background-color: #688dad;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-card-footer button:hover {
  background-color: #143653;
}
/*************/
@media (max-width: 600px) {
  .contact-card {
    width: 90%;
  }
}
/******contacto*******/


/******Servicios*******/


.gradient-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 30px;
  @media screen and (max-width: 991px) {
    grid-template-columns: 1fr;
  }
}

.container-title {
  text-align: center;
  padding: 0 !important;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 60px;
}

.card-services {
  border: 0;
  width: 100%;
  /**margin-inline: auto;**/
  color: #4b3a08;
}

.card-services:hover {
  transform: scale(1.03);
  .container-card {
    background-color: #c9c9c9;
    border-left: 22px solid #4b3a08;
  }
}

.container-card {
  position: relative;
  border: 2px solid transparent;
  background-color: #efefef;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.34);
  border-radius: 24px;
  padding: 18px 18px 0 18px;
  border-left: 22px solid #FAC510;
  img {
    margin-bottom: 32px;
  }
}

.container-card svg {
  display: none;
}

.bg-green-box,
.bg-white-box,
.bg-yellow-box,
.bg-blue-box {
  position: relative;
}

.bg-green-box::after,
.bg-white-box::after,
.bg-yellow-box::after,
.bg-blue-box::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  content: "";
  z-index: -1;
  border-radius: 45px;
}

.bg-green-box::after {
  background: linear-gradient(71deg, #0d1212, #3da077, #0d1212);
}

.bg-white-box::after {
  background: linear-gradient(71deg, #121013, #b0afb0, #121013);
}

.bg-yellow-box::after {
  background: linear-gradient(71deg, #110e0e, #afa220, #110e0e);
}

.bg-blue-box::after {
  background: linear-gradient(71deg, #0c0a0e, #5f6fad, #0c0a0e);
}

.card-title {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-style: normal;
  font-size: 16px;
  padding-bottom: 8px;
  /**min-height: 125px;**/
  text-overflow: clip;

}

.card-hover {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-style: normal;
  font-size: 24px;
  padding-bottom: 8px;
  display: none;
}

.contenidoservicios {
  background-image: url("../images/imagenagua.png");
}

.contenidoservicios h1 {
  color: #4b3a08;
  font-size: 30px;
  padding: 20px 4% 40px 4%;
  width: 100%;
  background-color: transparent;
}

@media only screen and (min-width: 448px) and (max-width:768px)
{
  .container-card svg {
    display: none;
  }
  .card-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width:932px)
{
  .container-card svg {
    display: inherit;
  }
  .card-title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 932px) and (max-width:1024px)
{
  .container-card svg {
    display: inherit;
  }
  .card-title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 1024px)
{
  .container-card svg {
    display: inherit;
  }
  .card-title {
    font-size: 24px;
  }
}

/******Servicios*******/

/******footer*******/
.section {
  width: 100%;
  justify-content: center;
  align-items: center;
}

#picassoFooter {
  background-color: #534103;
  color: #ffffff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  font-family: 'Arial', sans-serif;
}

.footer-navigation, .footer-contact, .footer-social {
  margin: 10px;
}

.footer-navigation h3, .footer-contact h3, .footer-social h3 {
  color: #f0f0f0;
  margin-bottom: 15px;
}

.footer-navigation ul, .footer-social .social-icons {
  list-style: none;
  padding: 0;
}

.footer-navigation ul li, .social-icon {
  margin-bottom: 10px;
  transition: transform 0.2s ease-in-out;
}

.footer-navigation ul li a, .social-icon {
  color: #ffffff;
  text-decoration: none;
}

.social-icon {
  display: inline-block;
  padding: 8px;
  background-color: #9b7701;
  margin-right: 5px;
}

.social-icon:hover, .footer-navigation ul li a:hover {
  transform: scale(1.1);
}

.footer-art canvas {
  max-width: 100px;
  height: auto;
  margin-top: 20px;
}

@media (max-width: 600px) {
  #picassoFooter {
      flex-direction: column;
      align-items: center;
  }

  .footer-art canvas {
      max-width: 100%;
  }
}

/******footer*******/