/* ==================================================
   SISTEMA DE CORES (TROQUE AQUI O TEMA INTEIRO)
   ================================================== */

:root {
  /* Fundos */
  --bg-main: #3d3636;
  --bg-section: #0b0b0b;
  --bg-soft: #2f2f2f;
  --bg-offer: #3e3a3f;

  /* Texto */
  --text-main: #ffffff;
  --text-muted: #cccccc;

  /* Marca */
  --primary: #3d5a85;
  --primary-soft: #1b6fe0;

  /* CTA */
  --cta-bg: #0F52BA;
  --cta-text: #ffffff;

  /* Linhas / detalhes */
  --line: #477dcf;
}

/* ==================================================
   RESET / BASE
   ================================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

section {
  padding: 80px 0;
}

h1, h2, h3 {
  font-family: 'Raleway', sans-serif;
}

hr {
  border: none;
  height: 2px;
  background: var(--line);
  margin: 20px 0;
}

/* ==================================================
   HERO
   ================================================== */

.hero {
  background: linear-gradient(135deg, var(--primary), var(--bg-main));
  padding: 120px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}

.logo {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.hero h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ==================================================
   BOTÕES
   ================================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
}

.primary {
  background: var(--cta-bg);
  color: var(--cta-text);
}

.secondary {
  background: #ffffff;
  color: #000000;
}

.large {
  font-size: 1.2rem;
}

/* ==================================================
   GRID / IMAGENS
   ================================================== */

.grid-2 {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 60px;
  align-items: center;
}

.dark img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ==================================================
   ALERTA
   ================================================== */

.alert {
  text-align: center;
  background: #111;
}

/* ==================================================
   GARANTIA (ESTILO HOTMART)
   ================================================== */

.guarantee-hotmart {
  background: var(--bg-section);
  padding: 140px 0;
  text-align: center;
}

.guarantee-icons {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 30px;
  letter-spacing: 6px;
}

.guarantee-title {
  font-size: 48px;
  letter-spacing: 14px;
  font-weight: 700;
  margin: 0;
}

.guarantee-line {
  width: 100%;
  max-width: 900px;
  height: 2px;
  background: var(--line);
  margin: 40px auto;
}

.guarantee-subtitle {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.guarantee-subtitle strong {
  color: var(--primary);
}

.guarantee-text {
  font-size: 16px;
  color: var(--text-muted);
}

/* ==================================================
   DISPOSITIVOS
   ================================================== */

.devices {
  background: var(--bg-offer);
  padding: 60px 0 20px;
}

.devices-inner {
  text-align: center;
}

.devices-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 32px;
  margin-bottom: 20px;
}

.devices-text {
  font-size: 16px;
}

/* ==================================================
   OFERTA
   ================================================== */

.offer {
  background: var(--bg-offer);
  padding: 100px 0;
}

.offer-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-section);
  padding: 50px 32px;
  border-radius: 6px;
  text-align: center;
}

.offer-label {
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.offer-price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.offer-installments {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.offer-btn {
  display: block;
  width: 100%;
  padding: 18px 0;
  font-size: 16px;
  margin-bottom: 18px;
}


/* ==================================================
   FAQ
   ================================================== */

.faq-section {
  background: var(--bg-soft);
  padding: 100px 0;
}

.faq-title {
  font-size: 36px;
  margin-bottom: 60px;
}

.faq-item {
  border-bottom: 1px solid #444;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 16px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ==================================================
   FOOTER
   ================================================== */

footer {
  text-align: center;
  padding: 40px;
  background: var(--bg-main);
  font-size: 14px;
  color: #777;
}

/* ==================================================
   RESPONSIVO
   ================================================== */

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .logo {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .offer {
    padding: 80px 0;
  }

  .offer-card {
    padding: 40px 24px;
  }

  .offer-price {
    font-size: 42px;
  }

  .faq-title {
    font-size: 30px;
  }
}


/* =========================
   MELHORIA CARD DE OFERTA
   ========================= */

.offer-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 2px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.offer-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.offer-benefits li {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.offer-devices {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 26px;
  margin-top: 18px;
}

.offer-devices-text {
  font-size: 13px;
  color: var(--text-muted);
  margin: 10px 0 14px;
}

.offer-security {
  display: block;
  font-size: 11px;
  color: #aaa;
  margin-top: 10px;
}

/* =========================
   DISPOSITIVOS — VERSÃO CLEAN
   ========================= */

.offer-devices {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 28px 0 12px;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.device-item small {
  font-size: 11px;
  color: var(--text-muted);
}

/* ÍCONES FEITOS EM CSS */
.device-icon {
  width: 28px;
  height: 22px;
  border: 2px solid var(--primary);
  border-radius: 3px;
  position: relative;
}

/* Desktop */
.device-icon.desktop::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
}

/* Tablet */
.device-icon.tablet {
  width: 20px;
  height: 26px;
  border-radius: 4px;
}

/* Mobile */
.device-icon.mobile {
  width: 14px;
  height: 24px;
  border-radius: 4px;
}

/* Texto */
.offer-devices-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* =========================
   OUTROS PRODUTOS
   ========================= */

.other-offers {
  background: var(--bg-soft);
  padding: 100px 0;
}

.other-offers-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.other-offer-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-section);
  border-radius: 6px;
  padding: 40px 32px;
  text-align: center;
  opacity: 0.9;
}

.other-offer-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 14px;
}

.other-offer-name {
  font-size: 26px;
  margin-bottom: 14px;
}

.other-offer-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

.other-offer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.other-offer-price {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 24px;
}

.other-offer-price span {
  font-size: 18px;
  font-weight: 400;
}

.other-offer-btn {
  padding: 14px 0;
  width: 100%;
}

/* =========================
   TEXTO COM HIGHLIGHT SUAVE
   ========================= */

.highlight-text {
  line-height: 1.8;
  font-size: 15.5px;
  color: var(--text-muted);
}

.highlight-text strong {
  color: var(--text-main);
  font-weight: 600;
}

.no-break {
  white-space: nowrap;
}


/* =========================
   PREÇO PROMOCIONAL
   ========================= */

.offer-pricing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.offer-old-price {
  font-size: 16px;
  color: #888;
  text-decoration: line-through;
}

.offer-discount {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 4px 8px;
  border-radius: 12px;
  letter-spacing: 1px;
}

.offer-price.promo {
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 12px;
}

/* =========================
   LISTA DE BENEFÍCIOS — PREMIUM
   ========================= */

.offer-benefits {
  list-style: none;
  padding: 0;
  margin: 28px auto;
  width: fit-content;     /* usa o eixo do conteúdo */
}

.offer-benefits li {
  display: grid;
  grid-template-columns: 16px auto;
  column-gap: 10px;
  align-items: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Ícone de check */
.offer-benefits li::before {
  content: "";
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.offer-badge.limited {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}


/* =========================
   PREÇO DE / POR
   ========================= */

.offer-from {
  font-size: 14px;
  color: #777;
  margin-bottom: 6px;
}

.offer-from span {
  text-decoration: line-through;
}

.offer-price.promo {
  font-size: 56px;      /* deixa o preço mandar */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.offer-deadline {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: -4px;
}

