body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f8f9fa;
  color: #333;
}


header {
  background-color: #66bfa6;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

header h1 {
  margin: 0;
  font-size: 1.3em;
}

.menu-btn {
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}


.menu {
  display: none;
  background-color: #88d1b6;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  border-bottom: 1px solid #fff;
}

.menu a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
}

.menu a:hover {
  background-color: #5ea68d;
}

.menu.active {
  display: block;
}


main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  padding: 20px;
}

section {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section img {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}


aside {
  background-color: #f0fafc;
  border-left: 4px solid #6ec1e4;
  padding: 1.5em;
  margin-top: 2em;
  border-radius: 8px;
}

aside h3 {
  text-align: center;
  color: #2a8fbf;
  margin-bottom: 1em;
  font-size: 1.5em;
}

.promociones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.promo-item {
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 220px;
  padding: 0.8em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.promo-item p {
  margin-top: 0.5em;
  color: #333;
  font-weight: bold;
  font-size: 0.95em;
}
/*hover hace q cuando pasamos el mause tnega el efecto*/
/*transform tmb ayuda a mover el elmento*/
.promo-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}


@media (max-width: 768px) {
  .promociones {
    flex-direction: column;
    align-items: center;
  }
}


footer {
  text-align: center;
  background-color: #66bfa6;
  color: white;
  padding: 10px 0;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  main {
    grid-template-columns: 1fr;
  }

  .menu {
    position: static;
  }
}