/* Arsenal de Investigação — Cyber OSINT — v3 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* BODY — preto com texto branco */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #0d0d0d;
  color: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Montserrat', Arial, sans-serif; }

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

p { color: rgba(255,255,255,0.72); }

strong { color: #ffffff; }

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }

/* UTILITÁRIOS */
.gold { color: #F5A623 !important; }
.gold-italic { color: #F5A623; font-style: italic; }

/* =============================================
   BARRA DE URGÊNCIA
   ============================================= */
.urgency-bar {
  background: #1a0d00;
  border-bottom: 2px solid #F5A623;
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
}
.urgency-bar strong { color: #F5A623; }

.ub-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  animation: blink 1s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }

/* =============================================
   BOTÃO DOURADO
   ============================================= */
.btn-gold {
  display: inline-block;
  background-color: #F5A623;
  color: #111111;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-gold:hover {
  background-color: #D4890A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.45);
}
.btn-gold:active { transform: translateY(0); }

.btn-hero {
  font-size: 17px;
  padding: 20px 44px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
  animation: pulse-btn 2.5s ease-in-out infinite;
}
@keyframes pulse-btn {
  0%,100% { box-shadow: 0 4px 20px rgba(245,166,35,0.4); }
  50%      { box-shadow: 0 6px 36px rgba(245,166,35,0.7); }
}

/* =============================================
   SECTION LABELS E TÍTULOS
   ============================================= */
.section-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #F5A623;
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: #F5A623;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 44px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background-color: #0d0d0d;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  border-bottom: 1px solid rgba(245,166,35,0.2);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.90), rgba(10,5,0,0.93));
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.badge-pill {
  display: inline-block;
  border: 1px solid rgba(245,166,35,0.6);
  color: #F5A623;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 30px;
  text-transform: uppercase;
}

.hero-logo {
  width: 190px;
  height: 190px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 0 24px rgba(245,166,35,0.35));
}

.hero-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
}
.hero-title .gold { display: block; color: #F5A623; }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  line-height: 1.75;
}
.hero-sub strong { color: #ffffff; }

.hero-proof-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 40px;
  padding: 10px 24px;
}
.hero-proof-bar strong { color: #F5A623; }
.bar-div { color: rgba(245,166,35,0.5); }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.hero-scarcity {
  font-size: 14px;
  color: #ff7070;
  background-color: rgba(255,68,68,0.08);
  border: 1px solid rgba(255,68,68,0.3);
  border-radius: 8px;
  padding: 12px 20px;
  max-width: 540px;
  text-align: center;
}
.hero-scarcity strong { color: #ff4444; }

/* =============================================
   AUTORIDADE
   ============================================= */
.autoridade {
  background-color: #141414;
  border-top: 1px solid rgba(245,166,35,0.15);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  padding: 60px 0;
}

.autoridade-text {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  text-align: center;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.85;
}
.autoridade-text strong { color: #ffffff; }

.autoridade-destaque {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #F5A623;
  text-align: center;
  font-style: italic;
  margin-top: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   CONTEÚDO — CARDS
   ============================================= */
.conteudo { background-color: #0d0d0d; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.card {
  background-color: #181818;
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 14px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: rgba(245,166,35,0.6);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.12);
}

/* Card que ocupa linha inteira */
.card-wide {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

/* ÍCONE EMOJI dos cards */
.card-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 1px solid rgba(245,166,35,0.25);
  flex-shrink: 0;
  line-height: 1;
}

.card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #F5A623;
  line-height: 1.4;
}

.card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.card p strong { color: #ffffff; }

.destaque-bar {
  background: linear-gradient(135deg, #1a0d00, #2a1a00);
  border: 1px solid #F5A623;
  border-radius: 10px;
  padding: 18px 28px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #F5A623;
}

/* =============================================
   BÔNUS
   ============================================= */
.bonus {
  background-color: #141414;
  border-top: 1px solid rgba(245,166,35,0.15);
  border-bottom: 1px solid rgba(245,166,35,0.15);
}

.bonus-card {
  background-color: #1e1e1e;
  border: 1px solid rgba(245,166,35,0.6);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(245,166,35,0.12);
}

.bonus-icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  border-radius: 14px;
  background-color: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  flex-shrink: 0;
}

.bonus-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #F5A623;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.bonus-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 14px;
}
.bonus-content p strong { color: #ffffff; }

.bonus-gratis {
  display: inline-block;
  background-color: rgba(0,180,70,0.12);
  border: 1px solid rgba(0,180,70,0.4);
  color: #00cc55;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
}

/* =============================================
   CTA MEIO
   ============================================= */
.cta-mid {
  background-color: #0d0d0d;
  background-image: radial-gradient(ellipse at center, #1a0f00 0%, #0d0d0d 65%);
  text-align: center;
  border-top: 1px solid rgba(245,166,35,0.15);
  border-bottom: 1px solid rgba(245,166,35,0.15);
}

.cta-mid-logo {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(245,166,35,0.3));
}

.cta-mid-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cta-mid-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

.cta-mid-gatilhos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gatilho-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.gatilho-num {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: #F5A623;
  line-height: 1;
  display: block;
}
.gatilho-item span:last-child {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.trust-text {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   PACOTES
   ============================================= */
.pacotes { background-color: #0d0d0d; }

.pacotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 36px;
}

.pacote-card {
  background-color: #181818;
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
}

.pacote-premium {
  border-color: #F5A623;
  box-shadow: 0 0 36px rgba(245,166,35,0.18);
}

.pacote-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F5A623;
  color: #111111;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: 30px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.pacote-nome {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
}

.pacote-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(245,166,35,0.2));
}

.pacote-img-glow {
  filter: drop-shadow(0 0 20px rgba(245,166,35,0.55));
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { filter: drop-shadow(0 0 14px rgba(245,166,35,0.4)); }
  50%      { filter: drop-shadow(0 0 32px rgba(245,166,35,0.8)); }
}

.pacote-lista {
  list-style: none;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pacote-lista li {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.pacote-lista li strong { color: #ffffff; }

.pacote-preco-de {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.pacote-preco-de s { text-decoration: line-through; }

.pacote-preco {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.pacote-parcelas {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: -8px;
}

.btn-pacote {
  width: 100%;
  border-radius: 10px;
  font-size: 14px;
  padding: 16px 16px;
}

.btn-pacote-premium {
  animation: pulse-btn 2.5s ease-in-out infinite;
}

.pacote-trust {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.pacote-economia {
  background-color: rgba(0,180,70,0.08);
  border: 1px solid rgba(0,180,70,0.3);
  color: #00cc55;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}

.pacotes-gatilhos {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pg-item {
  background-color: #181818;
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-align: center;
}
.pg-item strong { color: #ffffff; }

.countdown-inline {
  color: #F5A623;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background-color: #141414;
  border-top: 1px solid rgba(245,166,35,0.15);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: #0d0d0d;
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  overflow: hidden;
}
.faq-item.open { border-color: rgba(245,166,35,0.6); }

.faq-q {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  transition: background 0.25s;
}
.faq-q:hover { background-color: rgba(245,166,35,0.05); }
.faq-q[aria-expanded="true"] { color: #F5A623; }

.faq-arrow {
  color: #F5A623;
  font-size: 11px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(245,166,35,0.15);
}
.faq-a p strong { color: #ffffff; }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background-color: #0d0d0d;
  background-image: radial-gradient(ellipse at center, #1a0f00 0%, #0d0d0d 65%);
  text-align: center;
  border-top: 1px solid rgba(245,166,35,0.15);
}

.cta-final-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-final-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 28px;
  line-height: 1.75;
}
.cta-final-sub strong { color: #ff7070; }

.cta-final-timer {
  display: inline-block;
  background-color: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.5);
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.cta-final-timer strong { color: #F5A623; font-size: 19px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background-color: #080808;
  border-top: 1px solid rgba(245,166,35,0.15);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  object-fit: contain;
  opacity: 0.85;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.footer-email {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-email a { color: #F5A623; }
.footer-email a:hover { opacity: 0.8; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-links a { color: rgba(255,255,255,0.3); }
.footer-links a:hover { color: #F5A623; }

/* =============================================
   AUTORIDADE — layout dividido com imagem
   ============================================= */
.autoridade-inner {
  display: flex;
  gap: 52px;
  align-items: center;
}
.autoridade-content { flex: 1; }
.autoridade-visual { flex: 0 0 42%; }
.autoridade-visual img {
  width: 100%;
  border-radius: 14px;
  border: 2px solid rgba(245,166,35,0.35);
  box-shadow: 0 0 40px rgba(245,166,35,0.12);
  display: block;
}
.autoridade-inner .autoridade-text { text-align: left; margin: 0 0 18px; }
.autoridade-inner .autoridade-destaque { text-align: left; margin: 0; }

/* =============================================
   CARDS COM IMAGEM REAL
   ============================================= */
.card-has-img {
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  gap: 0;
}
.card-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.card-has-img:hover .card-img { transform: scale(1.07); }
.card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

/* BÔNUS — imagem do grupo Telegram */
.bonus-img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  border: 2px solid rgba(245,166,35,0.35);
  margin: 0 auto;
  display: block;
  box-shadow: 0 0 36px rgba(245,166,35,0.12);
}
.bonus-card-img { flex-direction: column; align-items: center; }
.bonus-card-img .bonus-content { text-align: center; }

/* =============================================
   RESPONSIVIDADE
   ============================================= */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .card-wide { grid-column: span 1; margin: 0; max-width: 100%; }
}

@media (max-width: 820px) {
  .autoridade-inner { flex-direction: column; gap: 32px; }
  .autoridade-visual { width: 100%; flex: 1; }
  .autoridade-inner .autoridade-text,
  .autoridade-inner .autoridade-destaque { text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .hero { padding: 48px 20px; min-height: auto; }
  .hero-logo { width: 150px; height: 150px; }
  .hero-proof-bar { flex-direction: column; gap: 6px; border-radius: 12px; }
  .bar-div { display: none; }
  .btn-hero { font-size: 15px; padding: 18px 24px; width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .card-img-wrap { height: 140px; }
  .bonus-card { flex-direction: column; padding: 24px; gap: 20px; text-align: center; }
  .pacotes-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .cta-mid-gatilhos { gap: 24px; }
  .urgency-bar { font-size: 12px; }
}
