.elementor-1589 .elementor-element.elementor-element-8cfedb6{--display:flex;}.elementor-1589 .elementor-element.elementor-element-11947bc{--display:grid;--e-con-grid-template-columns:repeat(3, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;--justify-items:center;--align-items:center;--margin-top:60px;--margin-bottom:100px;--margin-left:0px;--margin-right:0px;}@media(max-width:1024px){.elementor-1589 .elementor-element.elementor-element-11947bc{--grid-auto-flow:row;}}@media(min-width:768px){.elementor-1589 .elementor-element.elementor-element-11947bc{--content-width:607px;}}@media(max-width:767px){.elementor-1589 .elementor-element.elementor-element-11947bc{--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for html, class: .elementor-element-38f1026 *//* ====== CATÁLOGO ====== */
.catalogo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 20px auto;
}

.producto {
  background: #f1f1f1;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.producto:hover {
  transform: translateY(-5px);
}

.producto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #ccc;
}

.producto h3 {
  font-size: 15px;
  margin: 10px 0;
  color: #333;
}

/* ====== BOTÓN ====== */
.btn {
  display: inline-block;
  background: #0d2c26;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ccff00;
  color: #000;
}

/* ====== PAGINACIÓN ====== */
.paginacion {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.paginacion a {
  display: block;
  padding: 8px 12px;
  background: #f1f1f1;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.paginacion a:hover {
  background: #0d2c26;
  color: #fff;
}

.paginacion a.activo {
  background: #0d2c26;
  color: #fff;
  font-weight: bold;
}
.img-box {
  width: 100%;
  height: 260px;
  background: #ccc;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====== BUSCADOR ====== */
.buscador {
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
}

.buscador input {
  width: 1000px;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 25px;
  outline: none;
  transition: border-color 0.3s ease;
}

.buscador input:focus {
  border-color: #0d2c26;
}

.logos-section-partners {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.logos-container-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-partner {
  max-width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-partner:hover {
  transform: scale(1.1);
}

.footer {
  width: 100%;
  height: 80px;
  background: #ccff00;
  border-radius: 80px 80px 0px 0px;
  margin-top: 20px;
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: #ccff00;
  cursor: pointer;
  z-index: 1000;
  margin: 0 auto;
  text-align: center;
}

/*RESPONSIVE*/
/* ====== RESPONSIVE TABLETS (≤1024px) ====== */
@media (max-width: 1300px) {
  body {
    max-width: 100%;
    text-align: center;
  }
  
  header {
    height: 300px;
    border-radius: 0;
  }
  
  .header {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 15px;
    justify-content: center;
    align-items: center;
  }
  
  .logo {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
  }
  
  .menu {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
    margin: 0 auto;
  }
  
  .menu-item {
    margin: 10px 20px;
    font-size: 18px; 
  }
  
  .catalogo {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 80%;
    margin: 20px auto;
  }
  
  .producto img {
    height: 100%;
  }
  
  .buscador input {
    width: 40%;
    font-size: 16px;
    padding: 10px 15px;
  }

  .logos-container-partners {
    gap: 30px;
  }

  .logo-partner {
    max-width: 150px;
  }

  /* Footer */
  .footer {
    height: 60px;
    border-radius: 40px 40px 0 0;
  }
}

/* ========== RESPONSIVE ≤730px ========== */
@media (max-width: 730px) {
  header {
    height: auto;
    min-height: 150px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 15px;
  }

  .header {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
    margin-top: 20px;
  }

  .logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px auto;
  }

  .menu-toggle {
    display: block;
    font-size: 30px;
    background: none;
    border: none;
    color: #ccff00;
    cursor: pointer;
    z-index: 1000;
    margin: 0 auto 15px auto;
    text-align: center;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: #0d2c26;
    border-radius: 15px;
    padding: 20px 0;
    margin: 0 auto;
  }

  .menu.activo {
    display: flex;
  }

  .menu-item {
    margin: 12px 0;
    font-size: 18px;
  }

  .catalogo {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 15px;
  }

  .producto img {
    height: 100%;
  }

  .buscador {
    margin: 20px auto;
    padding: 0 15px;
  }

  .buscador input {
    width: 40%;
    font-size: 16px;
  }

  .logos-container-partners {
    gap: 30px;
  }

  .logo-partner {
    max-width: 140px;
  }

  .footer {
    height: 60px;
    border-radius: 60px 60px 0 0;
  }
}

/* ========== RESPONSIVE ≤460px ========== */
@media (max-width: 460px) {
  header {
    height: auto;
    min-height: 120px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 10px;
  }

  .header {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
    margin-top: 15px;
  }

  .logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px auto;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    margin: 0 auto 10px auto;
  }

  .menu {
    width: 100%;
    padding: 15px 0;
  }

  .menu-item {
    margin: 10px 0;
    font-size: 16px;
  }

  .catalogo {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }

  .producto img {
    height: 100%;
    height: auto; 
  }

  .buscador {
    margin: 15px auto;
    padding: 0 10px;
  }

  .buscador input {
    width: 50%;
    font-size: 14px;
  }

  .logos-container-partners {
    flex-direction: column;
    gap: 20px;
  }

  .logo-partner {
    max-width: 120px;
    margin: 0 auto;
  }

  .footer {
    height: auto;
    padding: 15px 0;
    border-radius: 40px 40px 0 0;
    text-align: center;
  }
}/* End custom CSS */