* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b0f1a;
  color: #fff;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: #000;
  align-items: center;
}

.logo {
  font-weight: bold;
  color: #4da6ff;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, #001f3f, #000);
}

.hero-text {
  max-width: 500px;
}

.hero h1 {
  color: #4da6ff;
  margin-bottom: 10px;
}

.carousel {
  width: 280px;
  height: 380px;
  margin-right: 30px;
}

.carousel img {
  width: 100%;
  height: 100%;
  display: none;
  border-radius: 12px;
}

.carousel img.active {
  display: block;
}

/* TRUST */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 15px;
  padding: 25px;
  background: #000;
  text-align: center;
  font-size: 14px;
}

/* SECTIONS */
.section {
  padding: 50px 30px;
  text-align: center;
}

.section.dark {
  background: #000;
}

.section h2 {
  margin-bottom: 30px;
  color: #4da6ff;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD */
.card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  margin: 15px 0 5px;
}

.card p {
  font-size: 14px;
  opacity: 0.85;
}

/* BADGES */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff9800;
  color: #000;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 6px;
}

.badge.blue {
  background: #4da6ff;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: #4da6ff;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  border: 1px solid #4da6ff;
  color: #4da6ff;
  border-radius: 6px;
  text-decoration: none;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

footer a {
  color: #4da6ff;
  text-decoration: none;
  margin: 0 5px;
}
.preco-box {
  text-align: center;
  margin: 30px 0;
}

.preco-antigo {
  text-decoration: line-through;
  color: #aaa;
  font-size: 16px;
}

.preco-novo {
  color: #2ecc71;
  font-size: 26px;
  font-weight: bold;
  margin: 10px 0;
}

.btn-comprar {
  display: inline-block;
  padding: 15px 35px;
  background: #2ecc71;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.btn-comprar:hover {
  background: #27ae60;
  transform: scale(1.05);
}
.depoimentos {
  padding: 60px 30px;
  background: #0b0f1a;
  text-align: center;
}

.depoimentos h2 {
  color: #4da6ff;
  margin-bottom: 40px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.depoimento-card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.depoimento-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.depoimento-card h3 {
  margin-bottom: 5px;
  color: #fff;
}

.stars {
  color: #f1c40f;
  font-size: 18px;
  margin-bottom: 10px;
}

.depoimento-card p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}
.carousel {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 420px;
  overflow: hidden;
}

.carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}