* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #080808;
  color: #ffffff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(0, 0, 0, 0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #1a1a1a;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
}

.logo-icon {
  color: #ff0000;
  margin-right: 5px;
}

.logo-red {
  color: #ff0000;
}

.logo-white {
  color: #ffffff;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff0000;
}

.btn-whatsapp-header {
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* HERO SECTION */
.hero {
  padding: 60px 8%;
  background: radial-gradient(circle at 70% 30%, #2a0000 0%, #080808 70%);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  max-width: 600px;
}

.badge {
  display: inline-block;
  background: #ff0000;
  color: white;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-red {
  color: #ff0000;
}

.hero-subtitle {
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* CATEGORIAS */
.categories {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
}

.cat-item i {
  font-size: 20px;
  color: #ff0000;
}

/* OFFER BOX */
.offer-box {
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid #ff0000;
  border-radius: 12px;
  padding: 20px;
  gap: 25px;
  margin-bottom: 25px;
}

.price-card {
  background: linear-gradient(135deg, #e60000, #800000);
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.plan-title {
  font-size: 12px;
  font-weight: 900;
  display: block;
}

.price {
  font-weight: 900;
  font-style: italic;
}

.price .currency { font-size: 18px; }
.price .amount { font-size: 48px; }
.price .cents { font-size: 24px; }
.price .period { font-size: 12px; }

.benefits-list ul {
  list-style: none;
}

.benefits-list li {
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 700;
}

.benefits-list i {
  color: #25d366;
  margin-right: 6px;
}

/* CTA */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-cta-green {
  background: #00e640;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(0, 230, 64, 0.4);
  transition: transform 0.2s;
}

.btn-cta-green:hover {
  transform: scale(1.02);
}

.btn-cta-green i {
  font-size: 32px;
}

.btn-cta-green div strong {
  display: block;
  font-size: 16px;
}

.btn-cta-green div span {
  font-size: 11px;
}

.security-text {
  font-size: 12px;
  color: #888;
  text-align: center;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

/* CATALOG */
.catalog-section {
  padding: 80px 8%;
  background: #0d0d0d;
}

.catalog-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.catalog-text {
  max-width: 400px;
}

.sub-label {
  color: #ff0000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.catalog-text h2 {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  margin: 10px 0;
}

.catalog-text p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 25px;
}

.btn-red {
  background: #ff0000;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  display: inline-block;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  flex: 1;
}

.grid-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 140px;
}

.grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.3s;
}

.grid-card:hover img {
  transform: scale(1.1);
}

.grid-card span {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  text-shadow: 2px 2px 4px #000;
}

/* DISPOSITIVOS */
.devices-section {
  padding: 80px 8%;
  background: #080808;
}

.devices-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.devices-img img {
  max-width: 450px;
  width: 100%;
}

.devices-text h2 {
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
}

.devices-text p {
  color: #aaa;
  margin: 15px 0 30px;
}

.device-icons {
  display: flex;
  gap: 25px;
}

.dev-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #ccc;
}

.dev-item i {
  font-size: 28px;
  color: #fff;
}

/* BARRA DE DIFERENCIAIS */
.features-bar {
  display: flex;
  justify-content: space-around;
  background: #111;
  padding: 30px 8%;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-item i {
  color: #ff0000;
  font-size: 28px;
}

.feature-item strong {
  display: block;
  font-size: 13px;
}

.feature-item p {
  color: #777;
  font-size: 11px;
}

/* DEPOIMENTOS */
.testimonials-section {
  padding: 80px 8%;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
}

.section-sub {
  color: #888;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.testimonial-card {
  background: #121212;
  border: 1px solid #222;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  max-width: 350px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.stars {
  color: #ffcc00;
  font-size: 12px;
}

.testimonial-card p {
  color: #bbb;
  font-size: 13px;
  line-height: 1.4;
}

/* CTA BOTTOM */
.cta-bottom {
  background: linear-gradient(180deg, #150000 0%, #000000 100%);
  padding: 40px 8%;
  border-top: 2px solid #ff0000;
}

.cta-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-bottom-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.red-clock {
  font-size: 36px;
  color: #ff0000;
}

.btn-whatsapp-large {
  background: #00e640;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.bottom-features {
  display: flex;
  gap: 20px;
  font-size: 11px;
  font-weight: 700;
}

.bottom-features i {
  color: #ff0000;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #555;
  font-size: 12px;
  border-top: 1px solid #111;
}

/* RESPONSIVO (MOBILE) */
@media (max-width: 900px) {
  .hero-container, 
  .catalog-container, 
  .devices-container, 
  .cta-bottom-container,
  .testimonials-grid,
  .features-bar {
    flex-direction: column;
    text-align: center;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }
}