* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: #f0f0f0;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #b70f0a;
  padding: 1.5vh 3vh;
}

.logo img {
  max-height: 100px;
}

.nav .menu {
  display: flex;
  gap: 3vh;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

.menu a:hover {
  background-color: white;
  color: #b70f0a;
  padding: 5px 10px;
  border-radius: 4px;
}



.main h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
}

.formulario {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario input,
.formulario textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.formulario textarea {
  resize: none;
  min-height: 150px;
}

.buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.mapa {
  border: none;
  width: 100%;
  height: 100%;
}

/* FOOTER */
.footer {
  background-color: #b70f0a;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.footer a {
  color: white;
  text-decoration: underline;
}

.productos-container {
    display: grid;
    grid-template-columns: 1fr 3fr; /* Categorías a la izquierda, productos a la derecha */
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
    box-sizing: border-box;
  }
  
  /* CATEGORÍAS */
  .categorias {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

    .categorias h2 {
        margin-bottom: 1.5rem;
        font-size: 24px;
    }
  
  .categorias ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .categorias ul li {
    margin-bottom: 1rem;
    background-color: #eee;
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
  }
  
  .categorias ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  /* PRODUCTOS */
  .productos-lista ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .productos-lista li {
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-sizing: border-box;
  }
  
  .productos-lista img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
  }

  .carousel-item img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
  }
