@charset "UTF-8";
/* Montserrat Font Variants - Optimized */
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Satoshi/Montserrat-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Satoshi/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Satoshi/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Satoshi/Montserrat-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Satoshi/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Satoshi/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Satoshi/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Satoshi/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Satoshi/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
:root {
  --bg-color-green: #2BD6BA;
  --bg-color-blue: #4988DE;
  --bg-color-blueblack: #242F40;
  --bg-color-white: #fff;
  --bg-color-gradient-green-blue: linear-gradient(180deg, #2BD6BA 0%, #4988DE 100%);
  --bg-color-gradient-blueblack-blue: linear-gradient(180deg, #000 0%, #4988DE 100%);
  --bg-color-gradient-blueblack-green: linear-gradient(180deg, #242F40 0%, #2BD6BA 100%);
  --header-height: 100px;
}
@media (max-width: 1050px) {
  :root {
    --header-height: 68px;
  }
}

*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

li {
  list-style: none;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.color-white {
  color: white;
}

.shadow {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.3);
}
.shadow-1 {
  box-shadow: 0px 4.492px 4.492px 0px rgba(0, 0, 0, 0.1);
}

.w-100 {
  width: 100%;
}
.w-full {
  width: 100vw;
}
.wh-100 {
  width: 100%;
  height: 100%;
}
.wh-full {
  width: 100vw;
  height: calc(100vh - 140px);
}

.h-100 {
  height: 100%;
}
.h-full {
  height: calc(100vh - 140px);
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}

.flex {
  display: flex;
}
.flex.col {
  flex-direction: column;
}
.flex.row {
  flex-direction: row;
}
.flex.around {
  justify-content: space-around;
}
.flex.between {
  justify-content: space-between;
}
.flex.evenly {
  justify-content: space-evenly;
}
.flex-1 {
  flex: 1;
}
.flex.wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.gap {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-5 {
  gap: 5rem;
}

.center {
  justify-content: center;
  align-items: center;
}
.center-x {
  justify-content: center;
}
.center-y {
  align-items: center;
}

.start {
  justify-content: flex-start;
  align-items: flex-start;
}
.start-x {
  justify-content: flex-start;
}
.start-y {
  align-items: flex-start;
}

.end {
  justify-content: flex-end;
  align-items: flex-end;
}
.end-x {
  justify-content: flex-end;
}
.end-y {
  align-items: flex-end;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.3;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
#overlay.active {
  opacity: 0.3;
}

.hidden {
  display: none;
}

.contenedor {
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 10px 13px;
  background: #fff;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
  z-index: 5;
}
header .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  width: 100%;
}
header .top .left {
  width: 60%;
  height: 57px;
}
header .top .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .bottom {
  padding-top: 17px;
  border-top: 1.1px solid #767575;
}
header .bottom .contenedor nav {
  width: 100%;
}
header .bottom .contenedor nav ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .bottom .contenedor nav ul li a {
  color: #4f4f46;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-style: normal;
  line-height: 25px;
  transition: all 0.3s ease;
  position: relative;
}
header .bottom .contenedor nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  bottom: 0;
  height: 2px;
  background: #053f63;
  margin-left: 0;
  transition: all 0.3s ease;
}
header .bottom .contenedor nav ul li a:hover {
  color: #053f63;
}
header .bottom .contenedor nav ul li a:hover::after {
  width: 100%;
}

#menu-item-189 {
  position: initial;
}

/* Submenú oculto inicialmente */
#menu-item-189 > .sub-menu {
  display: none;
  position: absolute;
  top: 100%; /* Justo debajo del enlace padre */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 65px 40px; /* 👈 Simula espacio arriba sin cortar el hover */
  margin-top: 10px;
  list-style: none;
  z-index: 999;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
  max-width: -moz-max-content;
  max-width: max-content;
  flex-direction: column-reverse;
  gap: 15px;
  align-items: flex-start;
}

/* Mostrar el submenú al hacer hover */
#menu-item-189:hover > .sub-menu {
  display: flex;
}

/* Estilos de los items */
#menu-item-189 .sub-menu li {
  white-space: nowrap;
}

#menu-item-189 .sub-menu li a {
  display: block;
  text-decoration: none;
  color: #053F63;
  font-weight: 400;
  font-size: 20px;
  transition: all 0.2s ease;
  text-align: start;
}

#menu-item-189 .sub-menu li a:hover {
  font-weight: 500;
}

#menu-item-328 > .sub-menu {
  display: none;
}

/* Submenu oculto por defecto */
#custom-product-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 50px;
  min-width: 800px;
  display: none;
  gap: 40px;
  flex-direction: row;
  z-index: 9999;
  width: 100%;
}

/* Categorías columna izquierda */
.submenu-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-right: 2px solid #6b6b6b;
  padding-right: 42px;
  min-width: 225px;
  width: 180px;
}

.submenu-category {
  padding: 0 10px;
  cursor: pointer;
  color: #053F63;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.submenu-category:hover,
.submenu-category.active {
  color: #1180B7;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Productos a la derecha */
.submenu-products {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 20px;
  align-items: center;
  justify-content: space-between;
}

.products-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 19px;
  flex-wrap: wrap; /* Permite que los elementos se acomoden en varias filas si es necesario */
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 244px;
  height: 220px;
  text-decoration: none;
  cursor: pointer;
  gap: 10px;
  transition: transform 0.3s ease;
}

.product-item:first-child {
  padding-left: 30px; /* Aumenta el espacio del primer elemento */
}

.product-item img {
  max-height: 100%; /* Nunca serás más alta que la caja */
  max-width: 100%; /* Nunca serás más ancha que la caja */
  width: auto; /* Mantén tu proporción natural */
  height: auto; /* Mantén tu proporción natural */
  -o-object-fit: contain;
     object-fit: contain; /* Asegura que se vea completa */
  margin: 0 !important;
}

.product-item:hover img {
  transform: scale(1.05);
}

.product-item span {
  display: block;
  color: #6F6F6E;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}

/* Medios de comunicación para pantallas más pequeñas */
@media screen and (max-width: 1024px) {
  .products-group {
    justify-content: center;
    gap: 10px;
  }
  .product-item {
    max-width: 200px;
    height: auto;
  }
  .product-item:first-child {
    padding-left: 15px; /* Reduce el espacio para pantallas medianas */
  }
}
@media screen and (max-width: 768px) {
  .submenu-products {
    padding-left: 10px;
    gap: 19px;
  }
  .products-group {
    flex-direction: column; /* Cambia la dirección a columna */
    align-items: center; /* Centra los elementos */
  }
  .product-item {
    max-width: 100%; /* Las imágenes y textos ocupan todo el ancho */
    margin-bottom: 20px; /* Aumenta el espacio entre los productos */
  }
  .product-item:first-child {
    padding-left: 0; /* Elimina el padding del primer producto */
  }
  .product-item span {
    font-size: 18px; /* Reduce el tamaño de la fuente */
  }
}
@media screen and (max-width: 480px) {
  .submenu-products {
    padding-left: 5px;
    gap: 10px;
  }
  .products-group {
    flex-direction: column;
    gap: 10px;
  }
  .product-item {
    max-width: 90%; /* Ocupa más espacio disponible */
    margin-bottom: 15px;
  }
  .product-item img {
    max-width: 90%; /* Ajusta el tamaño de la imagen en pantallas pequeñas */
  }
  .product-item span {
    font-size: 16px; /* Reduce aún más el tamaño del texto */
  }
}
@media screen and (min-width: 1200px) {
  .submenu-products {
    padding-left: 40px; /* Más espacio a la izquierda para pantallas grandes */
    gap: 30px; /* Aumenta el espacio entre los elementos */
  }
  .products-group {
    gap: 20px;
  }
  .product-item {
    max-width: 300px; /* Aumenta el tamaño máximo de cada producto */
    height: auto;
  }
  .product-item img {
    max-width: 90%; /* Aumenta el tamaño de la imagen */
  }
  .product-item span {
    font-size: 22px; /* Aumenta el tamaño del texto */
  }
}
.content-submenus {
  display: flex;
  margin: 0 auto;
  min-width: 80%;
  width: 100%;
}

.btn-solicitar {
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  background: #1180B7;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  width: 100%;
  margin-top: 20px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .btn-solicitar {
    padding: 12px 16px;
    font-size: 16px;
    line-height: 22px;
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .btn-solicitar {
    padding: 10px 14px;
    font-size: 15px;
    line-height: 20px;
    gap: 6px;
    border-radius: 8px;
  }
}

.btn-solicitar:hover {
  background: #0d6291;
}

.search-form {
  position: relative;
  max-width: 550px;
  margin: 0 0 0 auto;
}

.search-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #6F6F6E;
  border-radius: 3px;
  background-color: #D9D9D9;
  font-size: 16px;
  box-sizing: border-box;
}

.search-submit {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.search-submit svg {
  display: block;
}

.ul_menu .sub-menu {
  display: none;
  padding-left: 15px; /* opcional, para sangría */
}

.ul_menu .menu-item-has-children.open > .sub-menu {
  display: flex;
}

.ul_menu .menu-item-has-children > a::after {
  content: "";
  background-image: url("data:image/svg+xml;utf8,<svg width='9' height='6' viewBox='0 0 9 6' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4.48711 3.11316C4.83748 2.74833 5.13065 2.44072 5.43097 2.14027C5.96726 1.60375 6.50354 1.06723 7.03983 0.530714C7.51176 0.0657307 8.21966 0.0657307 8.67014 0.530714C9.11347 0.98139 9.11347 1.67529 8.64869 2.14027C7.55466 3.24192 6.46064 4.33642 5.35947 5.43092C4.83748 5.95314 4.17249 5.95313 3.65766 5.43808C2.55648 4.34358 1.45531 3.24908 0.361287 2.14742C-0.110644 1.67529 -0.117794 0.974236 0.325535 0.516406C0.776015 0.0585762 1.49821 0.0585758 1.97729 0.54502C2.7996 1.38199 3.61475 2.22611 4.48711 3.11316Z' fill='%23053F63'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 9px;
  height: 8px;
  margin-left: 20px;
}

/* Íconos ocultos en desktop */
.mobile-search-toggle,
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Estilos del formulario */
.search-container {
  flex-grow: 1;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-field {
  flex-grow: 1;
  padding: 8px;
  font-size: 1rem;
}

.search-submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-search-close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* Responsive: en móvil */
@media screen and (max-width: 1024px) {
  .search-container {
    display: none; /* Oculto por defecto en móvil */
    position: relative;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 20px;
    z-index: 1000;
  }
  .search-container.active {
    display: block;
  }
  .mobile-search-toggle,
  .hamburger-btn {
    display: block;
  }
  .bottom {
    display: none;
  }
  .right.mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
  }
  .search-container.active .mobile-search-close {
    display: block;
  }
}
.mobile-menu-close {
  display: flex;
}

.menu-header-mobile-container {
  margin-top: 50px;
}

#menu-header-mobile {
  gap: 40px;
  display: flex;
  flex-direction: column;
}
#menu-header-mobile li a {
  color: #053F63;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
}

.redes-movil {
  margin-top: auto;
}

.redes-movil h2 {
  color: #053F63;
  text-align: left;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 133.333% */
  margin-bottom: 20px;
}

.redes-movil ul {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.menu-item.open a {
  font-weight: 600 !important;
}

.sub-menu {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sub-menu .menu-item a {
  color: #6F6F6E !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: 18px; /* 100% */
}

.menu-mobile {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff; /* Cambia por el color que desees */
  z-index: 9999;
  overflow-y: auto;
  transition: top 0.4s ease-in-out;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
}

.menu-mobile.active {
  top: 0;
}

/* Asegúrate de que este menú solo se vea en móvil */
@media screen and (min-width: 1024px) {
  .menu-mobile {
    display: none;
  }
}
.producto-card.con-detalles {
  max-width: 500px;
}

.section-banner {
  width: 100%;
  height: 28vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.section-banner .contenedor {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-banner .contenedor h1 {
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 900;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.section-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: #b3b3b3;
  z-index: -1;
}

.section-banner2 {
  width: 100%;
  height: 70vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.section-banner2 .contenedor {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-banner2 .contenedor h1 {
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 900;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.section-banner2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: #b3b3b3;
  z-index: -1;
}

footer {
  overflow: hidden;
  position: relative;
  background: #053f63;
  padding-block: 130px 50px;
  z-index: 1;
}
footer .contenedor {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
footer .contenedor .left {
  min-width: 220px;
  height: 59.51px;
}
footer .contenedor .left img {
  width: 100%;
  height: 100%;
}
footer .contenedor .right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(20px, 5vw, 100px);
  width: 100%;
}
footer .contenedor .right nav ul li a {
  color: #fff;
  font-weight: 200;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
footer .contenedor .right .directions ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .contenedor .right .directions ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
footer .contenedor .right .directions ul li svg {
  width: 35px;
  height: 35px;
}
footer .contenedor .right .directions ul li p {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .contenedor .right .listado-redes-sociales {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .contenedor .right .listado-redes-sociales p {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
footer .contenedor .right .listado-redes-sociales ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
}
footer .contenedor .marca-invitro {
  display: none;
}
footer::after {
  content: "";
  position: absolute;
  left: -2rem;
  bottom: -1rem;
  width: 444px;
  height: 354px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.ul_menu_footer {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 144px;
}

.ul_menu_footer li {
  border-bottom: #fff 1px solid;
  padding-bottom: 12px;
}
.ul_menu_footer li a {
  text-decoration: none;
  color: #fff;
  font-weight: 200;
  font-size: 20px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}

.svg-hover {
  margin-left: 10px;
}

@media (max-width: 1200px) {
  footer {
    padding-block: 60px;
  }
  footer .contenedor {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .contenedor .left {
    min-width: 150px;
    height: auto;
  }
  footer .contenedor .left img {
    height: auto;
  }
  footer .contenedor .right {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  footer .contenedor .right nav ul {
    flex-direction: column;
    gap: 20px;
  }
  footer .contenedor .right nav ul li a {
    font-size: 16px;
  }
  footer .contenedor .right .directions ul {
    align-items: center;
  }
  footer .contenedor .right .directions ul li {
    justify-content: center;
    text-align: center;
  }
  footer .contenedor .right .directions ul li svg {
    width: 25px;
    height: 25px;
  }
  footer .contenedor .right .directions ul li p {
    font-size: 15px;
  }
  footer .contenedor .right .listado-redes-sociales {
    align-items: center;
  }
  footer .contenedor .right .listado-redes-sociales p {
    font-size: 15px;
  }
  footer .contenedor .right .listado-redes-sociales ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .contenedor .right .listado-redes-sociales div a img {
    width: 230px;
  }
  footer .contenedor .marca-invitro {
    display: block;
    margin-top: 40px;
  }
  footer .contenedor .marca-invitro img {
    width: 150px;
    height: auto;
  }
  footer::after {
    width: 300px;
    height: 240px;
    left: -10%;
    bottom: -40px;
    background-image: url("../../images/backgrounds/footer-decorativo-mobile.png");
  }
}
.main-front-page .section-main-banner {
  height: 82vh;
  transform: translateY(-38px);
}
.main-front-page .section-main-banner #main-banner {
  height: 100%;
}
.main-front-page .section-main-banner #main-banner #main-banner-track {
  height: 100%;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide {
  position: relative;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .text p {
  color: #6f6f6e;
  font-weight: 400;
  font-size: 40px;
  font-style: normal;
  line-height: 55px;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .text h2 {
  color: #053f63;
  font-weight: 800;
  font-size: 100px;
  font-style: normal;
  line-height: 100px;
  margin-bottom: 20px;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .text h3 {
  color: #6f6f6e;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .text h4 {
  color: #053f63;
  font-weight: 500;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .text h5 {
  color: #053f63;
  font-weight: 900;
  font-size: 40px;
  font-style: normal;
  line-height: 50px;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor a {
  border-radius: 3px;
  margin-top: 33px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 15px;
  font-weight: 300;
  font-size: 25px;
  font-style: normal;
  line-height: normal;
  background: transparent;
  color: #053f63;
  border: 1px solid #053f63;
  transition: all 0.3s ease;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor a:hover {
  background: #053f63;
  color: white;
  border: 1px solid #053f63;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor a:hover {
  font-weight: 700;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .image {
  position: absolute;
  right: 0;
  top: 0;
  width: 88%;
  height: 100%;
  z-index: -1;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 142px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 91.19%);
  z-index: 0;
}
.main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95deg, #fff 24.7%, rgba(255, 255, 255, 0) 47.9%);
  z-index: -1;
}
.main-front-page .section-juegos-temporada {
  padding-top: 65px;
}
.main-front-page .section-juegos-temporada .contenedor {
  display: flex;
  flex-direction: column;
  gap: 43px;
}
.main-front-page .section-juegos-temporada .contenedor .title h2 {
  color: #053f63;
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  position: relative;
}
.main-front-page .section-juegos-temporada .contenedor .title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 120px;
  height: 2px;
  background-color: #053f63;
  transform: translateX(-50%);
}
.main-front-page .section-juegos-temporada .contenedor #juegos-temporada {
  position: relative;
  overflow: visible;
}
.main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item .imagen {
  position: relative;
  height: 296px;
  width: 100%;
  overflow: hidden;
}
.main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  aspect-ratio: 1/1;
}
.main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item .imagen::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #211e1e 0%, rgba(43, 43, 43, 0.68) 100%);
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item .imagen {
    height: 240px;
  }
  .main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item .imagen img {
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 768px) {
  .main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item .imagen {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item .imagen {
    height: 160px;
  }
}
.main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item .text p {
  color: #053f63;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  font-style: normal;
  line-height: 20px;
}
.main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item .text .nombre {
  color: #6f6f6e;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  font-style: normal;
  line-height: 35px;
}
.main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item:hover .imagen img {
  transform: scale(1.05);
}
.main-front-page .section-juegos-temporada .contenedor .splide__slide .categoria-item:hover .imagen::after {
  opacity: 0.2;
}
.main-front-page .section-juegos-temporada .splide__pagination {
  position: relative;
  bottom: auto;
  margin-top: 30px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-front-page .section-juegos-temporada .splide__pagination__page {
  background: #ccc;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  opacity: 0.6;
  transition: all 0.3s ease;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.main-front-page .section-juegos-temporada .splide__pagination__page.is-active {
  background: #053f63;
  opacity: 1;
}
.main-front-page .section-juegos-temporada .splide__pagination__page:hover {
  opacity: 0.8;
}

/* Media Queries */
@media (max-width: 1024px) {
  .splide__pagination {
    margin-top: 25px;
    padding: 8px 0;
  }
}
@media (max-width: 992px) {
  .splide__slide .categoria-item .imagen {
    height: 240px;
  }
  .splide__slide .categoria-item .imagen img {
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 768px) {
  .splide__slide .categoria-item .imagen {
    height: 200px;
  }
  .splide__pagination {
    margin-top: 20px;
    padding: 5px 0;
  }
}
@media (max-width: 480px) {
  .splide__slide .categoria-item .imagen {
    height: 160px;
  }
  .splide__pagination {
    margin-top: 15px;
    padding: 0;
  }
}
.section-juegos-temporada {
  position: relative;
}
.section-juegos-temporada .splide__arrows {
  position: absolute;
  top: 30%;
  left: 50%;
  width: calc(100% + 160px);
  height: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  transform: translate(-50%, -50%);
  pointer-events: none;
  padding: 0 20px;
}
.section-juegos-temporada .splide__arrow {
  background: white;
  border: 1px solid;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section-juegos-temporada .splide__arrow.splide__arrow--prev, .section-juegos-temporada .splide__arrow.splide__arrow--next {
  transform: none;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}
.section-juegos-temporada .splide__arrow .splide__arrow--prev {
  transform: scale(1);
}
.section-juegos-temporada .splide__arrow svg {
  width: 20px;
  height: auto;
}
.section-juegos-temporada .splide__arrow svg path {
  fill: black;
  transition: fill 0.3s ease;
}
.section-juegos-temporada .splide__arrow:hover {
  background: #0a4e93;
  transform: scale(1.1);
}
.section-juegos-temporada .splide__arrow:hover svg path {
  fill: #fffdfd;
}

.imagenes-carrusel #imagenes-carrusel {
  position: relative;
  padding-bottom: 28px;
}
.imagenes-carrusel #imagenes-carrusel .splide__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  z-index: 5;
}

.imagenes-carrusel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  position: relative;
  /* -------------------------------------- */
  /* 📱 RESPONSIVE DESIGN                   */
  /* -------------------------------------- */
  /* Tablets horizontales / pantallas medianas */
  /* Tablets verticales */
  /* Teléfonos */
}
.imagenes-carrusel .left {
  width: 50%;
  height: 100%;
}
.imagenes-carrusel .right {
  height: 100%;
  width: 50%;
  position: relative;
  z-index: 1;
}
.imagenes-carrusel .right .contenedor {
  max-width: 610px;
  margin: 0;
}
.imagenes-carrusel .right #texto-imagenes-carrusel .splide__slide .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.imagenes-carrusel .right #texto-imagenes-carrusel .splide__slide .text p {
  color: #053f63;
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
}
.imagenes-carrusel .right #texto-imagenes-carrusel .splide__slide .text span {
  color: #6f6f6e;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
}
.imagenes-carrusel .right #texto-imagenes-carrusel .splide__slide .text a {
  border-radius: 3px;
  margin-top: 33px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  background: transparent;
  color: #053f63;
  border: 1px solid #053f63;
  transition: all 0.3s ease;
}
.imagenes-carrusel .right #texto-imagenes-carrusel .splide__slide .text a:hover {
  background: #053f63;
  color: white;
  border: 1px solid #053f63;
}
.imagenes-carrusel .right #texto-imagenes-carrusel .splide__slide .text a:hover {
  font-weight: 700;
}
.imagenes-carrusel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #fff 47.48%, rgba(255, 255, 255, 0.8) 52.42%, rgba(255, 255, 255, 0) 58.21%);
}
@media (max-width: 1024px) {
  .imagenes-carrusel {
    max-height: 600px;
  }
  .imagenes-carrusel .left {
    width: 45%;
  }
  .imagenes-carrusel .right .contenedor {
    max-width: 500px;
  }
  .imagenes-carrusel #texto-imagenes-carrusel .text p {
    font-size: 30px;
    line-height: 40px;
  }
  .imagenes-carrusel #texto-imagenes-carrusel .text span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .imagenes-carrusel {
    flex-direction: column;
    gap: 40px;
    max-height: unset;
    padding: 0 10px;
    /* Ajustar textos */
  }
  .imagenes-carrusel .left,
  .imagenes-carrusel .right {
    width: 100%;
  }
  .imagenes-carrusel .right .contenedor {
    max-width: 100%;
  }
  .imagenes-carrusel #texto-imagenes-carrusel .text p {
    font-size: 28px;
    line-height: 36px;
  }
  .imagenes-carrusel #texto-imagenes-carrusel .text span {
    font-size: 17px;
    line-height: 23px;
  }
  .imagenes-carrusel #texto-imagenes-carrusel .text a {
    font-size: 16px;
    padding: 8px 14px;
  }
  .imagenes-carrusel::after {
    display: none; /* Quitamos el gradiente en móvil */
  }
}
@media (max-width: 480px) {
  .imagenes-carrusel {
    gap: 25px;
  }
  .imagenes-carrusel #texto-imagenes-carrusel .text p {
    font-size: 24px;
    line-height: 32px;
  }
  .imagenes-carrusel #texto-imagenes-carrusel .text span {
    font-size: 16px;
  }
  .imagenes-carrusel #texto-imagenes-carrusel .text a {
    font-size: 15px;
    padding: 8px 12px;
  }
}

.section-productos {
  padding-top: 93px;
  padding-bottom: 146px;
  position: relative;
  z-index: 1;
}
.section-productos .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  /* RESPONSIVE para grid-container */
}
.section-productos .contenedor .title h2 {
  color: #053f63;
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  position: relative;
}
.section-productos .contenedor .title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 120px;
  height: 2px;
  background-color: #053f63;
  transform: translateX(-50%);
}
.section-productos .contenedor .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  height: auto; /* o el alto que necesites */
}
.section-productos .contenedor .grid-container > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.section-productos .contenedor .grid-container > div a {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section-productos .contenedor .grid-container > div a img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-productos .contenedor .grid-container > div a h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.75);
  font-weight: 900;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  z-index: 2;
}
.section-productos .contenedor .grid-container > div a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #131313;
  transition: all 0.5s ease;
  z-index: 1;
}
.section-productos .contenedor .grid-container > div a:hover img {
  transform: scale(1.1);
}
.section-productos .contenedor .grid-container > div a:hover::after {
  opacity: 0.5;
}
.section-productos .contenedor .item1 {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}
.section-productos .contenedor .item2 {
  grid-column: 3;
  grid-row: 1;
}
.section-productos .contenedor .item3 {
  grid-column: 4;
  grid-row: 1;
}
.section-productos .contenedor .item4 {
  grid-column: 3;
  grid-row: 2;
}
.section-productos .contenedor .item5 {
  grid-column: 4;
  grid-row: 2;
}
@media (max-width: 1200px) {
  .section-productos .contenedor .grid-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .section-productos .contenedor .item1 {
    grid-column: 1/span 2;
    grid-row: auto;
  }
  .section-productos .contenedor .item2, .section-productos .contenedor .item3, .section-productos .contenedor .item4, .section-productos .contenedor .item5 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 768px) {
  .section-productos .contenedor .grid-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .section-productos .contenedor .item1, .section-productos .contenedor .item2, .section-productos .contenedor .item3, .section-productos .contenedor .item4, .section-productos .contenedor .item5 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 576px) {
  .section-productos .contenedor .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 22px;
  }
  .section-productos .contenedor .item1, .section-productos .contenedor .item2, .section-productos .contenedor .item3, .section-productos .contenedor .item4, .section-productos .contenedor .item5 {
    grid-column: 1;
    grid-row: auto;
  }
}
.section-productos::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/fondo-productos.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.1;
}

