.elementor-18 .elementor-element.elementor-element-7f29d73{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-7f29d73 *//* --- Reset básico --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* --- Fondo general --- */
body {
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

/* --- Encabezado --- */
header {
  background-color: #2c2c2c; /* gris oscuro elegante */
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
}

header p {
  font-size: 1rem;
  font-weight: 300;
  margin-top: 0.5rem;
}

/* --- Contenedor de platos --- */
.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* --- Tarjeta de cada plato --- */
.menu-item {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* Imagen de cada plato */
.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Info del plato */
.menu-info {
  padding: 1rem;
}

.menu-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.menu-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e67e22; /* tono dorado/naranja */
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #2c2c2c;
  color: white;
  font-size: 0.9rem;
}/* End custom CSS */