/*
Theme Name: Notoriety LP
Theme URI: https://notorietyads.com.br
Author: Notoriety Ads
Author URI: https://notorietyads.com.br
Description: Landing page de diagnóstico de crescimento da Notoriety Ads. Quiz de 4 etapas com pixel do Meta integrado, prova social e redirect para WhatsApp.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: notoriety-lp
*/

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #080808;
  --bg2:          #111111;
  --bg3:          #1a1a1a;
  --purple:       #7c3aed;
  --purple-light: #9d5cf0;
  --purple-dark:  #5b21b6;
  --orange:       #f97316;
  --pink:         #ec4899;
  --text:         #ffffff;
  --text2:        #a1a1aa;
  --text3:        #71717a;
  --border:       #27272a;
  --radius:       14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nt-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(8,8,8,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text);
}

.nt-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.nt-nav-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 20px;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.nt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}

.nt-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.nt-glow-purple {
  background: rgba(124,58,237,0.15);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}

.nt-glow-orange {
  background: rgba(249,115,22,0.08);
  bottom: 0; right: -100px;
}

.nt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
  text-align: center;
}

/* ─────────────────────────────────────────
   EYEBROW
───────────────────────────────────────── */
.nt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text2);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.nt-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: nt-pulse-dot 2s infinite;
}

@keyframes nt-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
.nt-h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--text);
}

.nt-gradient-text {
  background: linear-gradient(90deg, var(--purple-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nt-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text2);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ─────────────────────────────────────────
   SOCIAL PROOF BAR
───────────────────────────────────────── */
.nt-social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.nt-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text2);
}

.nt-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.nt-stat-sep {
  width: 1px; height: 28px;
  background: var(--border);
}

.nt-avatars { display: flex; }

.nt-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--purple), var(--orange));
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.nt-avatar:first-child { margin-left: 0; }

/* ─────────────────────────────────────────
   QUIZ CARD
───────────────────────────────────────── */
#nt-quiz {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.nt-quiz-card {
  background: rgba(17,17,17,0.95);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(124,58,237,0.1), 0 24px 48px rgba(0,0,0,0.4);
}

/* Progress */
.nt-progress-wrap { margin-bottom: 28px; }

.nt-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.nt-progress-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nt-progress-pct {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-light);
}

.nt-progress-bar {
  height: 4px;
  background: var(--bg3);
  border-radius: 999px;
  overflow: hidden;
}

.nt-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--orange));
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Steps */
.nt-step { display: none; }

.nt-step.active {
  display: block;
  animation: nt-fadeUp 0.35s ease;
}

@keyframes nt-fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nt-step-question {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text);
}

.nt-step-hint {
  font-size: 14px;
  color: var(--text3);
  margin-bottom: 24px;
}

/* Options */
.nt-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nt-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 18px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.nt-option:hover {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.5);
  transform: translateX(4px);
}

.nt-option .nt-arrow {
  color: var(--text3);
  font-size: 13px;
  transition: transform 0.2s, color 0.2s;
}

.nt-option:hover .nt-arrow {
  transform: translateX(3px);
  color: var(--purple-light);
}

/* Contact form */
.nt-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nt-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.nt-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
}

.nt-form-label .optional {
  color: var(--text3);
  font-weight: 400;
}

.nt-form-input {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.nt-form-input::placeholder { color: var(--text3); }

.nt-form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.nt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.nt-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border: none;
  border-radius: var(--radius);
  color: white;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-top: 4px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.35);
}

.nt-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.5);
}

.nt-submit-btn:active { transform: translateY(0); }

.nt-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text3);
}

/* ─────────────────────────────────────────
   THANK YOU
───────────────────────────────────────── */
.nt-thankyou { text-align: center; padding: 8px 0; }

.nt-check-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 0 40px rgba(34,197,94,0.3);
  animation: nt-pop 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes nt-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.nt-thankyou-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.nt-thankyou-sub {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto 28px;
}

.nt-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #16a34a;
  border: none;
  border-radius: var(--radius);
  color: white;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(22,163,74,0.4);
}

.nt-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,163,74,0.5);
  color: white;
  text-decoration: none;
}

.nt-redirect-note {
  font-size: 12px;
  color: var(--text3);
  margin-top: 14px;
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.nt-how {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.nt-section-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
}

.nt-section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
  color: var(--text);
}

.nt-section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

.nt-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  max-width: 860px;
  margin: 0 auto;
}

.nt-how-step { padding: 28px 24px; text-align: center; }

.nt-how-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(249,115,22,0.2));
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--purple-light);
  margin: 0 auto 16px;
}

.nt-how-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.nt-how-desc  { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ─────────────────────────────────────────
   RESULTS
───────────────────────────────────────── */
.nt-results {
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.nt-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.nt-result-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: border-color 0.2s;
}

.nt-result-card:hover { border-color: rgba(124,58,237,0.4); }

.nt-result-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.nt-result-metric {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.nt-result-client {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 12px;
}

.nt-result-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.nt-faq {
  padding: 60px 24px 80px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nt-faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }

.nt-faq-q {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  color: var(--text);
}

.nt-faq-icon {
  font-size: 18px;
  color: var(--text3);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.nt-faq-item.open .nt-faq-icon { transform: rotate(45deg); }

.nt-faq-a {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.nt-faq-item.open .nt-faq-a { max-height: 300px; padding-top: 12px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.nt-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text3);
  position: relative;
  z-index: 1;
}

.nt-footer a { color: var(--text3); text-decoration: none; }
.nt-footer a:hover { color: var(--text2); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 640px) {
  .nt-quiz-card { padding: 24px 20px; }
  .nt-hero { padding: 90px 16px 48px; }
  .nt-social-bar { gap: 16px; }
  .nt-stat-sep { display: none; }
  .nt-form-row { grid-template-columns: 1fr; }
}
