
body, html {
  margin: 0;
  padding: 0;
  background-color: rgb(244, 244, 250);
  color: white;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
canvas#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#hover:hover{
  background-color: #7924ff;
}
.site-content {
  position: relative;
  z-index: 1;
}
.animate-in {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(40px);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container {
  max-width: 1080px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}
.hero {
  background: radial-gradient(circle at top, #1a1a40, transparent);
  padding: 100px 20px;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #a249ff;
}
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.top-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-left: 0;
}
a {
  color: #a249ff;
  text-decoration: none;
}
.buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.primary {
  background: linear-gradient(to right, #a249ff, #7924ff);
  color: white;
}
.secondary {
  background-color: #1f1f2e;
  color: #a249ff;
}
.small {
  background: white;
  color: black;
}
.icon-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.icon-block {
  width: 50px;
  height: 50px;
  background: #1f1f2e;
  border-radius: 12px;
}
.center-icon {
  background: #a249ff;
}
.water-glass {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(162, 73, 255, 0.08);
  overflow: hidden;
}

ul {
  list-style: none; /* Remove os marcadores */
  padding: 0; /* Remove o recuo padrão */
  margin: 0; /* Remove a margem padrão */
}

#water-glass::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.05) 2%,
    transparent 4%,
    transparent 6%
  );
  animation: glassRain 8s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes glassRain {
  0% {
    top: -100%;
  }
  100% {
    top: 0%;
  }
}
.metrics, .cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.card, .review-card {
  background-color: #1f1f2e;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  margin-top: 1rem;
}
footer {
  padding: 40px 20px;
  text-align: center;
  background-color: #0d0d0d;
  font-size: 0.9rem;
  color: #aaa;
}

.review-card img.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px auto;
  border: 2px solid #a249ff;
  background-color: #111;
}

/* Scroll animation */
.scroll-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-section.active {
  opacity: 1;
  transform: translateY(0);
}

/* Metric cards visual fix */
.metrics .card {
  backdrop-filter: blur(10px);
  background: rgba(45, 45, 65, 0.5);
  border-radius: 15px;
  padding: 20px;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(162, 73, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.metrics .card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(162, 73, 255, 0.4);
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 12px;
  margin-top: 4rem;
  box-shadow: 0 0 25px rgba(162, 73, 255, 0.15);
}
.contact-form h2 {
  margin-bottom: 20px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: #1f1f2e;
  color: white;
  border: none;
  border-radius: 8px;
}
.contact-form button {
  background: linear-gradient(to right, #a249ff, #7924ff);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #a249ff;
}

/* 3D hover para avaliações */
.review-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: rotateY(8deg) scale(1.06);
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(45, 45, 65, 0.5);
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 0 15px rgba(162, 73, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.metric-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(162, 73, 255, 0.35);
}
.metric-card img {
  width: 24px;
  height: 24px;
}
.metric-text {
  font-weight: bold;
  font-size: 15px;
}

.top-nav ul li a {
  color: #ffffff;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.top-nav ul li a:hover {
  color: #a249ff;
}
.top-nav ul li a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #a249ff;
  transition: width 0.3s ease;
}
.top-nav ul li a:hover::before {
  width: 100%;
}

.top-nav {
  background: rgba(15, 15, 25, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 2rem;
}
