.elementor-kit-6{--e-global-color-primary:#004684;--e-global-color-secondary:#000000;--e-global-color-text:#D6D6D6;--e-global-color-accent:#FFFFFF;--e-global-typography-primary-font-family:"Lato";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Lato";--e-global-typography-secondary-font-weight:900;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.tarjeta-producto {
  position: relative;
  padding: 20px;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* Overlay azul */
.tarjeta-producto::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 40, 80, 0.6); /* azul oscuro translúcido */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

/* Mostrar overlay en hover */
.tarjeta-producto:hover::before {
  opacity: 1;
}

/* Contenido (texto, botón) visible sobre el overlay */
.tarjeta-producto * {
  position: relative;
  z-index: 2;
}

/* Texto oculto al inicio */
.texto-hover {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}

/* Aparece con transición en hover */
.tarjeta-producto:hover .texto-hover {
  opacity: 1;
  transform: translateY(0);
}
.tarjeta-producto * {
  font-style: normal;
}/* End custom CSS */