.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Raleway";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.clase .elementor-icon {
  color: #25D366; /* Color original de WhatsApp */
  transition: all 0.3s ease;
  animation: neon-flicker 1.5s infinite alternate;
  position: relative;
  border-radius: 50%;
}



/* Efecto fosforescente de fondo que parpadea */
.clase .elementor-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.4) 0%, rgba(37, 211, 102, 0.2) 50%, transparent 80%);
  z-index: -1;
  animation: neon-bg-flicker 1.5s infinite alternate;
}

/* Animación para parpadeo del icono */
@keyframes neon-flicker {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 3px #25D366, 0 0 6px #25D366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 2px #25D366, 0 0 4px #25D366;
    box-shadow: 0 0 5px rgba(37, 211, 102, 0.3), 0 0 10px rgba(37, 211, 102, 0.2);
  }
}

/* Animación para el fondo fosforescente */
@keyframes neon-bg-flicker {
  0%, 100% {
    opacity: 1;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.4) 0%, rgba(37, 211, 102, 0.2) 50%, transparent 80%);
  }
  50% {
    opacity: 0.6;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.1) 50%, transparent 80%);
  }
}

/* Nuevo: Efecto de notificación */
.clase .elementor-icon::after {
  content: '';
  position: absolute;
  top: 5%;
  right: 5%;
  width: 12px;
  height: 12px;
  background: red;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.7);
  animation: notification-pulse 1.2s infinite ease-in-out;
}

/* ====== CONTENEDOR GENERAL ====== */
.categorias-marcas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  padding: 40px 20px;
  background-color: #f6f6f6;
}

/* ====== BLOQUE DE MARCA ====== */
.marca-item {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.marca-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(126, 207, 40, 0.15);
}

/* ====== CABECERA DE LA MARCA ====== */
.marca-titulo {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #1e1e1e;
  margin-bottom: 25px;
  position: relative;
  letter-spacing: 0.5px;
}

.marca-titulo::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #7ecf28;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* ====== GRID DE MODELOS ====== */
.modelos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* ====== TARJETAS DE MODELO ====== */
.modelo-item {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.modelo-item:hover {
  border-color: #7ecf28;
  box-shadow: 0 6px 14px rgba(126, 207, 40, 0.2);
  transform: translateY(-5px);
}

/* ====== IMAGEN DEL MODELO ====== */
.modelo-imagen img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-bottom: 2px solid #7ecf28;
  transition: transform 0.3s ease;
}

.modelo-item:hover .modelo-imagen img {
  transform: scale(1.05);
}

/* ====== NOMBRE DEL MODELO ====== */
.modelo-nombre {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin: 10px 0;
  padding-bottom: 10px;
  transition: color 0.3s;
}

.modelo-item:hover .modelo-nombre {
  color: #7ecf28;
}

/* ====== SIN IMAGEN ====== */
.no-image {
  background: #f1f1f1;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .categorias-marcas {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .marca-item {
    padding: 20px;
  }
}
/* ===== BOTÓN "COMPRAR POR WHATSAPP" ===== */
.woocommerce ul.products li.product a.buy-via-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25D366; /* Verde WhatsApp */
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-top: 10px;
}

/* Ícono de WhatsApp SVG */
.woocommerce ul.products li.product a.buy-via-whatsapp::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 32 32'%3E%3Cpath d='M16.003 3C9.374 3 4 8.374 4 15.002c0 2.646.867 5.081 2.347 7.083L5 29l7.083-1.347A11.94 11.94 0 0 0 16.003 27C22.63 27 28 21.626 28 15.002 28 8.374 22.63 3 16.003 3zm0 22.205a10.67 10.67 0 0 1-5.438-1.489l-.39-.231-4.198.798.798-4.094-.252-.422A10.706 10.706 0 0 1 5.332 15C5.332 9.467 10.47 4.8 16.003 4.8c5.533 0 10.666 4.666 10.666 10.202 0 5.533-5.133 10.203-10.666 10.203zm5.89-7.585c-.322-.16-1.913-.943-2.209-1.05-.297-.108-.514-.16-.73.16-.216.32-.838 1.05-1.028 1.266-.189.215-.378.242-.7.081-.322-.162-1.358-.5-2.588-1.59-.957-.853-1.603-1.902-1.791-2.223-.188-.32-.02-.494.142-.654.146-.145.322-.378.484-.567.162-.189.216-.32.324-.54.108-.22.054-.405-.027-.567-.081-.162-.73-1.74-1-2.385-.262-.63-.527-.542-.73-.553-.189-.008-.405-.01-.621-.01s-.567.081-.864.404c-.297.32-1.135 1.11-1.135 2.707s1.162 3.142 1.324 3.362c.162.22 2.292 3.501 5.547 4.916.775.334 1.379.533 1.849.68.777.247 1.484.212 2.044.129.624-.093 1.913-.782 2.184-1.538.27-.757.27-1.404.189-1.538-.081-.135-.297-.216-.62-.376z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Hover */
.woocommerce ul.products li.product a.buy-via-whatsapp:hover {
  background-color: #1ebe57;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce ul.products li.product a.buy-via-whatsapp {
    font-size: 13px;
    padding: 9px 14px;
  }
}
.filtros-novedades { margin-bottom:20px; }
.filtros-novedades .filtro { padding:5px 10px; border:1px solid #333; margin-right:5px; text-decoration:none; }
.filtros-novedades .filtro.activo { background:#333; color:#fff; }
.productos-novedades .producto img { max-width:100%; height:auto; }/* End custom CSS */