body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111827;
}
.header-bg {
  background-size: cover;
  background-position: center;
  height: 700px; /* Adjust as needed */
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  border-radius: 12px;
}
.header-bg h1 {
  z-index: 1;
  font-size: 12.5rem; /* 50% menor que 25rem */
  margin-top: 7rem;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 20px;
  padding: 1rem 2rem 0 0;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  right: 30%;
  left: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar a {
  background-color: aliceblue;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  color: rgb(246, 57, 57);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.navbar a:hover {
  color: #ffffff;
}

.header-title {
  text-align: center;
  font-size: 10px;
  color: rgb(20, 103, 255);
  margin-top: 2rem;
}
.header-title-2 {
  color: rgb(255, 68, 0);
}

/* Add to your existing style.css */

.product-collection {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  width: 340px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-info h3 {
  margin: 0.5rem 0 0.2rem 0;
  color: #1447ff;
}

.product-price {
  color: #f63939;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.product-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  color: #444;
  font-size: 0.98rem;
}

.product-details li {
  margin-bottom: 0.2rem;
}

.buy-btn {
  background: linear-gradient(90deg, #4069ff 60%, #ff6565 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.buy-btn:hover {
  background: linear-gradient(90deg, #ff5555 60%, #446cff 100%);
}

.product-section-home {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #1f2937;
  border-radius: 16px;
  margin: 2rem auto;
  max-width: 1200px;
}

.product-intro {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 2.5rem;
}

video {
  width: 700px;
  height: auto;
  border-radius: 16px;
}

.produto {
  border: 1px solid #ccc;
  padding: 16px;
  margin: 8px;
  cursor: pointer;
  border-radius: 8px;
  background: #f9f9f9;
}
.produto button {
  background: #0078d4;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
}
.fechar {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    top: 64px;
    z-index: 50;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    margin-top: 0.5rem;
  }
  .navbar ul li a {
    color: #1e293b;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid #2226;
  }
}

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-down {
  animation: fade-in-down 1s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animate-spin-slow {
  animation: spin-slow 6s linear infinite;
}
