* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fdeef7;
  display: flex;
  justify-content: center;
}

.page {
  max-width: 420px;
  padding: 20px;
  text-align: center;
  background: #fdeef7;
  border-radius: 24px;
  max-width: 420px;
  margin: auto;
  font-family: Arial, sans-serif;
}

/* CARROSSEL */
.carousel {
  position: relative;
  background: #e9f7d7;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
}

.carousel-track img {
  width: 100%;
  display: none;
}

.carousel-track img.active {
  display: block;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
}

.prev { left: 10px; }
.next { right: 10px; }

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffcc00;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 13px;
}

/* ÍCONES */
.icons {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.icon {
  font-size: 22px;
}

.icon span {
  display: block;
  font-size: 10px;
  margin-top: 4px;
}

/* TAG */
.tag {
  display: inline-block;
  background: #e0e3ff;
  color: #555;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin: 10px 0;
}

/* TEXTO */
h1 {
  font-size: 22px;
  margin-top: 10px;
}

h1 span {
  color: #7a4dff;
}

p {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
}
