* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* Esquerda */
.left {
  flex: 1;
  position: relative;
  background: linear-gradient(150deg, #ffe48f, #ffb6c1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blob-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ffcd6d, #ff9eb1);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
}

.floating-object {
  width: 180px;
  height: auto;
  z-index: 3;
  animation: floatRotate 8s ease-in-out infinite;
  transform-style: preserve-3d;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
  margin-top: 30px;
}

/* Animação combinada: rotação + flutuação */
@keyframes floatRotate {
  0% {
    transform: rotateY(0deg) rotateX(0deg) translateY(0px);
  }
  25% {
    transform: rotateY(90deg) rotateX(10deg) translateY(-8px);
  }
  50% {
    transform: rotateY(180deg) rotateX(0deg) translateY(0px);
  }
  75% {
    transform: rotateY(270deg) rotateX(-10deg) translateY(8px);
  }
  100% {
    transform: rotateY(360deg) rotateX(0deg) translateY(0px);
  }
}

/* Direita */
.right {
  flex: 1;
  padding: 40px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.product-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f2f2f2;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: scale(1.02);
}

.product-name {
  font-weight: 600;
}

.product-size {
  color: #999;
  font-size: 0.9rem;
  margin: 0 15px;
}

.product-description {
  color: #666;
  font-size: 0.9rem;
  flex: 1;
  text-align: center;
}

.enter-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.enter-btn:hover {
  background: #333;
}

.menu-footer {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.menu-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
}

.menu-btn.active,
.menu-btn:hover {
  background: #eee;
}
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
    height: auto;
  }

  .left {
    padding: 40px 0;
  }

  .right {
    padding: 20px;
  }

  .floating-object {
    width: 140px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  header h2 {
    font-size: 1.6rem;
  }

  .product-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-size,
  .product-description,
  .enter-btn {
    text-align: left;
    width: 100%;
  }

  .product-description {
    text-align: left;
    padding-right: 0;
  }

  .enter-btn {
    align-self: flex-end;
  }

  .floating-object {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2.5rem;
  }

  .product-name {
    font-size: 1rem;
  }

  .product-size,
  .product-description {
    font-size: 0.85rem;
  }

  .enter-btn {
    padding: 5px 12px;
    font-size: 0.85rem;
  }

  .menu-btn {
    font-size: 1.2rem;
  }
}