.section-recetas-familiares {
  padding-bottom: 80px;
}
.section-recetas-familiares .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-recetas-familiares .contenedor .left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 608px;
  z-index: 1;
}
.section-recetas-familiares .contenedor .left .title p {
  color: #053f63;
  font-weight: 300;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
}
.section-recetas-familiares .contenedor .left .title p strong {
  color: #1180b7;
  font-weight: 900;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
}
.section-recetas-familiares .contenedor .left p {
  color: #6f6f6e;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.section-recetas-familiares .contenedor .left .card {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 25px;
  transition: all 0.5s ease;
  padding: 12px 20px;
}
.section-recetas-familiares .contenedor .left .card a {
  position: relative;
  z-index: 1;
}
.section-recetas-familiares .contenedor .left .card::before {
  content: "";
  border-radius: 5px;
  position: absolute;
  inset: 0;
  background: white;
  transition: transform 0.5s ease;
  transform: scaleX(1);
  border: 1px solid #053f63;
  z-index: 0;
}
.section-recetas-familiares .contenedor .left .card:hover::before {
  transform: scaleX(-1);
  background: #053f63;
  border: 1px solid #053f63;
}
.section-recetas-familiares .contenedor .left .card a {
  color: #053f63;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.5s ease;
}
.section-recetas-familiares .contenedor .left .card:hover a {
  color: #fff;
  font-weight: 700;
}
.section-recetas-familiares .contenedor .right {
  width: 700px;
  height: 528px;
}
.section-recetas-familiares .contenedor .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-oportunidad-crecer {
  padding-top: 95px;
  padding-bottom: 80px;
}
.section-oportunidad-crecer .contenedor {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.section-oportunidad-crecer .contenedor .title h2 {
  color: #053f63;
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  position: relative;
}
.section-oportunidad-crecer .contenedor .title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 120px;
  height: 2px;
  background-color: #053f63;
  transform: translateX(-50%);
}
.section-oportunidad-crecer .contenedor .contenedor-oportunidades {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item {
  width: 611px;
  height: 330px;
  border-radius: 5px;
  overflow: hidden;
}
.section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item a {
  position: relative;
}
.section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item a .oportunidad-img {
  transition: all 0.4s ease;
}
.section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item a .oportunidad-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item a .oportunidad-titulo {
  max-width: 231px;
  width: -moz-max-content;
  width: max-content;
  padding: 19px 13px;
  border-radius: 5px;
  background: #053f63;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.4s ease;
}
.section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item a:hover .oportunidad-titulo {
  color: #053f63;
  background: white;
}
.section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item a:hover .oportunidad-img {
  transform: scale(1.1);
}
.section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #131313;
}

