body {
  box-sizing: border-box;
}

.font-display {
  font-family: 'Fredoka', sans-serif;
}

.font-body {
  font-family: 'Outfit', sans-serif;
}

.hero-gradient {
  background: linear-gradient(135deg, #7743f0 0%, #a8d8ea 50%, #9c8fa8 100%);
  position: relative;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.3;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: #c497e7;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: #a8e6f5;
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: #c4b5fd;
  top: 60%;
  left: 15%;
  animation-delay: 4s;
}


.product-card {
  background: rgb(236, 229, 232);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-12px) rotate(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #96467d 0%, #96467d 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(241, 233, 233, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 245, 245, 0.4);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
}

.product-emoji {
    font-size: 80px;
    animation: bounce 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.sticker-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ffd9e8 0%, #ffb3d9 100%);
  color: #8b5cf6;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 12px;
  transform: rotate(15deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.input-field {
  background: rgb(160, 144, 170);
  border: 3px solid #b8a4e5;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.input-field:focus {
  outline: none;
  border-color: #bfa7c7;
  box-shadow: 0 0 0 4px rgba(247, 247, 247, 0.2);
  transform: scale(1.02);
}

.wavy-divider {
  position: relative;
  height: 0px;
  background: rgb(255, 255, 255);
}


.success-message {
  background: linear-gradient(135deg, #a8e6f5 0%, #b8f5cd 100%);
  color: #059669;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(168, 230, 245, 0.3);
}

.icon-badge {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, lch(71.31% 34.85 301.01) 0%, #7c5e94 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.animate-float-soft {
  animation: floatSoft 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0); 
  }

  50% { 
    transform: translateY(-6px); 
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.sobre-ari-bg {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.38) 0%,
    rgba(139, 92, 246, 0.46) 42%,
    rgba(139, 120, 235, 0.58) 78%,
    rgba(132, 102, 232, 0.62) 100%
  );
}

.card-ari {
  background: #ffd9e8;
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.4);
}
