/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0f0f0f;
  color: #ffffff;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 45px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 400;
  transition: color 0.3s;
}

.menu a:hover {
  color: #f5b041;
}

.btn-header {
  background: linear-gradient(45deg, #f39c12, #e67e22);
  padding: 10px 20px;
  border-radius: 30px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1600891964599-f61ba0e24092") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero h1 span {
  color: #f5b041;
}

.hero p {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #ddd;
}

.btn-principal {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(45deg, #f39c12, #e67e22);
  padding: 15px 35px;
  border-radius: 40px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-principal:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(243,156,18,0.4);
}

.garantia {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #bbb;
}

/* BENEFÍCIOS */
.beneficios {
  padding: 100px 0;
  background: #121212;
}

.beneficios h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.4rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.4s, box-shadow 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card h3 {
  margin-bottom: 15px;
  color: #f5b041;
}

.card p {
  color: #ccc;
  font-size: 0.95rem;
}

/* CONTEÚDO */
.conteudo {
  position: relative;
  padding: 120px 0;
  background: url("https://images.unsplash.com/photo-1504754524776-8f4f37790ca0") center/cover no-repeat;
}

.conteudo .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(5px);
}

.conteudo-content {
  position: relative;
  z-index: 2;
}

.conteudo h2 {
  font-size: 2.3rem;
  margin-bottom: 30px;
}

.lista-conteudo li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.bonus {
  margin-top: 25px;
  color: #f5b041;
  font-weight: 500;
}

/* CTA */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a, #000);
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: auto;
}

.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.cta p {
  color: #ccc;
  margin-bottom: 35px;
}

.btn-compra {
  display: inline-block;
  background: linear-gradient(45deg, #f39c12, #e67e22);
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.seguranca {
  display: block;
  margin-top: 20px;
  color: #aaa;
  font-size: 0.9rem;
}

/* SUPORTE */
.suporte {
  padding: 100px 0;
  background: #121212;
  text-align: center;
}

.btn-suporte {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: #25d366;
  color: #000;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
}

/* FOOTER */
.footer {
  padding: 30px 0;
  text-align: center;
  background: #0b0b0b;
  color: #777;
  font-size: 0.85rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .hero h1 {
    font-size: 2.3rem;
  }
}

/* ANIMAÇÕES JS */
.card,
.conteudo-content,
.cta-box,
.suporte {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* MENU ATIVO */
.menu a.active {
  color: #f5b041;
  font-weight: 600;
}

/* PULSO CTA */
.pulse {
  box-shadow: 0 0 0 0 rgba(243,156,18,0.7);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(243,156,18,0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(243,156,18,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243,156,18,0);
  }
}
