* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

.container {
  width: min(1200px, 90%);
  margin: auto;
}

.header {
  padding: 20px 0;
  background: #050505;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.logo img {
  width: 180px;
  max-width: 100%;
}

.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn-header,
.btn-primary {
  background: linear-gradient(135deg, #ff8a00, #ff5c00);
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
}

.hero {
  padding: 80px 0;
  background: radial-gradient(circle at right, #3a1d00, #050505 55%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tag {
  display: inline-block;
  border: 1px solid #ff8a00;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero h1 strong {
  color: #ff8a00;
}

.hero p {
  margin: 25px 0;
  color: #ddd;
  font-size: 20px;
  line-height: 1.5;
}

.hero-image img,
.content-image img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.trust {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #ddd;
}

.benefits,
.content-section,
.offer,
.security,
.faq {
  padding: 70px 0;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.cards,
.security-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card,
.security-grid div,
.faq-item {
  background: #111;
  border: 1px solid #333;
  padding: 28px;
  border-radius: 18px;
}

.card h3,
.security-grid h3,
.faq-item h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 22px;
}

.card p,
.security-grid p,
.faq-item p {
  color: #ddd;
  line-height: 1.5;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.content-text h2 {
  text-align: left;
  color: #ff8a00;
}

.content-text ul {
  list-style: none;
}

.content-text li {
  margin-bottom: 16px;
  font-size: 20px;
}

.content-text li::before {
  content: "✅ ";
}

.offer {
  background: linear-gradient(135deg, #140900, #050505);
}

.offer-box {
  text-align: center;
  background: #0f0f0f;
  border: 1px solid #ff8a00;
  padding: 50px;
  border-radius: 25px;
}

.badge {
  color: #ff8a00;
  font-weight: 900;
  text-transform: uppercase;
}

.old-price {
  margin-top: 20px;
  color: #aaa;
  text-decoration: line-through;
  font-size: 24px;
}

.price {
  font-size: clamp(55px, 8vw, 90px);
  font-weight: 900;
  color: #ff8a00;
  margin: 15px 0;
}

.offer-box p {
  margin-bottom: 25px;
  font-size: 18px;
}

.footer {
  padding: 50px 0 20px;
  background: #030303;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer img {
  width: 170px;
}

.footer p {
  max-width: 500px;
  color: #ccc;
}

.copy {
  text-align: center;
  margin-top: 35px;
  color: #777;
}

/* Tablet */
@media (max-width: 900px) {
  .header-content,
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content,
  .content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-text h2 {
    text-align: center;
  }

  .cards,
  .security-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celular */
@media (max-width: 600px) {
  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .cards,
  .security-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .offer-box {
    padding: 35px 20px;
  }

  .menu {
    gap: 14px;
    font-size: 14px;
  }

  .btn-header,
  .btn-primary {
    width: 100%;
    text-align: center;
  }
}