.elementor-kit-6{--e-global-color-primary:#A4A58B;--e-global-color-secondary:#768E7F;--e-global-color-text:#000000;--e-global-color-accent:#488F51;--e-global-typography-primary-font-family:"Outfit";--e-global-typography-primary-font-size:20px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Quicksand";--e-global-typography-secondary-font-size:16px;--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Quicksand";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Oswald";--e-global-typography-accent-font-weight:500;background-color:#FFFFFF;color:var( --e-global-color-text );font-family:"Outfit", Sans-serif;font-size:20px;font-weight:400;overscroll-behavior:none;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{font-family:"Outfit", Sans-serif;font-weight:500;}.elementor-kit-6 h1{font-family:"Outfit", Sans-serif;font-size:24px;font-weight:600;}.elementor-kit-6 h2{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-size:var( --e-global-typography-secondary-font-size );font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-kit-6 img{opacity:1;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:100%;}.e-con{--container-max-width:100%;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){margin-block-end:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-kit-6 h2{font-size:var( --e-global-typography-secondary-font-size );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6 h2{font-size:var( --e-global-typography-secondary-font-size );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Contenedor principal de las tarjetas */
.servicios-container {
  display: flex;                /* Usamos Flexbox para alinearlas en una fila */
  justify-content: space-between; /* Espacio entre las tarjetas */
  margin: 0 auto;               /* Centra el contenedor */
  width: 100%;          /* Ajusta el ancho máximo */
  flex-wrap: nowrap;            /* Asegura que las tarjetas no se acomoden en varias filas */
}

/* Contenedor de cada tarjeta */
.servicio {
  flex: 1 1 30%;                /* Cada tarjeta ocupa un 30% del ancho del contenedor, con flexibilidad */
  padding: 10px;
  margin: 0 10px;               /* Espaciado entre las tarjetas */
  border: 2px solid #ddd;
  border-radius: 10px;
  background-color: #768e7f;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;      /* Incluye padding dentro del ancho total */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  
}

/* Efecto hover en la tarjeta */
.servicio:hover {
  transform: translateY(-10px);  /* Sube la tarjeta al hacer hover */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Cambia la sombra */
}

/* Estilo de los títulos */
.titulo-servicio {
  font-family: 'Outfit', Sans-Serif;
  font-size: 30px;
  color: #ffffff;
  height: 50px;
  align-content: center;
  font-weight: bold;
  cursor: pointer;
  margin: 50px;
  transition: opacity 0.3s ease; 
}

/* Descripción que aparece al hacer hover */
.descripcion-servicio {
  display: none;
  font-family: 'Quicksand', Sans-Serif;
  font-size: 20px;
  color: #a4a58b;
  padding: 0px;
  border-radius: 5px;
  background-color: #f9f9f9;
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Mostrar descripción y ocultar título al hacer hover */
.servicio:hover .titulo-servicio {
  opacity: 0;
}

.servicio:hover .descripcion-servicio {
  display: block;
  opacity: 1;
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 760px) {
  .servicios-container {
    flex-direction: column; /* En pantallas pequeñas, las tarjetas se apilan en columna */
  }

  .servicio {
    width: 100%; /* Las tarjetas ocupan todo el ancho */
    margin-bottom: 15px; /* Espacio entre tarjetas */
  }
}/* End custom CSS */