* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}


.navbar {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 160px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: top 0.4s ease;
  z-index: 900;
}

.navbar nav {
  display: flex;
  gap: 42px;
  justify-content: center;
  align-items: center;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
  padding: 6px 0;
}

.navbar a:hover {
  color: #ed7bab;
}

.navbar a.active {
  color: #ed7bab;
  border-bottom: 2px solid #ed7bab;
}

.logo {
  position: fixed;
  width: 84px;
  height: auto;
  transition: top 0.4s ease, opacity 0.4s ease, transform 0.5s ease;
  z-index: 1001;
}

.logo-left {
  left: 40px;
  top: 45px;
}

.logo-right {
  right: 40px;
  top: 30px;
}

.logo:hover {
  transform: scale(1.1) rotate(-5deg);
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(5deg); }
  30% { transform: rotate(-5deg); }
  45% { transform: rotate(4deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(2deg); }
  90% { transform: rotate(-2deg); }
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-line {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: -30px;
}

.hero-img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.05);
}

.img-welcome { max-width: 600px; }
.img-to { max-width: 350px; }
.img-charistas { max-width: 500px; }
.img-mart { max-width: 250px; }
.img-cart { max-width: 240px; }

.flower {
  position: fixed;
  top: -40px;
  width: 40px;
  height: auto;
  animation: fall linear forwards;
  z-index: 0;
  pointer-events: none;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
    opacity: 0.3;
  }
}

footer {
  background-color: #ed7bab;
  color: #f9f9f9;
  padding: 30px 24px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 60px;
  }

  .navbar nav {
    gap: 24px;
  }

  .navbar a {
    font-size: 14px;
  }

  .logo {
    width: 50px;
  }

  .img-welcome { max-width: 240px; }
  .img-to { max-width: 100px; }
  .img-charistas { max-width: 240px; }
  .img-mart { max-width: 120px; }
  .img-cart { max-width: 110px; }

  footer {
    font-size: 12px;
  }
}
