/* =============================================
   LANDING NETWORK — CSS ISOLADO (SEM CONFLITO)
   ============================================= */

/* Reset base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body.nw-landing-body {
  display: block !important;  /* anula o display:flex global do sistema */
  background: #F7F8FA;
  font-family: 'Poppins', sans-serif;
  color: #111;
  min-height: 100vh;
}

/* Boxed layout */
.nw-landing-boxed {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ==========================================================
   HEADER FIXO (GLASS EFFECT)
   ========================================================== */

.nw-landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 300;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nw-landing-header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nw-landing-logo img {
  height: 46px;
  display: block;
}

/* NAV */

.nw-landing-nav {
  display: flex;
  gap: 28px;
}

.nw-landing-nav-link {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #6B7280;
  position: relative;
}

.nw-landing-nav-link:hover,
.nw-landing-nav-link--active {
  color: #2E2768;
}

.nw-landing-nav-link--active::after {
  content: "";
  height: 2px;
  background: linear-gradient(135deg, #A10D0E, #2E2768);
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  border-radius: 99px;
}

/* LOGIN BUTTON */

.nw-landing-login-btn {
  padding: 10px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #A10D0E, #2E2768);
  color: #FFF;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}

.nw-landing-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

.nw-landing-login-icon {
  font-size: 18px;
  filter: brightness(200%) invert(1);
}

/* ==========================================================
   MAIN LAYOUT
   ========================================================== */

.nw-landing-main {
  padding-top: 120px; /* para compensar o header fixo */
}

/* ==========================================================
   HERO DE TEXTO
   ========================================================== */

.nw-landing-hero-text {
  text-align: center;
  padding: 40px 0 20px;
}

.nw-landing-h1 {
  font-size: 96px;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 14px;
  background: linear-gradient(135deg, #A10D0E, #2E2768);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nw-landing-h2 {
  font-size: 64px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #2E2768;
}

.nw-landing-h3 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 30px;
  color: #A10D0E;
}

.nw-landing-btn-hero {
  font-size: 22px;
  padding: 16px 40px;
  border-radius: 50px;
}

/* ===============================
   BLOCO DE PREÇO DO HERO
   =============================== */

.nw-landing-pricing {
  margin-top: 10px;
  text-align: center;
}

.nw-price-old-new {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 6px;
  padding: 0;
}

.nw-price-old-new .old {
  background: linear-gradient(135deg, #A10D0E, #2E2768);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nw-price-old-new .new {
  background: linear-gradient(135deg, #A10D0E, #2E2768);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nw-price-deadline {
  font-size: 22px;
  margin: 0;
  color: #6B7280;
}

/* MOBILE */
@media (max-width: 768px) {
  .nw-price-old-new {
    font-size: 28px;
  }
  .nw-price-deadline {
    font-size: 16px;
  }
}


/* ==========================================================
   BOTÕES
   ========================================================== */

.nw-landing-btn {
  cursor: pointer;
  border: none;
  border-radius: 9999px;
  font-size: 15px;
  padding: 12px 26px;
  font-weight: 600;
  transition: .2s;
}

.nw-landing-btn-primary {
  background: linear-gradient(135deg, #A10D0E, #2E2768);
  color: #FFF;
  box-shadow: 0 8px 18px rgba(161,13,14,0.35);
}

.nw-landing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(46,39,104,0.50);
}

.nw-landing-btn-lg {
  font-size: 17px;
  padding: 14px 34px;
}

.nw-landing-btn-xl {
  font-size: 18px;
  padding: 18px 42px;
}

/* ==========================================================
   CARD DA OFERTA
   ========================================================== */

.nw-landing-offer-card {
  width: 100%;
  max-width: 420px;
  padding: 32px 26px;
  margin: 0 auto;
  text-align: center;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.nw-landing-offer-title {
  font-size: 22px;
  font-weight: 700;
  color: #2E2768;
}

.nw-landing-offer-text {
  font-size: 15px;
  line-height: 1.6;
  color: #6B7280;
}

.nw-landing-offer-old-price span {
  text-decoration: line-through;
  color: #6B7280;
}

.nw-landing-offer-new-price span {
  font-size: 42px;
  font-weight: 900;
  display: block;
  margin-top: -6px;
  background: linear-gradient(135deg, #A10D0E, #2E2768);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.nw-landing-offer-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.nw-landing-offer-badge {
  background: #F3F4FF;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
}

/* ==========================================================
   BÔNUS
   ========================================================== */

.nw-landing-bonus-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.nw-landing-section-title {
  font-size: 32px;
  font-weight: 800;
  color: #2E2768;
}

.nw-landing-section-title--light {
  color: #ffffff !important;
  margin-bottom: 22px;
}


/* ==========================================================
   BENEFÍCIOS
   ========================================================== */

/* GRID 4 COLUNAS DESKTOP */
@media (min-width: 1100px) {
  .nw-landing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

/* GRID MOBILE (já existia) */
@media (max-width: 1099px) {
  .nw-landing-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* CARD PREMIUM */
.nw-landing-benefit-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  padding: 28px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.18);
  text-align: center;
  transition: all 0.3s ease;
}

.nw-landing-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 16px 42px rgba(0,0,0,0.28);
}

/* ICONES ANIMADOS */
.nw-landing-benefit-icon {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s ease;
  margin-bottom: 14px;
}

.nw-landing-benefit-icon.animate-icon {
  opacity: 1;
  transform: scale(1);
}

/* TÍTULOS E TEXTOS */
.nw-landing-benefit-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
}

.nw-landing-benefit-card p {
  color: #ECECEC;
  font-size: 14px;
  line-height: 1.45;
}

/* ==========================================================
   CTA Final
   ========================================================== */

.nw-landing-cta-final {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.nw-landing-footer {
  background: #F1F2F5;
  padding: 18px 0;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.nw-landing-footer-inner {
  font-size: 13px;
  color: #6B7280;
}

.nw-landing-footer-inner a {
  color: #2E2768;
  font-weight: 600;
  text-decoration: none;
}

/* ==========================================================
   RESPONSIVIDADE — MOBILE (PERFEITO IGUAL AO MOCKUP)
   ========================================================== */

@media (max-width: 768px) {

  .nw-landing-logo img {
    height: 40px;
  }

  .nw-landing-nav {
    display: none;
  }

  .nw-landing-boxed {
    padding: 0 14px;
  }

  .nw-landing-h1 {
    font-size: 48px;
    line-height: 1.1;
  }

  .nw-landing-h2 {
    font-size: 28px;
  }

  .nw-landing-h3 {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .nw-landing-btn-hero {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: block;
    font-size: 18px;
  }

  .nw-landing-offer-card {
    padding: 26px 18px;
  }

  .nw-landing-benefits-grid {
    grid-template-columns: 1fr;
  }

  .nw-landing-btn-xl {
    width: 100%;
    max-width: 340px;
  }
}

/* Ajuste fino do espaçamento entre "Até 31/11" e o botão */
.nw-price-deadline {
  margin-bottom: 22px !important; /* aumenta o espaço */
}

.nw-landing-btn-hero {
  margin-top: 10px !important; /* evita colar no texto */
}


/* Logo dentro do card de oferta */
.nw-landing-offer-logo {
  margin-bottom: 14px;
}

.nw-landing-offer-logo img {
  height: 42px;
  display: block;
  margin: 0 auto;
}

/* Ícone WhatsApp no bônus */
.nw-bonus-whatsapp-icon {
  margin: 12px 0 18px;
  text-align: center;
}

.nw-bonus-whatsapp-icon img {
  width: 68px;
  height: auto;
  filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.25));
}


/* ==========================================================
   CORREÇÃO: CORES DO TÍTULO E TEXTOS DOS CARDS
   ========================================================== */

/* título continua branco */
.nw-landing-section-title--light {
  color: #FFF !important;
}

/* título de cada card */
.nw-landing-benefit-card h3 {
  color: #2E2768 !important;
  font-weight: 700;
  margin-bottom: 8px;
}

/* texto do card */
.nw-landing-benefit-card p {
  color: #4B4B4B !important;
  font-size: 15px;
  line-height: 1.45;
}

/* ==========================================================
   EFEITO HOVER COM GRADIENTE ANIMADO
   ========================================================== */

.nw-landing-benefit-card {
  background: #FFF;
  border-radius: 20px;
  padding: 26px 20px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0px 6px 24px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* animação de gradiente */
.nw-landing-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #A10D0E, #2E2768);
  opacity: 0;
  transition: opacity .35s ease;
  border-radius: inherit;
  z-index: 0;
}

.nw-landing-benefit-card:hover::before {
  opacity: 1;
}

.nw-landing-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 14px 38px rgba(0,0,0,0.22);
}

/* texto fica claro no hover */
.nw-landing-benefit-card:hover h3,
.nw-landing-benefit-card:hover p {
  color: #FFF !important;
}

/* ==========================================================
   ÍCONES SVG MUDAM DE COR NO HOVER
   ========================================================== */

.nw-landing-benefit-icon svg {
  transition: stroke .3s ease;
  z-index: 2;
  position: relative;
}

.nw-landing-benefit-card:hover svg {
  stroke: #FFF !important;
}

/* ==========================================================
   ANIMAÇÃO STAGGER (1 card depois do outro)
   ========================================================== */

.nw-landing-benefit-card {
  opacity: 0;
  transform: translateY(40px);
}

.nw-benefit-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.7s ease;
}


/* ============================================
   AJUSTES FINOS DA SEÇÃO "O QUE VOCÊ RECEBE?"
   ============================================ */

/* 1) Corrigir cor do título dentro do bloco de benefícios */
.nw-landing-benefits-wrapper .nw-landing-section-title--light {
  color: #2E2768 !important; 
  text-align: center;/* roxo escuro, visível no fundo claro */
}

/* 2) Card com gradiente animado no HOVER pegando o card inteiro */
.nw-landing-benefit-card {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;               /* normal = branco */
  border-radius: 22px;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.10);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.3s ease;
}

/* camada de gradiente por baixo do conteúdo */
.nw-landing-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #A10D0E, #2E2768);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* garantir que o conteúdo fique acima do gradiente */
.nw-landing-benefit-card > * {
  position: relative;
  z-index: 1;
}

/* HOVER: ativa gradiente no card inteiro + aumenta sombra */
.nw-landing-benefit-card:hover::before {
  opacity: 1;
}

.nw-landing-benefit-card:hover {
  box-shadow: 0px 16px 40px rgba(0,0,0,0.25);
}

/* texto claro no hover */
.nw-landing-benefit-card h3,
.nw-landing-benefit-card p {
  color: #2E2768;               /* estado normal */
}

.nw-landing-benefit-card:hover h3,
.nw-landing-benefit-card:hover p {
  color: #FFFFFF !important;    /* no hover, fica branco em cima do gradiente */
}

/* 3) SVG muda de cor no hover */
.nw-landing-benefit-icon svg {
  transition: stroke 0.3s ease, fill 0.3s ease;
}

.nw-landing-benefit-card:hover svg {
  stroke: #FFFFFF !important;
  fill: none;
}

/* 4) Animação STAGGER: classe que o JS adiciona */
.nw-benefit-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