.section-blog {
  padding-top: 95px;
  padding-bottom: 80px;
}
.section-blog .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.section-blog .contenedor .title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 633px;
}
.section-blog .contenedor .title h2 {
  color: #053f63;
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  position: relative;
}
.section-blog .contenedor .title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 120px;
  height: 2px;
  background-color: #053f63;
  transform: translateX(-50%);
}
.section-blog .contenedor .title h3 {
  color: #6f6f6e;
  text-align: center;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.section-blog .contenedor .listado-categorias-blog {
  width: 100%;
  max-width: 1340px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a .categoria-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s ease;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a .categoria-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a .categoria-texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: absolute;
  left: 23px;
  bottom: -9px;
  z-index: 1;
  transition: all 0.5s ease;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a .categoria-texto .categoria-nombre {
  color: #fff;
  text-shadow: 0px 1px 35px rgba(0, 0, 0, 0.1);
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a .categoria-texto p {
  background: #fff;
  padding: 9px 14px;
  color: #1180b7;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  opacity: 0;
  transition: all 0.5s ease;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #131313;
  transition: all 0.5s ease;
  z-index: 1;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60.66%, rgba(19, 19, 19, 0.7) 100%);
  transition: all 0.5s ease;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a:hover .categoria-img {
  transform: scale(1.1);
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a:hover .categoria-texto {
  bottom: 40px;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a:hover .categoria-texto p {
  opacity: 1;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a:hover::after {
  opacity: 0;
}
.section-blog .contenedor .listado-categorias-blog .categoria-blog-item a:hover::before {
  opacity: 0.5;
}
@media (max-width: 1200px) {
  .section-blog .contenedor .listado-categorias-blog {
    max-width: 731px;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}
@media (max-width: 768px) {
  .section-blog .contenedor .listado-categorias-blog {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .section-blog .contenedor .listado-categorias-blog .categoria-blog-item {
    width: 100%;
    max-width: 480px;
  }
  .section-blog .contenedor .listado-categorias-blog a {
    height: 220px;
  }
  .section-blog .contenedor .listado-categorias-blog .categoria-texto {
    left: 16px;
  }
  .section-blog .contenedor .listado-categorias-blog .categoria-nombre {
    font-size: 18px;
    line-height: 22px;
  }
  .section-blog .contenedor .listado-categorias-blog p {
    font-size: 14px;
    padding: 6px 10px;
  }
}

.section-contact-form {
  padding-block: 80px;
  background: rgba(179, 179, 179, 0.2);
}
.section-contact-form .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* Tablet: inputs a una columna */
  /* Móvil */
}
.section-contact-form .contenedor .left {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.section-contact-form .contenedor .left ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.section-contact-form .contenedor .left ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-contact-form .contenedor .left ul li svg {
  width: 35px;
  height: 35px;
}
.section-contact-form .contenedor .left ul li p {
  color: #6f6f6e;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.section-contact-form .contenedor .right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 25px;
  padding: 20px 40px;
  max-width: 800px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
}
.section-contact-form .contenedor .right h2 {
  color: #1180b7;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .section-contact-form .contenedor .right h2 {
    font-size: 23px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .section-contact-form .contenedor .right h2 {
    font-size: 23px;
    line-height: 30px;
  }
}
@media (max-width: 480px) {
  .section-contact-form .contenedor .right h2 {
    font-size: 20px;
    line-height: 28px;
  }
}
.section-contact-form .contenedor .right form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 23px;
}
.section-contact-form .contenedor .right form div p span {
  display: block;
  width: 100%;
}
.section-contact-form .contenedor .right form div p span input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid #b3b3b3;
  background: rgba(179, 179, 179, 0.1);
  color: #1180b7;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  outline: none;
}
.section-contact-form .contenedor .right form div p span input::-moz-placeholder {
  color: #1180b7;
}
.section-contact-form .contenedor .right form div p span input::placeholder {
  color: #1180b7;
}
.section-contact-form .contenedor .right form div p span textarea {
  outline: none;
  width: 100% !important;
  height: 173px !important;
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid #b3b3b3;
  background: rgba(179, 179, 179, 0.1);
  color: #1180b7;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.section-contact-form .contenedor .right form div p span textarea::-moz-placeholder {
  color: #1180b7;
}
.section-contact-form .contenedor .right form div p span textarea::placeholder {
  color: #1180b7;
}
.section-contact-form .contenedor .right form .medium {
  width: 48%;
}
.section-contact-form .contenedor .right form .complete {
  width: 100%;
}
.section-contact-form .contenedor .right form .complete p input[type=submit] {
  margin-inline: auto;
  display: block;
  padding: 10px 25px;
  border-radius: 5px;
  background: #1180b7;
  color: #fff;
  text-align: center;
  font-size: 17.429px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  cursor: pointer;
}
@media (max-width: 1224px) {
  .section-contact-form .contenedor .right form {
    justify-content: flex-start;
  }
  .section-contact-form .contenedor .right form .medium,
  .section-contact-form .contenedor .right form .complete {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section-contact-form .contenedor {
    padding-block: 40px;
  }
  .section-contact-form .contenedor .right {
    padding: 20px;
  }
  .section-contact-form .contenedor .right form {
    gap: 15px;
  }
  .section-contact-form .contenedor .right form .medium,
  .section-contact-form .contenedor .right form .complete {
    width: 100%;
  }
  .section-contact-form .contenedor .right form div p span input,
  .section-contact-form .contenedor .right form div p span textarea {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 18px;
  }
  .section-contact-form .contenedor .right form div p span textarea {
    height: 150px !important;
  }
  .section-contact-form .contenedor .right h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

.section-croquis {
  height: 400px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -80px;
  background-position: 46% center;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

#texto-imagenes-carrusel div button {
  top: -30px;
}

#texto-imagenes-carrusel div button.splide__arrow--prev {
  left: 0 !important;
}

.imagenes-carrusel .right .splide__arrows {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  /* Se reduce el espacio a 0px para juntarlas completamente */
  gap: 0px;
  padding: 0;
  margin-bottom: 20px;
  pointer-events: auto;
}
.imagenes-carrusel .right .splide__arrow {
  background: white;
  border: 1px solid;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Importante: Esto evita que Splide rote los botones automáticamente */
  transform: none !important;
  /* Se eliminó la rotación del SVG. Asumiendo que tu HTML tiene los íconos correctos para cada dirección, esto solucionará que ambas miren a la derecha. */
}
.imagenes-carrusel .right .splide__arrow.splide__arrow--prev, .imagenes-carrusel .right .splide__arrow.splide__arrow--next {
  top: auto;
  left: auto;
  right: auto;
}
.imagenes-carrusel .right .splide__arrow svg {
  width: 20px;
  height: 20px;
}
.imagenes-carrusel .right .splide__arrow svg path {
  fill: black;
  transition: fill 0.3s ease;
}
.imagenes-carrusel .right .splide__arrow:hover {
  background: #0a4e93 !important;
  transform: scale(1.1);
}
.imagenes-carrusel .right .splide__arrow:hover svg path {
  fill: #ffffff;
}

#texto-imagenes-carrusel div button.splide__arrow--next {
  left: 60px !important;
}

.splide__pagination {
  bottom: -30px !important;
}

.splide__slide img {
  vertical-align: bottom;
  width: 100%;
  height: 314px;
  -o-object-fit: contain;
     object-fit: contain;
}

.splide__pagination li button.is-active {
  background-color: #053f63;
  transform: scale(1);
}

#imagenes-carrusel-list .splide__slide img {
  vertical-align: bottom;
  width: 100%;
  height: 100%;
}

.titulo-relacionados {
  color: #053f63;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  text-transform: uppercase;
}

.main-single-post .contenido-post .contenedor .left .contenido .preparacion .ingredientes {
  width: 40%;
}

.main-single-post .contenido-post .contenedor .left .image {
  width: 100% !important;
  height: auto !important;
}

.contenedor.reclamos h2 {
  color: #053f63;
  /* Texto 25 Bold */
  font-family: "Montserrat";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 120% */
  margin: 20px 0;
}
.contenedor.reclamos ul {
  margin: 20px 0;
  margin-left: 20px;
}
.contenedor.reclamos ul li {
  list-style-type: disc;
}
.contenedor.reclamos p,
.contenedor.reclamos li {
  color: #6f6f6e;
  margin-bottom: 10px;
  /* Texto 20 Regular */
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.contenedor.form .cont-form {
  width: 90%;
  margin: 60px auto;
  padding: 35px 25px;
  align-items: center;
  border-radius: 5px;
  background: #fff;
  /* Sombras */
  box-shadow: 0 1px 35px 0 rgba(0, 0, 0, 0.1);
}
.contenedor.form .cont-form .fila {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contenedor.form .cont-form p {
  margin: auto;
  margin: auto;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  width: 100%;
  color: #6f6f6e;
  /* Texto 18 Regular */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.contenedor.form .cont-form p span {
  width: 100%;
  margin: auto;
}
.contenedor.form .cont-form .txt-1 {
  margin-bottom: 20px;
}
.contenedor.form .cont-form input:focus {
  outline: none;
}
.contenedor.form .cont-form input,
.contenedor.form .cont-form textarea {
  border-radius: 5px;
  border: 1px solid var(--1, #b3b3b3);
  background: rgba(179, 179, 179, 0.1);
  min-width: 100px;
  padding: 15px 20px;
  width: 100%;
  margin: auto;
}
.contenedor.form .cont-form input::-moz-placeholder, .contenedor.form .cont-form textarea::-moz-placeholder {
  color: #1180b7;
  /* Texto 18 Regular */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.contenedor.form .cont-form input::placeholder,
.contenedor.form .cont-form textarea::placeholder {
  color: #1180b7;
  /* Texto 18 Regular */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 127.778% */
}
.contenedor.form .cont-form input[type=date] {
  color: #1180b7;
  /* Texto 18 Regular */
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  max-width: 400px;
  margin: auto;
}
.contenedor.form .cont-form .medium {
  width: 100%;
}
.contenedor.form .cont-form label input,
.contenedor.form .cont-form label span {
  width: auto !important;
}
.contenedor.form .cont-form .wpcf7-form-control.wpcf7-radio span {
  width: auto;
}
.contenedor.form .cont-form h3 {
  color: #053f63;
  /* Texto 25 Bold */
  font-family: "Montserrat";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 120% */
  margin: 20px 0;
}
.contenedor.form .cont-form .boton-reclamo {
  border: 1px solid #053f63;
  border-radius: 3px;
  padding: 15px 20px !important;
  color: #053f63;
  font-weight: 600;
  background: transparent;
  width: 150px;
  text-align: center;
  cursor: pointer;
  padding-right: 10px;
  transition: all 0.3s ease;
}
.contenedor.form .cont-form .boton-reclamo:hover {
  background: #053f63;
  color: #fff;
}
.contenedor.form .cont-form .wpcf7-spinner {
  display: none !important;
}
.contenedor.form .cont-form .wpcf7-form-control-wrap {
  display: flex;
}
.contenedor.form .cont-form .tipo-reclamo input {
  min-width: auto !important;
}
.contenedor.form .cont-form .tipo-reclamo .wpcf7-list-item {
  margin-right: 20px;
}

.btn-filtro {
  border-radius: 5px;
  border: 1px solid var(--3, #1180b7);
  background: rgba(17, 128, 183, 0.1);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  color: #053f63;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 15px; /* 100% */
  display: none;
}

.filtro-superior input {
  width: 100%;
}

.producto-item {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  max-width: 320px;
}

.section-banner2 .contenedor .min-cont {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.section-banner2 .contenedor .min-cont .titulo-gr {
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  font-family: "Montserrat";
  font-size: 70px;
  font-style: normal;
  font-weight: 800;
  line-height: 70px;
  /* 100% */
}
.section-banner2 .contenedor .min-cont .subtitulo-gr {
  color: var(--5, #fff);
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: "Montserrat";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  margin-top: 24px;
}
.section-banner2 .contenedor .min-cont .btn-volver {
  margin: auto;
  margin-top: 24px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 25px;
  transition: all 0.5s ease;
  padding: 12px 20px;
}
.section-banner2 .contenedor .min-cont .btn-volver a {
  position: relative;
  z-index: 1;
}
.section-banner2 .contenedor .min-cont .btn-volver::before {
  content: "";
  border-radius: 5px;
  position: absolute;
  inset: 0;
  background: #053f63;
  transition: transform 0.5s ease;
  transform: scaleX(1);
  border: 1px solid white;
  z-index: 0;
}
.section-banner2 .contenedor .min-cont .btn-volver:hover::before {
  transform: scaleX(-1);
  background: white;
  border: 1px solid #053f63;
}
.section-banner2 .contenedor .min-cont .btn-volver a {
  color: white;
  text-align: center;
  font-weight: 300;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.5s ease;
}
.section-banner2 .contenedor .min-cont .btn-volver:hover a {
  color: #053f63;
  font-weight: 900;
}
.section-banner2 .contenedor .min-cont .listado-redes-sociales-2 {
  max-width: 400px;
  margin: auto;
  margin-top: 60px;
}
.section-banner2 .contenedor .min-cont .listado-redes-sociales-2 p {
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: "Montserrat";
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 120% */
}
.section-banner2 .contenedor .min-cont .listado-redes-sociales-2 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.section-banner2 .contenedor .min-cont .listado-redes-sociales-2 ul a svg {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

img {
  border-radius: 5px !important;
}

.cont-links-map {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 30px;
  align-items: flex-start;
}
.cont-links-map a {
  display: flex;
  align-items: center;
  background: #053f63;
  height: 60px;
  padding: 5px 20px;
  text-decoration: none;
}
.cont-links-map a p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-right: 0;
  transition: max-width 0.3s ease, opacity 0.3s ease, margin-right 0.3s ease;
}
.cont-links-map a:hover p {
  max-width: 200px;
  opacity: 1;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .section-banner2 .contenedor .min-cont .titulo-gr {
    font-size: 36px;
    line-height: 40px;
  }
  .section-banner2 .contenedor .min-cont .subtitulo-gr {
    font-size: 20px;
    line-height: 25px;
  }
  .section-banner2 .contenedor .min-cont .listado-redes-sociales-2 {
    max-width: 100%;
  }
  .section-banner2 .contenedor .min-cont .listado-redes-sociales-2 p {
    font-size: 18px;
    line-height: 22px;
  }
  .main-front-page .section-contact-form .contenedor .right {
    padding: 20px 20px;
  }
}
@media (max-width: 1024px) {
  .main-front-page .imagenes-carrusel {
    margin-top: 120px;
    gap: 30px;
    padding: 0 40px;
    max-height: none;
    flex-direction: column-reverse;
  }
  .main-front-page .imagenes-carrusel .left {
    width: 50%;
    max-width: 500px;
  }
  .main-front-page .imagenes-carrusel .right {
    width: 50%;
    max-width: 450px;
  }
}
@media (max-width: 768px) {
  .main-front-page .imagenes-carrusel {
    flex-direction: column;
    margin-top: 40px;
    gap: 40px;
    padding: 0 20px;
    flex-direction: column-reverse;
  }
  .main-front-page .imagenes-carrusel .right .contenedor {
    padding: 0;
  }
}
/* MÓVILES (480px o menos) */
@media (max-width: 480px) {
  .main-front-page .imagenes-carrusel {
    margin-top: 260px; /* si la ves muy abajo, prueba 160px o 120px */
    gap: 30px;
    padding: 0 15px;
  }
  .main-front-page .imagenes-carrusel .left {
    max-width: 100%;
  }
  .main-front-page .imagenes-carrusel .right {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .main-front-page .imagenes-carrusel .right .contenedor {
    max-width: 100%;
  }
  .contenedor-single-oportunidad .section-descripcion-oportunidad .contenedor {
    flex-direction: column;
  }
  .btn-filtro {
    display: flex;
  }
  .filtro-subcategorias {
    display: none;
  }
  .parte-iz-filtro {
    flex-direction: row !important;
  }
  .main-blog .section-listado-categorias .contenedor .posts-other-categories .post .image {
    width: 100% !important;
    height: auto !important;
    max-width: 320px;
  }
  .main-blog .section-listado-categorias .contenedor .posts-other-categories .post {
    flex-direction: column;
    align-items: center;
  }
  .main-single-post .contenido-post .contenedor .left .contenido .preparacion .ingredientes {
    width: 100% !important;
  }
  .main-single-post .contenido-post .contenedor .left .contenido .preparacion {
    flex-direction: column;
  }
  .contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios {
    flex-direction: column;
  }
  .contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .lista .item {
    width: 100% !important;
    margin: auto;
  }
  .contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .left,
  .contenedor-single-oportunidad .section-descripcion-oportunidad .contenedor .imagen {
    width: 100% !important;
    height: auto !important;
  }
  .contact-wspp {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
  .main-blog .section-listado-categorias .contenedor .listado-categorias {
    justify-content: flex-start !important;
    overflow-x: auto;
  }
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a {
    flex-direction: column;
  }
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts {
    display: flex !important;
    flex-direction: column;
    margin: auto;
  }
  .contenedor-single-oportunidad .section-iniciar-negocio .contenedor .listado {
    grid-template-columns: 1fr !important;
    align-items: flex-start;
    justify-content: flex-start !important;
  }
  .contenedor-single-oportunidad .section-iniciar-negocio .contenedor .listado .item {
    justify-content: flex-start !important;
    width: 90% !important;
  }
  .main-front-page .section-contact-form .contenedor {
    flex-direction: column;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 40px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    top: auto;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, #fff 24.7%, rgba(255, 255, 255, 0) 47.9%);
    z-index: -1;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .imagenes-carrusel {
    flex-direction: column;
    max-height: none;
    gap: 40px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .imagenes-carrusel .right {
    order: -1;
    width: 90%;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .imagenes-carrusel .left {
    width: 100%;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .imagenes-carrusel::after {
    display: none;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .text p {
    font-size: 20px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .text h2 {
    font-size: 60px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor a {
    font-size: 18px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-juegos-temporada .contenedor .title h2 {
    font-size: 30px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .imagenes-carrusel .right #texto-imagenes-carrusel .splide__slide .text p {
    font-size: 25px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .imagenes-carrusel .right #texto-imagenes-carrusel .splide__slide .text span {
    font-size: 15px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-productos .contenedor .title h2 {
    font-size: 30px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .filtro-galeria.e {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-recetas-familiares .contenedor {
    flex-direction: column;
    gap: 20px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-recetas-familiares .contenedor .left .card a {
    font-size: 18px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-recetas-familiares .contenedor .left p {
    font-size: 15px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-recetas-familiares .contenedor .left .title p {
    font-size: 30px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-recetas-familiares .contenedor .right {
    width: 100%;
    height: auto;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-recetas-familiares .contenedor .right img {
    height: auto;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .title h2 {
    font-size: 30px !important;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .title h3 {
    font-size: 15px !important;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-oportunidad-crecer .contenedor .contenedor-oportunidades {
    flex-direction: column;
    gap: 25px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item {
    width: 100%;
    height: auto;
    max-height: 250px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item a .oportunidad-titulo {
    font-size: 9px;
    max-width: 108px;
    height: 48px;
    left: 10px;
    top: 110px;
    line-height: 14px;
    padding: 7px 9px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-blog .contenedor .listado-categorias-blog .categoria-blog-item {
    width: 100%;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-contact-form .contenedor .left ul li p {
    font-size: 15px;
    z-index: 1;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-contact-form .contenedor .left ul li svg {
    width: 25px;
    height: 25px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .listado-redes-sociales a svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-contact-form .contenedor .right {
    margin-top: 60px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-contact-form .contenedor .right h2 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .main-front-page .section-contact-form .contenedor .right form .medium {
    width: 100%;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .filtro-galeria {
    flex-direction: column;
    gap: 15px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .producto-item {
    width: 90% !important;
    margin: auto;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .contenedor.form .cont-form {
    width: 100%;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .contenedor.form .cont-form input[type=date] {
    max-width: 100%;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .contenedor.form .cont-form .fila {
    flex-direction: column;
    gap: 0;
  }
  /* Contenedor principal */
  /* Estadísticas */
  /* Navegación */
  /******** Salto a página ***************/
  /* ========== PAGINACIÓN MINIMALISTA ========== */
  /* Navegación clean */
  /* Salto a página minimalista */
  /* Responsive */
}
@media (max-width: 768px) and (max-width: 1024px) {
  .main-front-page .section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item a .oportunidad-titulo {
    font-size: 15px;
    max-width: 160px;
    height: 66px;
    left: 29px;
    top: 170px;
    line-height: 16px;
    padding: 16px 5px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .main-front-page .section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item a .oportunidad-titulo {
    font-size: 9px;
    max-width: 108px;
    height: 40px;
    left: 10px;
    top: 110px;
    line-height: 14px;
    padding: 7px 9px;
  }
}
@media (max-width: 768px) {
  .pagination-for-six {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
  }
  .pagination-stats {
    text-align: center;
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 14px;
  }
  .pagination-nav {
    text-align: center;
  }
  .pagination-nav .page-numbers {
    display: inline-flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .pagination-nav .page-numbers li {
    margin: 0;
  }
  .pagination-nav .page-numbers a,
  .pagination-nav .page-numbers span {
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #dee2e6;
    background: white;
    color: #007bff;
    min-width: 40px;
    text-align: center;
  }
  .pagination-nav .page-numbers a:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
  }
  .pagination-nav .page-numbers .current {
    background: #007bff;
    color: white;
    border-color: #007bff;
  }
  .pagination-for-six {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
  }
  .pagination-stats {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
  }
  .pagination-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
  }
  .pagination-nav a,
  .pagination-nav span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
  }
  .pagination-nav a:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.2);
  }
  .pagination-nav .current {
    background: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: 600;
  }
  .pagination-nav .dots {
    background: transparent;
    border: none;
    color: #adb5bd;
  }
  .pagination-nav .prev,
  .pagination-nav .next {
    font-weight: 600;
    padding: 0 20px;
    background: #f8f9fa;
  }
  .pagination-nav .prev:hover,
  .pagination-nav .next:hover {
    background: #007bff;
    color: white;
  }
  .pagination-jump {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e9ecef;
  }
  .pagination-jump span {
    display: block;
    text-align: center;
    margin-bottom: 15px;
    color: #495057;
    font-weight: 500;
    font-size: 14px;
  }
  .page-jump-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .page-input {
    width: 70px;
    height: 42px;
    padding: 0 12px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
  }
  .page-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  }
  .page-jump-btn {
    height: 42px;
    padding: 0 20px;
    background: #007bff;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .page-jump-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .pagination-for-six {
    padding: 20px;
  }
  .pagination-nav a,
  .pagination-nav span {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .pagination-jump {
    padding: 15px;
  }
}
/* Desktop (tal cual lo tienes) */
.main-front-page .section-productos .contenedor .grid-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

/* 769px - 1200px: 3 columnas */
@media (min-width: 769px) and (max-width: 1200px) {
  .main-front-page .section-productos .contenedor .grid-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}
/* 577px - 768px: 2 columnas */
@media (min-width: 577px) and (max-width: 768px) {
  .main-front-page .section-productos .contenedor .grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .main-front-page .section-productos .contenedor .grid-container > div .categoria-link {
    font-size: 18px;
  }
}
/* <= 576px: 1 columna */
@media (max-width: 576px) {
  .main-front-page .section-productos .contenedor .grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto; /* anula repeat(2,1fr) */
    gap: 22px;
    height: auto;
  }
  /* el wrapper no debe forzar altura */
  .main-front-page .section-productos .contenedor .grid-container > div {
    grid-column: 1/-1 !important;
    grid-row: auto !important;
    width: 100%;
    min-height: unset;
    margin: 0;
  }
  /* ✅ Banner rectangular con aspect-ratio */
  .main-front-page .section-productos .contenedor .grid-container > div .categoria-link {
    width: 100%;
    aspect-ratio: 6/3; /* más rectangular (prueba 16/5 si lo quieres más bajito) */
    height: auto;
    border-radius: 5px;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    text-decoration: none;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  }
  /* overlay suave para legibilidad */
  .main-front-page .section-productos .contenedor .grid-container > div .categoria-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: -1;
  }
}
/* Extra: móviles muy chicos */
@media (max-width: 420px) {
  .main-front-page .section-productos .contenedor .grid-container > div .categoria-link {
    aspect-ratio: 16/7; /* un poquito más alto para que no se aplaste */
    font-size: 20px;
  }
}
/* (opcional pero recomendado) que la card se vea como banner */
.main-front-page .section-productos .contenedor .grid-container .item .categoria-link {
  min-height: 120px; /* alto tipo banner */
  background-position: center;
  background-size: cover;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .main-front-page .section-recetas-familiares .contenedor {
    display: inline;
    align-items: center;
  }
  .main-front-page .section-recetas-familiares .contenedor .right {
    width: 100%;
    height: 20%;
    padding: 20px 20px;
  }
  .main-front-page .section-recetas-familiares .contenedor .left {
    padding: 20px 20px;
  }
}
@media (max-width: 768px) {
  .main-front-page .section-oportunidad-crecer .contenedor .contenedor-oportunidades {
    display: inline;
  }
  .main-front-page .section-oportunidad-crecer .contenedor .contenedor-oportunidades .oportunidad-item {
    width: 100%;
    height: 30%;
  }
}
@media (max-width: 768px) {
  .main-front-page .section-contact-form .contenedor .left ul {
    font-size: 14px;
    word-break: break-word;
  }
}
@media (max-width: 768px) {
  .splide__list {
    max-width: 100%;
    height: 300px;
  }
}
@media (max-width: 768px) {
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 40px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .text h5 {
    font-size: 30px;
    line-height: 35px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .text h4 {
    font-size: 30px;
    line-height: 30px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .contenedor .text p {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .main-front-page .section-juegos-temporada .contenedor #juegos-temporada .splide__slide .categoria-item .imagen {
    height: 300px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .main-front-page .section-main-banner #main-banner {
    width: 100%;
    height: 600px;
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .image {
    position: absolute;
    left: 0; /* Alinea la imagen al borde izquierdo del contenedor */
    top: 240px;
    width: 100%; /* Ocupa el 100% del ancho del contenedor */
    height: 100%; /* Ocupa el 100% del alto del contenedor */
    z-index: -1;
    -o-object-fit: cover;
       object-fit: cover; /* Escala la imagen para cubrir todo el espacio sin deformarse */
  }
  .main-front-page .section-main-banner #main-banner #main-banner-track .splide__slide .image img {
    height: 400px;
  }
  .main-front-page.splide__pagination {
    top: 577px;
  }
  .main-front-page .section-juegos-temporada {
    padding-top: 0px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .main-front-page .imagenes-carrusel .left {
    width: 100%;
  }
  .main-front-page .imagenes-carrusel .right {
    width: 100%;
  }
}
@media (max-width: 480px) and (max-width: 1200px) {
  .splide__arrow {
    background: white !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 50% !important;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .splide__arrow svg {
    fill: #666666 !important;
    width: 14px !important;
    height: 14px !important;
    transition: fill 0.3s ease;
  }
  .splide__arrow:hover {
    background: cyan !important;
    border-color: cyan !important;
    transform: translateY(-50%) scale(1.05); /* Un ligero efecto de zoom */
    box-shadow: 0 6px 12px rgba(0, 255, 255, 0.3);
  }
  .splide__arrow:hover svg {
    fill: #333333 !important;
  }
  .splide__arrow:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    border-color: #d0d0d0 !important;
  }
  .splide__arrow--prev {
    left: 2em !important;
  }
  .splide__arrow--next {
    right: 2em !important;
  }
}
@media (max-width: 480px) {
  .main-front-page .section-contact-form .contenedor .left ul li p {
    font-size: 16px;
  }
}
.splide {
  visibility: visible !important;
}

/* Usamos el ID para ser específicos y no romper otros sliders */
#juegos-temporada .splide__pagination {
  display: flex;
  justify-content: center; /* Esto es lo clave para centrar los items */
  width: 100%; /* Asegura que ocupe todo el ancho */
  padding: 0; /* Elimina padding por defecto de listas */
  margin: 0; /* Elimina margin por defecto */
  /* Ajuste de posición vertical */
  bottom: 1em; /* Ajusta esto para subir o bajar los puntos */
}

.section-main-banner {
  position: relative;
}
.section-main-banner .splide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1600px;
  height: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  transform: translate(-50%, -50%);
  pointer-events: none;
  padding: 0 20px;
}
.section-main-banner .splide__arrow {
  background: white;
  border: 1px solid;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.section-main-banner .splide__arrow.splide__arrow--prev, .section-main-banner .splide__arrow.splide__arrow--next {
  transform: none;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}
.section-main-banner .splide__arrow svg {
  width: 20px;
  height: auto;
}
.section-main-banner .splide__arrow svg path {
  fill: black;
  transition: fill 0.3s ease;
}
.section-main-banner .splide__arrow:hover {
  background: #0a4e93;
  transform: scale(1.1);
}
.section-main-banner .splide__arrow:hover svg path {
  fill: #fffdfd;
}

.section-beneficios {
  overflow: hidden;
  padding-top: 131px;
  padding-bottom: 136px;
}
.section-beneficios .contenedor {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 43px;
  position: relative;
  z-index: 1;
}
.section-beneficios .contenedor .imagen-beneficio {
  grid-column: 3/span 1;
  grid-row: 2/span 2;
  align-self: stretch;
  justify-self: center;
  position: relative;
}
.section-beneficios .contenedor .imagen-beneficio .container-imagen {
  z-index: -1;
  width: 582px;
  height: 538px;
  position: absolute;
  left: -16rem;
  top: -4rem;
}
.section-beneficios .contenedor .imagen-beneficio .container-imagen img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-beneficios .contenedor .recuadro {
  border-radius: 10px;
  border: 0.5px solid #b3b3b3;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 30px 20px 30px 35px;
}
.section-beneficios .contenedor .recuadro .number p {
  color: #1180b7;
  text-align: center;
  font-weight: 900;
  font-size: 24.077px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.section-beneficios .contenedor .recuadro .number p::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(17, 128, 183, 0.2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.section-beneficios .contenedor .recuadro .text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-beneficios .contenedor .recuadro .text p {
  color: #1180b7;
  font-weight: 900;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
}
.section-beneficios .contenedor .recuadro .text span {
  color: #6f6f6e;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.section-material {
  margin-bottom: 160px;
}
.section-material .contenedor h2 {
  color: #053f63;
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 35px;
}
.section-material .contenedor h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 120px;
  height: 2px;
  background-color: #053f63;
  transform: translateX(-50%);
}
.section-material .contenedor .descripcion-material {
  margin-bottom: 50px;
}
.section-material .contenedor .descripcion-material p {
  color: #6f6f6e;
  text-align: center;
  font-weight: 300;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}
.section-material .contenedor .descripcion-material p strong {
  color: #1180b7;
  font-weight: 900;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
}
.section-material .contenedor .image {
  width: 100%;
  height: 713px;
  position: relative;
}
.section-material .contenedor .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-material .contenedor .image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 75.48%, #fff 101%);
}

@media (max-width: 768px) {
  .section-beneficios .contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 1;
  }
  .section-beneficios .contenedor .recuadro .text p {
    font-size: 20px;
  }
  .section-beneficios .contenedor .imagen-beneficio {
    align-items: center;
  }
  .section-beneficios .contenedor .imagen-beneficio .container-imagen {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
  }
  .section-material .contenedor h2 {
    font-size: 30px;
  }
  .section-material .contenedor .descripcion-material p {
    font-size: 15px;
  }
  .section-material .contenedor .descripcion-material p strong {
    font-size: 15px;
  }
  .section-material .contenedor .image {
    height: auto;
  }
}
.contenedor-single-oportunidad .section-single-banner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 28vh;
  z-index: 1;
}
.contenedor-single-oportunidad .section-single-banner .contenedor {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contenedor-single-oportunidad .section-single-banner .contenedor .title h1 {
  color: #053f63;
  font-weight: 300;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contenedor-single-oportunidad .section-single-banner .contenedor .title h2 {
  color: #053f63;
  font-weight: 900;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.contenedor-single-oportunidad .section-single-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fff 57.88%, rgba(255, 255, 255, 0) 90.72%);
  z-index: -1;
}
.contenedor-single-oportunidad .section-descripcion-oportunidad {
  overflow: hidden;
  position: relative;
  padding-block: 100px;
  background: rgba(179, 179, 179, 0.2);
}
.contenedor-single-oportunidad .section-descripcion-oportunidad .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.contenedor-single-oportunidad .section-descripcion-oportunidad .contenedor .left {
  max-width: 714px;
}
.contenedor-single-oportunidad .section-descripcion-oportunidad .contenedor .left p {
  color: #6f6f6e;
  font-weight: 300;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}
.contenedor-single-oportunidad .section-descripcion-oportunidad .contenedor .imagen {
  width: 573px;
  height: 455px;
}
.contenedor-single-oportunidad .section-descripcion-oportunidad .contenedor .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contenedor-single-oportunidad .section-descripcion-oportunidad::after {
  content: "";
  position: absolute;
  left: -10rem;
  bottom: -7rem;
  width: 561px;
  height: 433px;
  background-image: url("../../images/vector_descripcion.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contenedor-single-oportunidad .section-iniciar-negocio {
  background-image: url("../../images/fondo-iniciar-negocio.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 115px;
  padding-bottom: 175px;
}
.contenedor-single-oportunidad .section-iniciar-negocio .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.contenedor-single-oportunidad .section-iniciar-negocio .contenedor h2 {
  color: #053f63;
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  position: relative;
  max-width: 660px;
}
.contenedor-single-oportunidad .section-iniciar-negocio .contenedor h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 120px;
  height: 2px;
  background-color: #053f63;
  transform: translateX(-50%);
}
.contenedor-single-oportunidad .section-iniciar-negocio .contenedor .listado {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px 45px;
}
.contenedor-single-oportunidad .section-iniciar-negocio .contenedor .listado .item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.contenedor-single-oportunidad .section-iniciar-negocio .contenedor .listado .item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  min-width: 85px;
  height: 85px;
  background: #fff;
  border-radius: 50%;
}
.contenedor-single-oportunidad .section-iniciar-negocio .contenedor .listado .item .text {
  width: -moz-fit-content;
  width: fit-content;
}
.contenedor-single-oportunidad .section-iniciar-negocio .contenedor .listado .item .text h3 {
  color: #053f63;
  font-weight: 700;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border-bottom: 1px solid #6f6f6e;
  padding-bottom: 10px;
}
.contenedor-single-oportunidad .section-iniciar-negocio .contenedor .listado .item .text p {
  padding-top: 10px;
  color: #6f6f6e;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.contenedor-single-oportunidad .section-beneficios-adicionales {
  padding-block: 95px 80px;
  background: rgba(179, 179, 179, 0.2);
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor h2 {
  color: #053f63;
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  position: relative;
  max-width: 660px;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 120px;
  height: 2px;
  background-color: #053f63;
  transform: translateX(-50%);
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 63px;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .left {
  width: 452px;
  height: 596px;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .lista {
  max-width: 804px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 44px;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .lista .item {
  position: relative;
  padding: 30px 20px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 1px 35px 0px rgba(0, 0, 0, 0.1);
  width: calc(50% - 40px);
  min-height: 170px;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .lista .item .image {
  position: absolute;
  left: 20px;
  top: -2rem;
  width: 62px;
  height: 62px;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .lista .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .lista .item .texto p {
  color: #053f63;
  font-weight: 700;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border-bottom: 1px solid #6f6f6e;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .lista .item .texto span {
  padding-top: 10px;
  color: #6f6f6e;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .contact-wspp a {
  border-radius: 5px;
  background: #053f63;
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 21px 20px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

@media (max-width: 768px) {
  .contenedor-single-oportunidad .section-single-banner .contenedor .title h1 {
    font-size: 15px;
  }
  .contenedor-single-oportunidad .section-single-banner .contenedor .title h2 {
    font-size: 15px;
  }
}
/* Estilo del contenedor */
.product-accordion-wrapper {
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

/* Estilo del botón (Cabecera) */
.accordion-header {
  width: 100%;
  background-color: #f9f9f9;
  border: none;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  font-size: 16px;
  color: #003366; /* Azul oscuro */
}

/* Estilo del cuerpo (Oculto por defecto) */
.accordion-body {
  display: none; /* Esto es clave: empieza oculto */
  padding: 15px;
  background-color: #fff;
  border-top: 1px solid #ddd;
}

/* Clase para mostrar el cuerpo cuando está activo */
.accordion-body.show {
  display: block;
}

/* Rotación de la flechita */
.accordion-header .accordion-arrow {
  transition: transform 0.3s;
}

.accordion-header.active .accordion-arrow {
  transform: rotate(180deg);
}

/* Quitar puntos de la lista */
.attribute-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-blog .section-listado-categorias {
  padding-top: 107px;
}
.main-blog .section-listado-categorias .contenedor .listado-categorias {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.main-blog .section-listado-categorias .contenedor .listado-categorias li {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 25px;
  transition: all 0.5s ease;
  padding: 12px 20px;
}
.main-blog .section-listado-categorias .contenedor .listado-categorias li a {
  position: relative;
  z-index: 1;
}
.main-blog .section-listado-categorias .contenedor .listado-categorias li::before {
  content: "";
  border-radius: 5px;
  position: absolute;
  inset: 0;
  background: white;
  transition: transform 0.5s ease;
  transform: scaleX(1);
  border: 1px solid #053f63;
  z-index: 0;
}
.main-blog .section-listado-categorias .contenedor .listado-categorias li:hover::before {
  transform: scaleX(-1);
  background: #053f63;
  border: 1px solid #053f63;
}
.main-blog .section-listado-categorias .contenedor .listado-categorias li a {
  color: #053f63;
  text-align: center;
  font-weight: 500;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.5s ease;
}
.main-blog .section-listado-categorias .contenedor .listado-categorias li:hover a {
  color: white;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 123px;
  flex-wrap: wrap;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 76px;
}
@media (max-width: 1200px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a {
    gap: 50px;
  }
}
@media (max-width: 992px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a {
    flex-direction: column;
    gap: 40px;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .image-post {
  border-radius: 5px;
  overflow: hidden;
  width: 700px;
  height: 416px;
}
@media (max-width: 1200px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .image-post {
    width: 600px;
    height: 356px;
  }
}
@media (max-width: 992px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .image-post {
    width: 100%;
    max-width: 700px;
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .image-post {
    aspect-ratio: 4/3;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .image-post img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (max-width: 992px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text {
    padding: 0 20px;
  }
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text h2 {
    color: #1180b7;
    font-weight: 900;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}
@media (max-width: 768px) and (max-width: 1200px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text h2 {
    font-size: 26px;
    margin-right: 96px;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text h2 {
    font-size: 22px;
    margin-right: 96px;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text h3 {
  color: #053f63;
  font-weight: 700;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 768px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text h3 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text h3 {
    font-size: 17px;
    margin-right: 170px;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text ul {
  padding-left: 1.5rem;
}
@media (max-width: 992px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text ul {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text ul {
    padding-left: 1rem;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text ul li {
  color: #053f63;
  text-align: justify;
  font-weight: 200;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  list-style: disc;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text ul li {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text ul li {
    font-size: 16px;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text span {
  margin-top: 15px;
  color: #053f63;
  text-align: center;
  font-weight: 300;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 25px;
  transition: all 0.5s ease;
  padding: 12px 20px;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text span a {
  position: relative;
  z-index: 1;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text span::before {
  content: "";
  border-radius: 5px;
  position: absolute;
  inset: 0;
  background: transparent;
  transition: transform 0.5s ease;
  transform: scaleX(1);
  border: 1px solid #053f63;
  z-index: 0;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text span:hover::before {
  transform: scaleX(-1);
  background: #053f63;
  border: 1px solid #053f63;
}
@media (max-width: 768px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text span {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text span {
    margin-right: 150px;
    margin-top: 20px;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text span::before {
  z-index: -1;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .last-post a .text span:hover {
  color: white;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts {
    gap: 25px;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s ease;
}
@media (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a {
    padding: 20px 15px;
    gap: 15px;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a .container-image {
  width: 392px;
  height: 315px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a .container-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 1400px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a .container-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a .container-image {
    aspect-ratio: 16/9;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a .container-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  transform: scale(1);
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a .container-image:hover img {
  transform: scale(1.08);
  filter: brightness(1.04) contrast(1.03);
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a p {
  color: #1180b7;
  font-weight: 500;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
}
@media (max-width: 1200px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a p {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (max-width: 768px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a p {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a p {
    font-size: 22px;
    line-height: 28px;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a span {
  opacity: 0;
  color: #053f63;
  text-align: center;
  font-weight: 300;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 25px;
  transition: all 0.5s ease;
  padding: 12px 20px;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a span a {
  position: relative;
  z-index: 1;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a span::before {
  content: "";
  border-radius: 5px;
  position: absolute;
  inset: 0;
  background: transparent;
  transition: transform 0.5s ease;
  transform: scaleX(1);
  border: 1px solid #053f63;
  z-index: 0;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a span:hover::before {
  transform: scaleX(-1);
  background: #053f63;
  border: 1px solid #053f63;
}
@media (max-width: 768px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a span {
    font-size: 22px;
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a span {
    font-size: 18px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a span::before {
  z-index: -1;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a span:hover {
  color: white;
}
.main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a:hover {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 769px) {
  .main-blog .section-listado-categorias .contenedor .listado-recetas .other-posts a:hover span {
    opacity: 1;
  }
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 120px;
  margin-bottom: 100px;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 90px;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .image {
  width: 644px;
  height: 416px;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text {
  max-width: 666px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text h2 {
  color: #1180b7;
  font-weight: 900;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text .content {
  border-bottom: 1px solid #6f6f6e;
  padding-bottom: 18px;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text .content p {
  color: #6f6f6e;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text .content p strong {
  color: #053f63;
  font-weight: 900;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text .content strong {
  color: #053f63;
  font-weight: 700;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text .content ul {
  padding-left: 1.3rem;
}
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text .content ul li {
  list-style: disc;
  color: #6f6f6e;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.main-blog .preguntas-frecuentes {
  padding-top: 115px;
  padding-bottom: 100px;
  background: rgba(179, 179, 179, 0.2);
  display: flex;
  z-index: 1;
}
@media (max-width: 1200px) {
  .main-blog .preguntas-frecuentes {
    padding-top: 90px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.main-blog .preguntas-frecuentes .contenedor {
  display: grid;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1200px) {
  .main-blog .preguntas-frecuentes .contenedor {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes .contenedor {
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes .contenedor {
    gap: 25px;
  }
}
.main-blog .preguntas-frecuentes .contenedor h2 {
  color: #053f63;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  position: relative;
}
@media (max-width: 1200px) {
  .main-blog .preguntas-frecuentes .contenedor h2 {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes .contenedor h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes .contenedor h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (max-width: 400px) {
  .main-blog .preguntas-frecuentes .contenedor h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
.main-blog .preguntas-frecuentes .contenedor h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 120px;
  height: 2px;
  background-color: #053f63;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes .contenedor h2::after {
    width: 100px;
    top: -0.4rem;
  }
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes .contenedor h2::after {
    width: 80px;
    top: -0.3rem;
  }
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes {
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes {
    gap: 8px;
  }
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item {
    gap: 15px;
  }
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta {
  padding: 15px 25px;
  border-radius: 10px;
  background: #b3b3b3;
  justify-content: space-between;
  cursor: pointer;
  display: flex;
  align-items: center;
  /* Línea horizontal del + */
  /* Línea vertical del + */
}
@media (max-width: 1200px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta {
    padding: 15px 20px;
  }
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta {
    padding: 12px 18px;
    border-radius: 8px;
  }
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta {
    padding: 10px 5px;
    border-radius: 6px;
  }
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta p {
  color: #fff;
  font-weight: 900;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  z-index: 1;
  line-height: 35px;
  flex-grow: 1;
}
@media (max-width: 1200px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta p {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta p {
    font-size: 20px;
    line-height: 28px;
    margin-right: 15px;
  }
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta p {
    font-size: 18px;
    line-height: 24px;
    margin-right: 12px;
  }
}
@media (max-width: 400px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta p {
    font-size: 16px;
    line-height: 22px;
  }
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta .faq-icono {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta .faq-icono {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta .faq-icono {
    width: 16px;
    height: 16px;
  }
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta .faq-icono .linea {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: transform 0.35s ease;
  border-radius: 4px;
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta .faq-icono .linea {
    height: 2px;
  }
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta .faq-icono .horizontal {
  transform: rotate(0deg);
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .pregunta .faq-icono .vertical {
  transform: rotate(90deg);
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .container-respuestas {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .container-respuestas {
    gap: 20px;
    padding-left: 1.5rem;
  }
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .container-respuestas {
    gap: 15px;
    padding-left: 1rem;
  }
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .container-respuestas .respuesta {
  list-style: disc;
  color: #053f63;
  font-weight: 200;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
}
@media (max-width: 1200px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .container-respuestas .respuesta {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .container-respuestas .respuesta {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 576px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .container-respuestas .respuesta {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 400px) {
  .main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item .container-respuestas .respuesta {
    font-size: 14px;
    line-height: 20px;
  }
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item.active .pregunta {
  background: #053f63;
}
.main-blog .preguntas-frecuentes .contenedor .container-preguntas-frecuentes .item.active .pregunta.activa .faq-icono .vertical {
  transform: rotate(180deg); /* se alinea con la horizontal → se ve '-' */
}

.listado-recetas {
  width: 100%;
  margin-bottom: 40px;
}
.listado-recetas .last-post {
  margin-bottom: 50px;
}
.listado-recetas .last-post a {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  text-decoration: none;
  color: inherit;
  align-items: center;
}
.listado-recetas .last-post a .image-post {
  flex: 1 1 50%;
}
.listado-recetas .last-post a .image-post img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.listado-recetas .last-post a .text {
  flex: 1 1 40%;
}
.listado-recetas .last-post a .text h2 {
  color: #1180b7;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.listado-recetas .last-post a .text h3 {
  margin-bottom: 10px;
  font-weight: bold;
}
.listado-recetas .last-post a .text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.listado-recetas .last-post a .text .btn-ver-mas {
  text-decoration: underline;
  color: #666;
}

@media (max-width: 768px) {
  .main-blog .section-listado-categorias .contenedor .listado-categorias {
    gap: 12px;
  }
}
@media (max-width: 1024px) {
  .main-blog .section-listado-categorias .contenedor .listado-categorias li a {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    padding: 0 40px;
    flex: 0 0 auto;
  }
}
@media (max-width: 788px) {
  .main-blog .section-listado-categorias .contenedor .listado-categorias li a {
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    padding: 0 30px;
    flex: 0 0 auto;
  }
}
/* Estilos para .pagination basándonos en tu captura */
.pagination {
  display: flex;
  justify-content: center; /* Centra los items horizontalmente */
  align-items: center;
  gap: 10px; /* Espacio entre botones */
  margin: 40px 0; /* Un poco de aire arriba y abajo */
  /* Estilos para todos los items (números y flechas) */
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: #9bc5de; /* Color celeste (inactivo) */
  color: #2c7da0; /* Color texto azul */
  border-radius: 8px; /* Bordes redondeados */
  text-decoration: none; /* Quitar subrayado */
  font-family: "Montserrat", sans-serif; /* Tu fuente actual */
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none; /* Asegura que no haya bordes por defecto */
  /* Efecto al pasar el mouse */
  /* Estilo para la página actual (el <span> en tu HTML) */
  /* Estilos específicos para las flechas (Siguiente/Anterior) */
}
.pagination .page-numbers:hover {
  background-color: #2c7da0;
  color: #ffffff;
}
.pagination .page-numbers.current {
  background-color: #083b5c; /* Azul oscuro */
  color: #ffffff;
  pointer-events: none; /* No clickable */
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  background-color: #b3b3b3; /* Color gris */
  color: #ffffff;
  font-size: 20px;
}
.pagination .page-numbers.next:hover, .pagination .page-numbers.prev:hover {
  background-color: #999999;
}

.section-contact-form {
  padding-block: 80px;
  background: rgba(179, 179, 179, 0.1);
}
.section-contact-form .contenedor {
  display: flex;
  align-items: center;
  z-index: 1;
  justify-content: space-between;
}
.section-contact-form .contenedor .left {
  display: flex;
  flex-direction: column;
  gap: 45px;
  z-index: 1;
}
.section-contact-form .contenedor .left ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.section-contact-form .contenedor .left ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-contact-form .contenedor .left ul li svg {
  width: 35px;
  height: 35px;
}
.section-contact-form .contenedor .left ul li p {
  color: #6f6f6e;
  font-weight: 300;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.section-contact-form .contenedor .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 20px 40px;
  max-width: 800px;
  margin-bottom: 6%;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
}
.section-contact-form .contenedor .right h2 {
  color: #1180b7;
  text-align: center;
  font-weight: 700;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  max-width: 500px;
}
.section-contact-form .contenedor .right form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
}
.section-contact-form .contenedor .right form div p span {
  display: block;
  width: 100%;
}
.section-contact-form .contenedor .right form div p span input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid #b3b3b3;
  background: rgba(179, 179, 179, 0.1);
  color: #1180b7;
  font-weight: 300;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  outline: none;
}
.section-contact-form .contenedor .right form div p span input::-moz-placeholder {
  color: #1180b7;
}
.section-contact-form .contenedor .right form div p span input::placeholder {
  color: #1180b7;
}
.section-contact-form .contenedor .right form div p span textarea {
  outline: none;
  width: 100% !important;
  height: 173px !important;
  width: 100%;
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid #b3b3b3;
  background: rgba(179, 179, 179, 0.1);
  color: #1180b7;
  font-weight: 300;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.section-contact-form .contenedor .right form div p span textarea::-moz-placeholder {
  color: #1180b7;
}
.section-contact-form .contenedor .right form div p span textarea::placeholder {
  color: #1180b7;
}
.section-contact-form .contenedor .right form .medium {
  width: 48%;
}
.section-contact-form .contenedor .right form .complete {
  width: 100%;
}
.section-contact-form .contenedor .right form .complete p input[type=submit] {
  margin-inline: auto;
  display: block;
  padding: 10px 25px;
  border-radius: 5px;
  background: #1180b7;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 17.429px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
}

.section-croquis {
  height: 411px;
  background-position: center;
  background-size: cover;
  background-position: 46% center;
}

/* Tablet: inputs a una columna */
@media (max-width: 1224px) {
  .section-contact-form .contenedor {
    flex-direction: column;
  }
  .section-contact-form .contenedor .left, .section-contact-form .contenedor .right {
    width: 90%;
    max-width: none;
  }
  .section-contact-form .contenedor .left {
    gap: 20px;
  }
  .section-contact-form .contenedor .right form div .medium {
    width: 100%;
  }
  .section-banner .contenedor h1 {
    font-size: 30px !important;
  }
  .section-contact-form .contenedor .left ul li p {
    font-size: 15px;
  }
  .section-contact-form .contenedor .left ul li svg {
    width: 25px;
    height: 25px;
  }
  .section-contact-form .contenedor .right h2 {
    font-size: 20px;
  }
  .section-contact-form .contenedor .right form .medium {
    width: 100%;
  }
  .section-contact-form .contenedor .right {
    padding: 20px;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .section-contact-form .contenedor {
    flex-direction: column;
  }
  .section-contact-form .contenedor .left, .section-contact-form .contenedor .right {
    width: 90%;
    max-width: none;
  }
  .section-contact-form .contenedor .left {
    gap: 20px;
  }
  .section-contact-form .contenedor .right form div .medium {
    width: 100%;
  }
  .section-banner .contenedor h1 {
    font-size: 30px !important;
  }
  .section-contact-form .contenedor .left ul li p {
    font-size: 15px;
  }
  .section-contact-form .contenedor .left ul li svg {
    width: 25px;
    height: 25px;
  }
  .section-contact-form .contenedor .right h2 {
    font-size: 20px;
  }
  .section-contact-form .contenedor .right form .medium {
    width: 100%;
  }
  .section-contact-form .contenedor .right {
    padding: 20px;
    margin-top: 40px;
  }
}
.main-single-post .contenido-post {
  padding-top: 42px;
}
.main-single-post .contenido-post .contenedor {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}
.main-single-post .contenido-post .contenedor .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 34px;
  min-width: 0;
}
.main-single-post .contenido-post .contenedor .left .image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.main-single-post .contenido-post .contenedor .left .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.main-single-post .contenido-post .contenedor .left .contenido {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.main-single-post .contenido-post .contenedor .left .contenido h2 {
  color: #1180b7;
  font-weight: 900;
  font-size: 35px;
  line-height: 1.2;
}
.main-single-post .contenido-post .contenedor .left .contenido .preparacion {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  .main-single-post .contenido-post .contenedor .left .contenido .preparacion {
    flex-direction: column;
  }
}
.main-single-post .contenido-post .contenedor .left .contenido .preparacion .ingredientes {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 25px;
  border-radius: 5px;
  background: #f4f4f4;
  align-self: stretch; /* ESTO es lo que hace que se estire hasta abajo */
  height: auto;
}
@media (max-width: 768px) {
  .main-single-post .contenido-post .contenedor .left .contenido .preparacion .ingredientes {
    width: 100%;
  }
}
.main-single-post .contenido-post .contenedor .left .contenido .preparacion .ingredientes p {
  color: #053f63;
  font-size: 20px;
  font-weight: 700;
}
.main-single-post .contenido-post .contenedor .left .contenido .preparacion .ingredientes ul {
  padding-left: 1.1rem;
}
.main-single-post .contenido-post .contenedor .left .contenido .preparacion .ingredientes ul li {
  color: #000;
  font-size: 15px;
  line-height: 25px;
  list-style: disc;
}
.main-single-post .contenido-post .contenedor .left .contenido .preparacion .preparacion-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 25px;
  border-radius: 5px;
  background: #053f63;
}
.main-single-post .contenido-post .contenedor .left .contenido .preparacion .preparacion-steps p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.main-single-post .contenido-post .contenedor .left .contenido .preparacion .preparacion-steps ul {
  padding-left: 1.1rem;
}
.main-single-post .contenido-post .contenedor .left .contenido .preparacion .preparacion-steps ul li {
  list-style: disc;
  color: #fff;
  font-size: 15px;
  line-height: 25px;
}
.main-single-post .contenido-post .contenedor .left .return {
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;
}
.main-single-post .contenido-post .contenedor .left .return a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #000;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}
.main-single-post .contenido-post .contenedor .right {
  width: 350px; /* Ancho fijo */
  min-width: 350px; /* Asegura que no se aplaste */
  display: flex;
  flex-direction: column;
  /* Estilos visuales del sidebar */
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* Título del Sidebar */
  /* Items de las recetas sugeridas */
}
.main-single-post .contenido-post .contenedor .right h3 {
  font-size: 20px;
  color: #083b5c;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}
.main-single-post .contenido-post .contenedor .right .post-item {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}
.main-single-post .contenido-post .contenedor .right .post-item .image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}
.main-single-post .contenido-post .contenedor .right .post-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.main-single-post .contenido-post .contenedor .right .post-item p {
  color: #333;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}
.main-single-post .contenido-post .contenedor .right .post-item:hover .image img {
  transform: scale(1.05);
}

/* 1. Estilos para el DIV CONTENEDOR */
.imagen-contenedor {
  width: 100%;
  height: 200px; /* Define una altura fija para que todas sean iguales */
  overflow: hidden; /* ¡ESTA ES LA CLAVE! Recorta lo que sobra */
  border-radius: 8px 8px 0 0; /* Opcional: bordes redondeados solo arriba */
}

/* 2. Estilos para la IMAGEN dentro del contenedor */
.imagen-contenedor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Asegura que la imagen llene el contenedor sin deformarse */
  transition: transform 0.3s ease; /* Suaviza la animación del zoom */
  display: block; /* Elimina espacios extraños debajo de la imagen */
}

/* 3. El Efecto HOVER (se aplica al contenedor principal de la tarjeta) */
.producto-item:hover .imagen-contenedor img {
  transform: scale(1.1); /* La imagen se agranda, pero NO SE SALE del contenedor */
}

.img-item-p {
  margin: auto;
  width: 100%;
  display: flex;
  margin: auto;
  overflow: hidden;
  flex-direction: column;
  padding: 20px 20px;
}

.woocommerce > img, .woocommerce-page > img {
  margin: auto;
  height: 240px;
}

.filtro-superior {
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid var(--3, #1180b7);
  background: rgba(17, 128, 183, 0.1);
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
}
.filtro-superior input {
  background: transparent;
  border: none;
  color: #053F63 !important;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}
.filtro-superior input::-moz-placeholder {
  color: #053F63 !important;
}
.filtro-superior input::placeholder {
  color: #053F63 !important;
}
.filtro-superior input:focus {
  outline: none;
}

.parte-iz-filtro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}
@media (max-width: 768px) {
  .parte-iz-filtro {
    max-width: 100%;
    gap: 15px;
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .parte-iz-filtro {
    gap: 12px;
    padding: 0 15px;
  }
}

.pagination-s {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 50px auto;
}
.pagination-s .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  transition: background 0.3s ease;
  background: #9DC3E6;
  color: #053F63;
}
.pagination-s .page-numbers.current {
  background: #053F63;
  color: #ffffff;
  pointer-events: none;
}
.pagination-s .page-numbers.prev,
.pagination-s .page-numbers.next {
  background: #B3B3B3;
  padding: 0;
}
.pagination-s .page-numbers svg {
  fill: #ffffff;
  width: 11px;
  height: auto;
  display: block;
}
.pagination-s a.page-numbers:hover {
  opacity: 0.9;
  filter: brightness(0.95);
}

/* Galería de productos (pantallas grandes por defecto) */
ss #productos-listado {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Tu configuración de columnas */
  gap: 20px;
  width: 100%;
}

.producto-item {
  border: 1px solid #e1e1e1; /* O transparent, según prefieras */
  border-radius: 10px;
  padding: 20px;
  background: white;
  transition: transform 0.3s ease, border-color 0.3s ease;
  max-width: 320px !important;
  /* --- FUSIONAMOS AMBOS CONTENEDORES AQUÍ --- */
  /* La coma (,) permite aplicar esto a cualquiera de las dos clases que encuentre */
  /* --- EL HOVER UNIFICADO --- */
}
.producto-item .image-contenedor,
.producto-item .splide_image_contenedor {
  overflow: hidden;
  border-radius: 8px;
}
.producto-item .image-contenedor img,
.producto-item .splide_image_contenedor img {
  transition: transform 0.5s ease;
  width: 100%;
  display: block;
}
.producto-item:hover {
  border-color: #b8c3cf; /* Opcional: cambio de color del borde */
  /* Si encuentra .image-contenedor O .splide_image_contenedor, aplica el zoom a la img */
}
.producto-item:hover .image-contenedor img,
.producto-item:hover .splide_image_contenedor img {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  #productos-listado {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}
@media (min-width: 768px) {
  #productos-listado {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}
/* ====== PANTALLAS CHICAS (móviles) ====== */
@media (max-width: 768px) {
  /* Aquí uso el mismo media query que ya tenías */
  .galeria-productos {
    /* 1 columna en celular */
    grid-template-columns: 1fr;
  }
  .product-single-container {
    flex-direction: column;
    height: auto;
  }
  .splide__slide.related-item {
    min-width: 250px;
  }
  .cont-main-image,
  .product-summary {
    width: 100%;
    padding: 0;
  }
  .cont-main-image {
    margin-bottom: 20px;
  }
  .main-image {
    height: auto;
  }
  .thumbnail-images {
    height: auto;
  }
  .cont-wrapper-thumbnails {
    height: auto;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .product-summary {
    gap: 20px;
  }
  .tab-nav {
    overflow-x: auto;
  }
}
.titulo-rela {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 8px;
}

.producto-titulo {
  /* Técnica para cortar texto después de X líneas */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Número máximo de líneas permitidas */
  -webkit-box-orient: vertical;
  overflow: hidden; /* Oculta el texto que sobra */
  /* Opcional: Darle una altura mínima para que todos se vean igual */
  min-height: 45px;
  margin-bottom: 10px; /* Un respiro antes del botón */
  /* Estética extra (opcional) */
  text-align: left; /* O center, según tu gusto */
  line-height: 1.2; /* Altura de línea para que se lea bien */
}

.contenedor.galeria {
  display: flex;
  flex-wrap: wrap; /* Para que en móvil se ponga uno abajo del otro */
  align-items: flex-start;
  gap: 40px; /* Espacio entre las fotos y el texto resumen */
  margin: 0 auto;
  padding: 20px;
}

/* =======================================================
   2. BLOQUE DE GALERÍA (Tu código modificado)
   Ahora ocupa el 60% del espacio, no el 100%
   ======================================================= */
.product-gallery-container {
  /* ANTES tenías max-width: 1100px. LO CAMBIAMOS: */
  width: 60%; /* Ocupa el 60% del contenedor padre */
  flex: 1 1 60%;
  min-width: 0; /* Asegura que no se encoja ni crezca de más */
  /* Configuración interna (Imagen Grande vs Miniaturas) */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin: 0; /* Quitamos el margin auto para que no se centre sola */
}

/* =======================================================
   3. BLOQUE DE TEXTO/RESUMEN (Derecha)
   ======================================================= */
/* Ajusta '.product-summary' a la clase real de tu columna de texto */
.product-summary {
  flex: 0 0 35%;
  min-width: 300px;
  padding-left: 40px;
}

/* =======================================================
   4. ESTILOS INTERNOS DE LA GALERÍA (Tu diseño original)
   Esto lo mantenemos igual, solo ajustamos tamaños relativos
   ======================================================= */
/* Imagen Principal (Izquierda dentro de la galería) */
.product-gallery-container .cont-main-image {
  flex: 1; /* Toma el espacio que dejen las miniaturas */
  height: 500px; /* Altura fija */
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  overflow: hidden;
}

.product-gallery-container .cont-main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Columna de Miniaturas (Derecha dentro de la galería) */
.product-gallery-container .cont-wrapper-thumbnails {
  width: 110px !important;
  height: 330px !important;
  flex-shrink: 0;
  overflow: hidden !important;
}

/* Ajustes del Splide - Sobrescribir altura por defecto */
.product-gallery-container .cont-wrapper-thumbnails .splide__track {
  height: 330px !important; /* Sobrescribe el calc() por defecto */
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  overflow: hidden !important;
}

.product-gallery-container .cont-wrapper-thumbnails .splide__list {
  margin: 0 !important;
  padding: 0 !important;
  height: 100% !important;
}

/* Estilo de cada foto pequeña */
.product-gallery-container .cont-wrapper-thumbnails .splide__slide {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100px !important;
  height: 100px !important;
  opacity: 0.5 !important;
  flex-shrink: 0 !important;
}

.product-gallery-container .cont-wrapper-thumbnails .splide__slide.active-slide {
  opacity: 1 !important;
}

.product-gallery-container .cont-wrapper-thumbnails .splide__slide img.thumb-img {
  opacity: 1;
  transition: opacity 0.3s ease;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Estados Hover y Activo - COMENTADO para evitar conflictos */
/* .product-gallery-container .cont-wrapper-thumbnails .splide__slide:hover img.thumb-img,
.product-gallery-container .cont-wrapper-thumbnails .splide__slide img.thumb-img.active-thumb {
    opacity: 1;
    border: 2px solid #1180B7;
} */
/* =========================================
   BASE (desktop)
   ========================================= */
.contenedor.galeria {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
}

.contenedor.galeria > .product-gallery-container {
  flex: 1 1 60%;
  min-width: 0;
}

.contenedor.galeria > .product-summary {
  flex: 0 0 40%;
  min-width: 300px;
  padding-left: 40px;
}

/* Asegura estructura de galería en desktop (miniaturas al lado) */
.product-gallery-container {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.product-gallery-container .cont-wrapper-thumbnails {
  flex: 0 0 120px !important;
  margin-top: 50px !important;
}

.product-gallery-container .cont-main-image {
  flex: 1 1 auto;
  min-width: 0;
}

/* Imagen principal (mejor control) */
.product-gallery-container .cont-main-image img,
.product-gallery-container #main-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* en Figma normalmente no se recorta */
  display: block;
}

@media (max-width: 998px) {
  .product-summary p {
    margin-top: 0 !important;
  }
}
/* =========================================
   <= 1200px
   ========================================= */
@media (max-width: 1200px) {
  .contenedor.galeria {
    gap: 24px;
  }
  .contenedor.galeria > .product-summary {
    padding-left: 20px;
    min-width: 280px;
  }
}
/* =========================================
   <= 992px (Tablet/Móvil como Figma)
   Imagen arriba, miniaturas en fila abajo, summary abajo
   ========================================= */
@media (max-width: 992px) {
  /* ✅ NO uses display:inline */
  .contenedor.galeria {
    display: flex;
    flex-direction: column;
  }
  .contenedor.galeria > .product-gallery-container {
    width: 100%;
    flex: 0 0 auto;
  }
  .contenedor.galeria > .product-summary {
    width: 100%;
    flex: 0 0 auto;
    padding-left: 0;
    margin-top: 6px;
    order: 2;
    min-width: 0;
  }
  /* Galería en columna */
  .product-gallery-container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  /* Imagen principal con proporción (similar a Figma) */
  .product-gallery-container .cont-main-image {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1/1; /* 👈 clave para que se vea “cuadrada” tipo mockup */
    max-height: 520px;
    padding: 8px;
  }
  .product-gallery-container .cont-wrapper-thumbnails {
    width: 100% !important;
    flex: 0 0 auto;
    margin-top: 0;
  }
  /* Ajustes para miniaturas horizontales */
  /* Agrega esto para alinear la lista interna a la izquierda */
  #thumbnail-slider .splide__list {
    margin-left: 0 !important; /* Elimina margen izquierdo automático */
    margin-right: auto !important; /* Empuja el espacio sobrante a la derecha */
    justify-content: center !important; /* Alinea los items al inicio (izquierda) */
  }
  #thumbnail-slider .splide__slide {
    flex: 0 0 auto;
    width: 86px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.5 !important; /* Opacidad aplicada al slide directamente */
    transition: opacity 0.3s ease;
  }
  #thumbnail-slider .splide__slide.active-slide {
    opacity: 1 !important; /* Slide activo completamente visible */
  }
  #thumbnail-slider .splide__slide img.thumb-img {
    opacity: 1; /* La imagen interna siempre visible, el slide controla la opacidad */
  }
  #thumbnail-slider .splide__track {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #thumbnail-slider .splide__slide img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
@media (max-width: 576px) {
  .product-gallery-container .cont-main-image {
    max-height: 420px;
  }
  #thumbnail-slider .splide__slide {
    width: 74px !important;
    height: 56px !important;
  }
}
.badge-nuevo {
  position: absolute;
  top: 480px;
  left: 300px;
  background-color: #008CB2; /* Azul cian corporativo */
  color: #fff;
  font-size: 1.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

@media (max-width: 1124px) {
  .post-image-card .badge-nuevo {
    position: absolute;
    top: 477px;
    left: 21px;
    background-color: #008CB2; /* Azul cian corporativo */
    color: #fff;
    font-size: 1.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
}
@media (max-width: 768px) {
  /* Etiqueta "Nuevo" */
  .post-image-card .badge-nuevo {
    position: absolute;
    top: 0%;
    left: 0px;
    background-color: #008CB2; /* Azul cian corporativo */
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .product-gallery-container .cont-main-image img {
    width: 100%;
    margin-right: 1%;
    display: inline;
  }
  /* =========================================
     1. ARREGLO DE ESTRUCTURA (LAYOUT)
     ========================================= */
  /* El contenedor principal pasa a columna (uno debajo del otro) */
  .main-single-post .contenido-post .contenedor {
    display: inline;
    flex-direction: column;
    align-items: stretch; /* Asegura que ocupen todo el ancho */
    padding: 0 15px; /* Un poco de margen para que no pegue a los bordes del celular */
  }
  /* Reseteo de las columnas Izquierda y Derecha */
  .main-single-post .contenido-post .left,
  .main-single-post .contenido-post .right {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important; /* CRUCIAL: Elimina el bloqueo de 350px que rompía el diseño */
    flex: 0 0 100%;
  }
  /* Ajuste específico de la columna Derecha (Sidebar) */
  .main-single-post .contenido-post .right {
    margin-top: 40px; /* Separación con la receta */
    order: 2; /* Se va al final */
    padding-left: 0; /* Quitamos padding extra si lo tenía */
  }
  /* =========================================
     2. ESTILO VISUAL "TARJETA" (LOOK & FEEL)
     ========================================= */
  /* Contenedor de la Imagen Principal */
  .post-image-card {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); /* Sombra suave */
    margin-bottom: 20px;
  }
  /* La Imagen en sí */
  .post-image-card .image img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /* Título de la Receta */
  h2.titulo-receta {
    color: #008CB2;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left; /* Alineado a la izquierda como en tu diseño */
    font-family: "Montserrat", sans-serif;
  }
  /* =========================================
     3. CAJA DE INGREDIENTES Y PREPARACIÓN
     ========================================= */
  /* Caja gris contenedora */
  .ingredientes-box {
    background-color: #F8F9FA; /* Gris muy claro */
    border-radius: 12px;
    padding: 25px 20px;
    margin-top: 20px;
  }
  /* Títulos dentro de la caja (ej. "Ingredientes:") */
  .ingredientes-box .titulo-seccion,
  .preparacion-steps .titulo-seccion {
    color: #003366; /* Azul oscuro */
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
  }
  /* Listas */
  .ingredientes-box ul,
  .preparacion-steps ul {
    padding-left: 20px;
    margin-bottom: 0;
  }
  .ingredientes-box ul li,
  .preparacion-steps ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .product-gallery-container .cont-main-image img, .product-gallery-container #main-image {
    width: 350px;
    margin-right: 0 !important;
  }
}
/* Ocultar el texto "Ver" y el icono en el acordeón */
.change-image-trigger span {
  display: none !important;
}

.section-anios {
  padding-block: 85px;
}
.section-anios .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.section-anios .contenedor .left {
  width: 627px;
  height: 437px;
}
.section-anios .contenedor .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-anios .contenedor .right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 684px;
}
.section-anios .contenedor .right .title h2 {
  color: #053f63;
  font-weight: 300;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}
.section-anios .contenedor .right .title h2 strong {
  font-weight: 900;
  font-weight: 700;
}
.section-anios .contenedor .right p {
  color: #121212;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  z-index: 1;
}

.section-mision-vision .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .section-mision-vision .contenedor {
    flex-direction: column; /* Se ponen uno debajo del otro */
    padding: 0 20px; /* Margen a los lados para que no toque el borde del celular */
  }
}
.section-mision-vision .contenedor .card {
  width: 100%;
  height: 450px;
  position: relative;
  /* padding: 40px;  <-- QUITADO DE AQUÍ (Lo pasamos al .texto) */
  overflow: hidden;
  cursor: pointer;
  /* 1. IMAGEN (Tus estilos originales intactos) */
  /* 2. TEXTO (Aquí está la corrección lógica) */
  /* 3. HOVER (Tus efectos originales + la corrección) */
  /* 4. OVERLAYS (Tus códigos originales) */
  /* El degradado negro suave */
  /* El fondo gris sólido de respaldo */
}
@media (max-width: 768px) {
  .section-mision-vision .contenedor .card {
    height: 350px; /* Un poco menos altas en celular para no ocupar tanta pantalla */
  }
}
.section-mision-vision .contenedor .card img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  /* Tus efectos de color originales: */
  opacity: 0.8;
  mix-blend-mode: soft-light;
  z-index: 1; /* Debe estar sobre el fondo gris pero bajo el texto */
}
.section-mision-vision .contenedor .card .texto {
  position: absolute;
  bottom: 0; /* SIEMPRE pegado al fondo */
  left: 0;
  width: 100%;
  padding: 40px; /* El padding que tenía la card, ahora está aquí */
  z-index: 3; /* Encima de todo */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Alinea el contenido hacia abajo */
  gap: 15px;
  /* Eliminamos el 'bottom: -30rem' que causaba el error */
}
@media (max-width: 768px) {
  .section-mision-vision .contenedor .card .texto {
    padding: 25px; /* Menos relleno en celular para ganar espacio */
    gap: 10px;
  }
}
.section-mision-vision .contenedor .card .texto p {
  color: #fff;
  font-size: 30px;
  font-weight: 700; /* Simplificado */
  line-height: 30px;
  margin: 0;
}
@media (max-width: 768px) {
  .section-mision-vision .contenedor .card .texto p {
    font-size: 24px;
  }
}
.section-mision-vision .contenedor .card .texto span {
  /* Lógica del acordeón para corregir las distancias: */
  max-height: 0; /* Oculto por altura */
  opacity: 0; /* Oculto por transparencia */
  overflow: hidden;
  transition: all 0.5s ease;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
@media (max-width: 768px) {
  .section-mision-vision .contenedor .card .texto span {
    font-size: 14px;
  }
}
.section-mision-vision .contenedor .card:hover .texto {
  /* Ya no movemos el bottom */
}
.section-mision-vision .contenedor .card:hover .texto span {
  max-height: 300px; /* Se expande hacia arriba empujando el título */
  opacity: 1;
}
.section-mision-vision .contenedor .card:hover img {
  /* Tu efecto original: se hace casi invisible y hace zoom */
  opacity: 0.2;
  transform: scale(1.1);
}
.section-mision-vision .contenedor .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* Tus valores exactos: */
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  mix-blend-mode: soft-light;
  z-index: 2; /* Encima de la imagen */
  pointer-events: none;
}
.section-mision-vision .contenedor .card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* Tu color exacto: */
  background: #6f6f6e;
  z-index: 0; /* Al fondo de todo */
}

@media (max-width: 768px) {
  .section-timeline .contenedor .timeline.swiper .swiper-slide p {
    font-size: 20px;
    font-weight: 400;
    margin: top 50px;
  }
}
.section-timeline {
  background: rgba(179, 179, 179, 0.2);
  padding-top: 178px;
}
.section-timeline .contenedor h2 {
  color: #053f63;
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  position: relative;
}
.section-timeline .contenedor h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 120px;
  height: 2px;
  background-color: #053f63;
  transform: translateX(-50%);
}
.section-timeline .contenedor .timeline.swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.section-timeline .contenedor .timeline.swiper .swiper-slide .image {
  width: 295px;
  height: 295px;
  border-radius: 50%;
  overflow: hidden;
}
.section-timeline .contenedor .timeline.swiper .swiper-slide .year {
  color: #1180b7;
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  margin-top: 50px;
  border-radius: 10px;
  background: #fff;
  padding: 10px 15px;
}
.section-timeline .contenedor .timeline.swiper .swiper-slide p {
  display: flex;
  align-items: center;
  color: #6f6f6e;
  text-align: center;
  font-weight: 300;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  min-height: 295px;
  position: relative;
  margin-top: 63px;
}
.section-timeline .contenedor .timeline.swiper .swiper-slide p::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 115px;
  background-color: #352d2d;
  top: -53px;
}
.section-timeline .contenedor .timeline.swiper .swiper-slide:nth-child(even) {
  flex-direction: column-reverse;
}
.section-timeline .contenedor .timeline.swiper .swiper-slide:nth-child(even) .image {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
  border-top: 4px solid #1180b7;
  padding-top: 15px;
  margin-top: 25px;
}
.section-timeline .contenedor .timeline.swiper .swiper-slide:nth-child(even) p {
  margin-top: 0;
  margin-bottom: 35px;
  padding: top 10px;
}
.section-timeline .contenedor .timeline.swiper .swiper-slide:nth-child(even) p::before {
  top: auto;
  bottom: -35px;
}

.video-nosotros {
  position: relative;
  padding: 0;
  margin: 85px auto;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-nosotros video {
  width: 100%;
  height: 100%;
  max-width: 1100px;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .video-nosotros {
    height: 400px;
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .video-nosotros {
    height: 300px;
    padding: 40px 0;
  }
  .video-nosotros video {
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .section-mision-vision .contenedor {
    flex-direction: column;
  }
  .section-mision-vision .contenedor .card .texto span {
    font-size: 11px;
  }
  .timeline .swiper-button-prev, .timeline .swiper-button-next {
    display: none;
  }
  .section-anios .contenedor {
    flex-direction: column;
    gap: 40px;
  }
  .section-anios .contenedor .left, .section-anios .contenedor .right {
    width: 90%;
    height: auto;
  }
  .section-anios .contenedor .left {
    order: 2;
  }
  .section-anios .contenedor .right p {
    font-size: 15px;
  }
}
.section-catalogo {
  padding-top: 40px;
  position: relative;
}
.section-catalogo .contenedor h2 {
  color: #053f63;
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  position: relative;
}
.section-catalogo .contenedor h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 120px;
  height: 2px;
  background-color: #053f63;
  transform: translateX(-50%);
}

.catalogo-item span {
  color: #053f63;
  text-align: center;
  font-weight: 300;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 25px;
  transition: all 0.5s ease;
  padding: 12px 20px;
}
.catalogo-item span a {
  position: relative;
  z-index: 1;
}
.catalogo-item span::before {
  content: "";
  border-radius: 5px;
  position: absolute;
  inset: 0;
  background: transparent;
  transition: transform 0.5s ease;
  transform: scaleX(1);
  border: 1px solid #053f63;
  z-index: 0;
}
.catalogo-item span:hover::before {
  transform: scaleX(-1);
  background: #053f63;
  border: 1px solid #053f63;
}
.catalogo-item span::before {
  z-index: -1;
}
.catalogo-item span:hover {
  color: white;
}

/* === POPUP OVERLAY === */
.popup-overlay {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: rgba(59, 59, 59, 0.5137254902);
  overflow: hidden;
  z-index: 9999;
  transition: height 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 20px 20px 0 0;
}

/* Cuando el popup está activo */
.popup-overlay.activo {
  height: 100vh !important;
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
}

.popup-fondo {
  height: 80vh !important;
  width: 100vw;
  background-color: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* === POPUP CONTENT === */
.popup-content {
  height: 90% !important;
  max-width: 1300px;
  width: 90vw;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  margin: auto auto 0 auto;
}

/* Header con título y botón cerrar */
.popup-header {
  background-color: #f5f5f5;
  padding: 12px 16px;
  font-weight: bold;
  font-size: 16px;
  /* Ya no necesitamos display flex ni justify-content */
}

.cerrar-popup {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Contenedor del PDF */
.popup-body {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding-bottom: 90px;
}

.popup-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Botón cerrar (X) fijo en la esquina inferior derecha */
.cerrar-popup {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 67px;
  height: 67px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cerrar-popup svg {
  width: 60px;
  height: 60px;
  fill: #333;
  transition: fill 0.3s ease;
}
.cerrar-popup:hover svg {
  fill: #d33;
}

.catalogos-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
  margin-bottom: 120px;
  gap: 20px;
}

.catalogo-item {
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.imagen-catalogo {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.imagen-catalogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}

.catalogo-item:hover .imagen-catalogo img {
  transform: scale(1.05);
}

.filtro-galeria {
  display: inline-flex;
  align-items: start;
  gap: 49px;
  margin-bottom: 40px;
  margin-top: 100px;
  padding-bottom: 5px;
  border-bottom: 1px solid #053F63;
  width: 100%;
}

.filter-button {
  color: #B3B3B3;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.filtro-galeria .filter-button.active {
  color: #000;
  border-color: #0073aa;
}

.galeria-categoria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  grid-auto-flow: dense;
  margin-bottom: 40px;
}
.galeria-categoria .item-galeria {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
}
.galeria-categoria .item-galeria .galeria-imagen,
.galeria-categoria .item-galeria .galeria-video {
  width: 100%;
  height: 100%;
}
.galeria-categoria .item-galeria .galeria-imagen img,
.galeria-categoria .item-galeria .galeria-imagen video,
.galeria-categoria .item-galeria .galeria-video img,
.galeria-categoria .item-galeria .galeria-video video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.galeria-categoria .item-galeria.imagen {
  grid-column: span 1;
  grid-row: span 1;
}
.galeria-categoria .item-galeria.video {
  grid-column: span 2;
  grid-row: span 1;
}
@media (max-width: 992px) {
  .galeria-categoria {
    grid-template-columns: repeat(2, 1fr);
  }
  .galeria-categoria .item-galeria.video {
    grid-column: span 2;
  }
  .galeria-categoria .item-galeria.imagen {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .galeria-categoria {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 15px;
  }
  .galeria-categoria .item-galeria {
    height: 250px;
  }
  .galeria-categoria .item-galeria.video, .galeria-categoria .item-galeria.imagen {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 480px) {
  .galeria-categoria {
    gap: 10px;
  }
  .galeria-categoria .item-galeria {
    height: 200px;
  }
}

.galeria-paginador {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-button {
  background-color: #a7d4ec;
  color: #0a4c6a;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 40px;
  text-align: center;
}

.page-button:hover:not(.disabled):not(.active) {
  background-color: #90c4e0;
}

.page-button.active {
  background-color: #003b5c;
  color: #fff;
}

.page-button.disabled {
  background-color: #ccc;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

.woocommerce .star-rating {
  float: none !important;
  display: flex;
  gap: 10px;
}

.star-rating-custom .star {
  font-size: 32px;
  color: #dbdbdb; /* gris para estrellas vacías */
  margin-right: 3px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.star-rating-custom .star.filled {
  color: #ffab16; /* dorado para estrellas llenas */
}

.comment .comment-author img {
  border-radius: 50% !important; /* lo hace circular */
  width: 16px; /* tamaño ancho */
  height: 16px; /* tamaño alto */
  margin-right: 10px; /* espacio a la derecha para separar del texto */
}

.comment-author .fn {
  color: #1180B7;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
}

@media (max-width: 768px) {
  .section-catalogo .contenedor h2 {
    font-size: 30px;
  }
  .catalogos-grid {
    flex-direction: column;
    align-items: center;
  }
}
.contenedor.section-products {
  padding: 60px 0;
}

.productos-grid {
  display: flex;
  gap: 80px;
}

.producto-card {
  overflow: hidden;
  transition: transform 0.3s ease;
  width: 100%;
}
.producto-card.con-detalles {
  width: calc(20% - 16px);
}
.producto-card.con-detalles .contenido-producto {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: start;
  gap: 15px;
}
.producto-card.con-detalles .contenido-producto .descripcion-corta {
  font-size: 20px;
  color: #555;
  margin-top: 5px;
}
.producto-card.con-detalles .contenido-producto .boton-info {
  margin-top: 10px;
  display: inline-block;
  align-items: center;
  padding: 15px 28px;
  background-color: #1180B7;
  color: white;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  width: -moz-max-content;
  width: max-content;
}
.producto-card.con-detalles .contenido-producto .boton-info:hover {
  background-color: #05527f;
}
.producto-card.solo-basico {
  text-align: start;
}
.producto-card.solo-basico .contenido-producto {
  padding: 12px;
}
.producto-card.solo-basico .contenido-producto .titulo {
  color: #B3B3B3;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.bloque-categoria.juegos,
.bloque-categoria.complementos {
  background: rgba(17, 128, 183, 0.0666666667);
}

.bloque-categoria.sale .productos-grid {
  gap: 20px;
}

.cabecera-categoria {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.cabecera-categoria h2 {
  color: #1180B7;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.cabecera-categoria .ver-mas {
  color: #053f63;
  text-align: center;
  font-weight: 400;
  font-size: 25px;
  font-style: normal;
  line-height: normal;
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 25px;
  transition: all 0.5s ease;
  padding: 12px 20px;
}
.cabecera-categoria .ver-mas a {
  position: relative;
  z-index: 1;
}
.cabecera-categoria .ver-mas::before {
  content: "";
  border-radius: 5px;
  position: absolute;
  inset: 0;
  background: transparent;
  transition: transform 0.5s ease;
  transform: scaleX(1);
  border: 1px solid #053f63;
  z-index: 0;
}
.cabecera-categoria .ver-mas:hover::before {
  transform: scaleX(-1);
  background: #053f63;
  border: 1px solid #053f63;
}
.cabecera-categoria .ver-mas::before {
  z-index: -1;
}
.cabecera-categoria .ver-mas:hover {
  color: white;
}

.imagen-producto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.imagen-producto img:hover {
  transform: translateY(-4px);
}

.bloque-categoria.sale .contenido-producto .titulo {
  color: #6F6F6E;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px; /* 100% */
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bloque-categoria.sale .descripcion-corta {
  color: #053F63 !important;
  font-size: 20px;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 30px !important; /* 150% */
}

.producto-card.con-detalles {
  border: 1px solid transparent;
  transition: border 0.3s ease;
}
.producto-card.con-detalles:hover {
  border: 1px solid #d1d1d1;
}

.bloque-categoria.sale .producto-card.con-detalles {
  width: calc(25% - 20px) !important;
}

.productos-mas {
  margin-bottom: 140px;
}

.contenido-mas-productos {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 120px 0;
}
.contenido-mas-productos h3 {
  color: #fff;
  font-size: 35px;
  font-weight: 400;
  z-index: 2;
}
.contenido-mas-productos h3 strong {
  font-weight: 700;
  font-size: inherit;
}
.contenido-mas-productos .ver-mas {
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 25px;
  font-style: normal;
  line-height: normal;
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 25px;
  transition: all 0.5s ease;
  padding: 12px 20px;
}
.contenido-mas-productos .ver-mas a {
  position: relative;
  z-index: 1;
}
.contenido-mas-productos .ver-mas::before {
  content: "";
  border-radius: 5px;
  position: absolute;
  inset: 0;
  background: transparent;
  transition: transform 0.5s ease;
  transform: scaleX(1);
  border: 1px solid white;
  z-index: 0;
}
.contenido-mas-productos .ver-mas:hover::before {
  transform: scaleX(-1);
  background: #053f63;
  border: 1px solid #053f63;
}
.contenido-mas-productos .ver-mas::before {
  z-index: -1;
}
.contenido-mas-productos .ver-mas:hover {
  color: white;
}

.woocommerce img, .woocommerce-page img {
  margin: auto;
  transition: transform 0.3s ease; /* Necesario */
}

.woocommerce img:hover,
.woocommerce-page img:hover {
  transform: scale(1.06); /* Efecto hover */
}

.logged-in-as {
  display: none;
}

#review_form .review-title {
  color: #053F63;
  font-family: "Montserrat";
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 100% */
}

/* CONTENEDOR PRINCIPAL */
/* --- TU ESTILO BASE (Para Laptops normales) --- */
.sn-section-wrapper {
  background-color: #f0f5f9;
  padding: 60px 100px;
  width: 100%;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50%;
  margin-right: -50%;
}
.sn-section-wrapper .galeria-productos .splide__pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px; /* ajusta: 0, -10, -30 */
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin-bottom: -20px;
}
.sn-section-wrapper .galeria-productos .splide__pagination li {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
}
.sn-section-wrapper .galeria-productos .splide__pagination__page {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid #053F63;
  opacity: 1;
  transform: none !important; /* evita el scale default */
  transition: all 0.2s ease;
}
.sn-section-wrapper .galeria-productos .splide__pagination__page.is-active {
  background: #053F63;
  border-color: #053F63;
}

.sn-section-wrapper-single {
  background-color: #f0f5f9;
  padding: 100px 100px;
  width: 99vw;
  position: relative;
  left: 40%; /* Corregí 49% a 50% para que quede perfectamente centrado */
  right: 50%;
  margin-left: -40vw;
  margin-right: -50vw;
}
.sn-section-wrapper-single .galeria-productos .splide__pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px; /* ajusta: 0, -10, -30 */
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin-bottom: -20px;
}
.sn-section-wrapper-single .galeria-productos .splide__pagination li {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
}
.sn-section-wrapper-single .galeria-productos .splide__pagination__page {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid #053F63;
  opacity: 1;
  transform: none !important; /* evita el scale default */
  transition: all 0.2s ease;
}
.sn-section-wrapper-single .galeria-productos .splide__pagination__page.is-active {
  background: #053F63;
  border-color: #053F63;
}

/* =========================================
   PANTALLAS GRANDES (Full HD - 1440px+)
   ========================================= */
/* CONSOLIDADO AL FINAL DEL ARCHIVO */
/* CONSOLIDADO AL FINAL DEL ARCHIVO */
/* CONSOLIDADO AL FINAL DEL ARCHIVO */
/* Consolidado al final del archivo */
.product-item .image-wrapper {
  height: 150px; /* Altura FIJA: ajústalo al tamaño de tu olla más alta */
  width: 100%;
  display: flex; /* Activa Flexbox para poder centrar */
  align-items: center; /* Centra la imagen VERTICALMENTE */
  justify-content: center; /* Centra la imagen HORIZONTALMENTE */
  overflow: hidden; /* Evita que nada se salga */
}

/* CONTENEDOR GENERAL DEL FILTRO */
.parte-iz-filtro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 350px;
}

/* BUSCADOR */
.filtro-superior {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #1180B7;
  background: #E7F3FA;
}

.filtro-superior svg {
  flex-shrink: 0;
}

#buscador-productos {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
}

/* BOTÓN "FILTRO" (para móviles si quieres) */
.btn-filtro {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #1180B7;
  background: #fff;
  color: #053F63;
  font-weight: 600;
  cursor: pointer;
}

/* CAJA DEL FILTRO */
.filtro-subcategorias {
  position: relative;
  width: 100%;
  padding: 14px 16px 12px;
  border-radius: 10px;
  border: 1px solid #1180B7;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* BOTÓN X */
.btn-close-f {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

/* TÍTULO "FILTRO" */
.filtro-tit {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #053F63;
}

.filtro-tit strong {
  font-weight: 700;
}

/* LISTA DE CHECKBOXES */
.filtro-lista {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filtro-lista li {
  margin-bottom: 4px;
}

.filtro-lista label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #053F63;
}

.filtro-lista input[type=checkbox] {
  cursor: pointer;
}

/* CONSOLIDADO AL FINAL DEL ARCHIVO */
.filtro-galeria {
  display: flex;
  margin-top: 100px;
  gap: 20px;
}

.filtro-subcategorias {
  height: -moz-fit-content;
  height: fit-content;
  max-height: 70px;
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid var(--3, #1180B7);
  background: rgba(17, 128, 183, 0.1);
  min-width: 250px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.filtro-subcategorias svg {
  transition: all 0.3s ease;
}

.filtro-subcategorias.active {
  max-height: 800px;
}
.filtro-subcategorias.active svg {
  transform: rotate(-180deg);
}

.filtro-subcategorias.active2 {
  max-height: 800px;
  display: block !important;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 50%;
  overflow: visible;
  transform: translateX(-50%);
  background: #fff;
  z-index: 9999;
}

.filtro-subcategorias strong {
  color: #053F63;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  border-bottom: 3px solid #053F63;
}

.filtro-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 20px;
}

.filtro-lista li {
  margin-bottom: 20px;
}

.filtro-lista label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #6F6F6E;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.titulo-rela {
  color: #053f63;
  text-align: center;
  font-weight: 900;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
}

.titulo-rela::after {
  content: "";
  width: 150px;
  height: 2px;
  background: #053f63;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.filtro-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 4px solid #252222; /* Borde gris grueso */
  border-radius: 2px; /* Borde ligeramente redondeado */
  cursor: pointer;
  /* Para navegadores modernos que soportan accent-color */
  accent-color: #0073e6;
}

/* Estilo específico para el item "Todos" */
.item-todos span {
  color: #0073e6; /* Azul similar a la imagen */
  font-weight: 700; /* Negrita */
}

.item-todos .filtro-checkbox {
  border-color: #0073e6; /* Borde azul para el checkbox de Todos */
}

/* Usamos el ID para encapsular todo y proteger el slider externo */
#productos-listado {
  /* --- GRID PRINCIPAL --- */
}
#productos-listado.galeria-productos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0;
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
  /* Media queries consolidados al final del archivo */
}

.producto-categoria {
  color: #6F6F6E;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 100% */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 20px;
}

.producto-titulo {
  color: #053F63;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 150% */
}

.filtro-tit {
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  width: 100%;
}

.btn-close-f {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.descripcion-corta {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #00396b;
  line-height: 1.4;
  margin-top: 10px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 45px;
}

/* CONTENEDOR: filtro (izq) + productos (der) */
.woocommerce-page .contenedor.filtro-galeria {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

/* Columna izquierda (filtro) en desktop */
.woocommerce-page .contenedor.filtro-galeria .parte-iz-filtro {
  width: 280px;
  flex-shrink: 0;
}

/* Columna derecha (galería) */
.woocommerce-page .contenedor.filtro-galeria > div:last-child {
  flex: 1;
  min-width: 0;
}

/* Consolidado al final del archivo */
/* Ejemplo de borde o opacidad para la miniatura seleccionada */
/* .thumb-img {
    transition: all 0.3s ease;
    opacity: 0.5;
}

.thumb-img.active-thumb, 
.thumb-img:hover {
    opacity: 1;
} */
/* El contenedor de la imagen */
.image-marco-post {
  height: 245px; /* Mantén tu altura fija */
  width: 100%; /* Asegura que ocupe el ancho disponible */
  /* Agrega esto para centrar la imagen perfectamente en el cuadro */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Por si alguna imagen es gigante */
  background-color: #fff; /* Opcional: para que se vea limpio si la imagen es png */
}

/* La imagen dentro del contenedor */
.image-marco-post img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* LA CLAVE: Ajusta la imagen sin cortarla ni estirarla */
  align-items: center;
}

.galeria-productos {
  position: relative;
}
.galeria-productos .splide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 100px);
  height: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.galeria-productos .splide__arrow {
  background: #a0a0a0;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.galeria-productos .splide__arrow.splide__arrow--prev, .galeria-productos .splide__arrow.splide__arrow--next {
  transform: none !important;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}
.galeria-productos .splide__arrow svg {
  width: 24px;
  height: auto;
}
.galeria-productos .splide__arrow svg path {
  fill: rgb(252, 247, 247);
  transition: fill 0.3s ease;
}
.galeria-productos .splide__arrow:hover {
  background: #0a4e93;
  transform: scale(1.1);
}
.galeria-productos .splide__arrow:hover svg path {
  fill: #ffffff;
}

/* Contenedor principal de la ficha */
.ficha-tecnica-container {
  width: 100%;
  font-family: inherit; /* Usa la fuente de tu tema */
}

/* Estilo de cada fila */
.ficha-row {
  display: flex;
  border-bottom: 1px solid #bce0fd; /* El borde azul claro */
  padding: 15px 0;
  align-items: flex-start; /* Alinea texto arriba si hay varias líneas */
}

/* La última fila no necesita borde abajo */
.ficha-row:last-child {
  border-bottom: none; /* O puedes quitarlo con 'none' */
}

/* Columna Izquierda (Etiquetas azules) */
.ficha-label {
  width: 30%; /* Ocupa el 30% del ancho */
  min-width: 120px;
  color: #006699; /* El color azul oscuro de tu imagen */
  font-weight: 700; /* Negrita */
  font-size: 16px;
}

/* Columna Derecha (Valores grises) */
.ficha-value {
  width: 70%; /* Ocupa el resto */
  color: #777; /* Color gris del texto */
  font-size: 15px;
  line-height: 1.6; /* Buen espaciado entre líneas de texto */
}

/* =============================
   Responsive para .section-beneficios .contenedor
   ============================= */
.section-beneficios .contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
}

@media (max-width: 1200px) {
  .section-beneficios .contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .section-beneficios .contenedor .card,
  .section-beneficios .contenedor .beneficio-card {
    width: 100%;
    max-width: 400px;
    margin: 0;
  }
}
@media (max-width: 900px) {
  .section-beneficios .contenedor {
    max-width: 100%;
    padding: 40px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .section-beneficios .contenedor .card,
  .section-beneficios .contenedor .beneficio-card {
    max-width: 340px;
    min-width: 260px;
    flex: 1 1 260px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .section-beneficios .contenedor {
    padding: 25px 5px;
  }
}
/* =============================
   Responsive para .section-beneficios .contenedor .imagen-beneficio .container-imagen
   ============================= */
@media (max-width: 1200px) {
  .section-beneficios .contenedor .imagen-beneficio .container-imagen {
    width: 100%;
    display: contents;
  }
}
@media (max-width: 900px) {
  .section-beneficios .contenedor .imagen-beneficio .container-imagen {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 600px) {
  .section-beneficios .contenedor .imagen-beneficio .container-imagen {
    width: 140px;
    height: 140px;
  }
}
/* =============================
   Responsive para .contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios
   ============================= */
.contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 1200px) {
  .contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
  }
  .contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .imagen-beneficio {
    order: 0;
    margin-right: 24px;
  }
  .contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .card,
  .contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios .beneficio-card {
    order: 1;
    margin: 0;
  }
}
@media (max-width: 900px) {
  .contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .contenedor-single-oportunidad .section-beneficios-adicionales .contenedor .listado-beneficios {
    gap: 12px;
    padding: 0 5px;
  }
}
/* =============================
   Responsive para .main-blog .section-listado-categorias .contenedor .posts-other-categories
   ============================= */
.main-blog .section-listado-categorias .contenedor .posts-other-categories {
  gap: 32px;
}

@media (max-width: 1200px) {
  .main-blog .section-listado-categorias .contenedor .posts-other-categories .post {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .main-blog .section-listado-categorias .contenedor .posts-other-categories .post img {
    margin-bottom: 18px;
    max-width: 644px;
    display: block;
  }
}
@media (max-width: 1200px) {
  .main-blog .section-listado-categorias .contenedor .posts-other-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .main-blog .section-listado-categorias .contenedor .posts-other-categories {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .main-blog .section-listado-categorias .contenedor .posts-other-categories {
    gap: 12px;
    padding: 0 5px;
  }
}
/* =============================
   Responsive para .main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text
   ============================= */
.main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text {
  box-sizing: border-box;
  padding: 0 16px;
  max-width: 480px;
  margin: 0 auto;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 0;
}

@media (max-width: 1200px) {
  .main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text {
    width: 100%;
    max-width: 975px;
    min-height: 110px;
    font-size: 1rem;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text {
    max-width: 380px;
    min-height: 100px;
    font-size: 0.97rem;
    padding: 0 6px;
  }
}
@media (max-width: 600px) {
  .main-blog .section-listado-categorias .contenedor .posts-other-categories .post .text {
    max-width: 98vw;
    min-height: 90px;
    font-size: 0.95rem;
    padding: 0 2vw;
  }
}
/* =========================================
   MEDIA QUERIES CONSOLIDADOS
   ========================================= */
/* TABLET LARGE (≤1200px) */
@media (max-width: 1200px) {
  .sn-section-wrapper {
    padding: 50px 60px;
    width: 100%;
  }
  .sn-section-wrapper-single {
    padding: 70px 60px;
  }
  #productos-listado.galeria-productos {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 25px;
    margin-left: 115px;
  }
  .woocommerce-page .contenedor.filtro-galeria .parte-iz-filtro {
    width: 100%;
    max-width: 250px;
    margin-left: 30px;
  }
}
/* TABLET (≤1024px) */
@media (max-width: 1024px) {
  .sn-section-wrapper {
    padding: 50px 40px;
  }
  .sn-section-wrapper-single {
    width: 100%;
  }
  .btn-solicitar {
    white-space: nowrap;
  }
  .titulo-rela {
    gap: 20px;
  }
  #productos-listado.galeria-productos {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    padding: 0;
    gap: 25px;
  }
  .woocommerce-page .contenedor.filtro-galeria .parte-iz-filtro {
    width: 100%;
  }
}
/* MOBILE (≤768px) */
@media (max-width: 768px) {
  /* Secciones principales */
  .sn-section-wrapper {
    width: 100%;
    padding: 40px 20px;
  }
  .sn-section-wrapper .galeria-productos.splide {
    padding-bottom: 54px;
  }
  .sn-section-wrapper .galeria-productos .splide__pagination {
    bottom: 6px;
    margin-bottom: 20px;
    gap: 11px;
    flex-wrap: nowrap;
    max-width: calc(100% - 24px);
    overflow-x: auto;
    padding: 0 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sn-section-wrapper .galeria-productos .splide__pagination::-webkit-scrollbar {
    display: none;
  }
  .sn-section-wrapper .galeria-productos .splide__pagination__page {
    width: 16px;
    height: 16px;
    border-width: 1px;
  }
  .sn-section-wrapper-single {
    padding: 30px 20px;
    width: 100%;
    margin-bottom: 10%;
  }
  .sn-section-wrapper-single .galeria-productos.splide {
    padding-bottom: 54px;
  }
  .sn-section-wrapper-single .galeria-productos .splide__pagination {
    bottom: 6px;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: calc(100% - 24px);
    overflow-x: auto;
    padding: 0 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sn-section-wrapper-single .galeria-productos .splide__pagination::-webkit-scrollbar {
    display: none;
  }
  .sn-section-wrapper-single .galeria-productos .splide__pagination__page {
    width: 16px;
    height: 16px;
    border-width: 1px;
    margin-bottom: 50px;
  }
  /* Títulos y botones */
  .titulo-rela {
    font-weight: 700 !important;
    font-size: 30px !important;
    gap: 20px;
  }
  .btn-solicitar {
    padding: 20px 20px;
    white-space: nowrap;
  }
  /* Grid de productos */
  .productos-grid {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .cabecera-categoria h2 {
    font-size: 20px;
  }
  .cabecera-categoria .ver-mas {
    font-size: 15px;
  }
  .bloque-categoria.sale .producto-card.con-detalles {
    width: 100% !important;
  }
  .contenido-mas-productos h3 {
    font-size: 25px;
  }
  .contenido-mas-productos .ver-mas {
    font-size: 18px;
  }
  .filtro-tit svg {
    display: none;
  }
  .tab-link {
    font-size: 20px !important;
  }
  .comment-author .fn {
    font-size: 16px !important;
  }
  /* Filtros */
  .btn-filtro {
    display: flex;
  }
  .filtro-subcategorias {
    margin-top: 8px;
  }
  /* Galería de productos */
  #productos-listado.galeria-productos {
    padding: 0 10px;
    gap: 20px;
    justify-items: center;
    max-width: 600px;
    margin: 0 auto;
  }
  /* WooCommerce - Filtro y galería */
  .woocommerce-page .contenedor.filtro-galeria {
    flex-direction: column;
    gap: 14px;
    padding: 0 12px;
  }
  .woocommerce-page .contenedor.filtro-galeria .parte-iz-filtro {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .woocommerce-page .contenedor.filtro-galeria > div:last-child {
    width: 100%;
  }
  .woocommerce-page #buscador-productos {
    flex: 1;
    min-width: 0;
    height: 40px;
    padding: 0 0px;
    border-radius: 8px;
    width: 100%;
  }
  .woocommerce-page .parte-iz-filtro select,
  .woocommerce-page .parte-iz-filtro button {
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    white-space: nowrap;
  }
  #productos-listado.galeria-productos > * {
    width: 100%;
  }
}
/* MOBILE SMALL (≤600px) */
@media (max-width: 600px) {
  .ficha-row {
    flex-direction: column;
  }
  .ficha-label,
  .ficha-value {
    width: 100%;
  }
  .ficha-label {
    margin-bottom: 5px;
  }
}
/* MOBILE EXTRA SMALL (≤480px) */
@media (max-width: 480px) {
  #productos-listado.galeria-productos {
    grid-template-columns: 1fr;
    padding: 0 5px;
    gap: 15px;
    justify-items: center;
    max-width: 500px;
    margin: 0 auto;
  }
}
/* =============================
   Breakpoints adicionales para .main-blog .section-listado-categorias .contenedor .listado-categorias
   ============================= */
@media (max-width: 1400px) {
  .main-blog .section-listado-categorias .contenedor .listado-categorias {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
@media (max-width: 1200px) {
  .main-blog .section-listado-categorias .contenedor .listado-categorias {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .main-blog .section-listado-categorias .contenedor .listado-categorias {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .main-blog .section-listado-categorias .contenedor .listado-categorias > * {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 240px;
  }
}
@media (max-width: 600px) {
  .main-blog .section-listado-categorias .contenedor .listado-categorias {
    gap: 12px;
    padding: 0 5px;
  }
}/*# sourceMappingURL=app.css.map */