body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fc3232;
  color: #020101;
}

header {
  background-color: #000000;
  color: rgb(255, 255, 255);
  padding: 10px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.main-nav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffb400;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background: url('https://images.unsplash.com/photo-1521335629791-ce4aec67dd47?w=1600') center/cover no-repeat;
  color: rgb(255, 255, 255);
}

.hero h1 {
  font-size: 48px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffb400;
  color: black;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.category {
  margin-bottom: 50px;
}

.category h2 {
  border-bottom: 3px solid #ffb400;
  padding-bottom: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.price {
  color: #221e15;
  font-weight: bold;
}

.tag {
  background: #e63946;
  color: rgb(255, 255, 255);
  padding: 4px 6px;
  font-size: 14px;
  border-radius: 4px;
}

footer {
  background: #111;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 15px 0;
  margin-top: 50px;
}

.pedido-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff7f7, #ffe3e3);
  border-top: 3px solid #ff4d4d;
}

.pedido-section h2 {
  font-size: 2em;
  color: #222;
  margin-bottom: 10px;
}

.pedido-section p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

/* Formulario */
.pedido-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff6600;
  outline: none;
}

/* Botón de pedido */
.btn.pedido {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #000000, #ff6600);
  color: #fff;
  padding: 14px;
  border-radius: 35px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn.pedido:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ff6600, #ff0066);
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.5);
}