:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6f48db5 */.venta-scooters {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.venta-scooters h2 {
  color: #2e7d32;
  margin-bottom: 1rem;
}

.venta-scooters p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* Enlace ELECTRIC MOBILITY en azul institucional */
.venta-scooters p a {
  color: #0077cc; /* azul limpio y visible */
  font-weight: 600;
  text-decoration: none;
}

.venta-scooters p a:hover {
  text-decoration: underline;
}


/* GRID */
.grid-scooters {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-scooters {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* TARJETAS */
.producto {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.producto:hover {
  transform: translateY(-4px);
}

/* IMÁGENES */
.producto img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 0.8rem;
}

/* PRECIO */
.precio {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2e7d32;
}

/* RESPONSIVE — una sola columna en móvil */
@media (max-width: 768px) {
  .grid-scooters {
    grid-template-columns: 1fr; /* una sola columna */
  }

  .producto {
    margin: 0 auto;
    max-width: 95%;
  }

  .producto img {
    height: 180px;
  }
}

.btn-contacto {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.6rem 1.2rem;
  background-color: #ffffff;
  color: #2e7d32; /* verde institucional */
  border: 2px solid #2e7d32;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-contacto:hover {
  background-color: #ffffff !important;
  color: #2e7d32 !important;
  border: 2px solid #2e7d32 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46,125,50,0.35);
}/* End custom CSS */