/*
Theme Name: Protocolo 168
Theme URI: https://pay.kiwify.com.br/HB6NENS
Author: Protocolo 168
Description: Tema de landing page de alta conversão para o PROTOCOLO 168™ — dark, premium, mobile-first.
Version: 1.0.0
License: GPL v2 or later
Text Domain: protocolo168
*/

/* =========================================================
   PROTOCOLO 168 — Design System
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-card: #121212;
  --bg-card-2: #0f0f0f;
  --fg: #ffffff;
  --muted: #b3b3b3;
  --border: #292929;

  --green: #22c55e;
  --green-glow: #2ee06a;
  --orange: #f97316;
  --orange-glow: #ff8a3d;

  --radius: 1rem;

  --gradient-cta: linear-gradient(135deg, #22c55e, #16a34a);
  --gradient-accent: linear-gradient(135deg, #f97316, #ea580c);
  --gradient-hero:
    radial-gradient(ellipse at top, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(34, 197, 94, 0.12), transparent 60%);

  --glow-green: 0 0 30px rgba(34, 197, 94, 0.5), 0 0 60px rgba(34, 197, 94, 0.25);
  --glow-orange: 0 0 30px rgba(249, 115, 22, 0.5);
  --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p { margin: 0 0 1rem; color: var(--muted); }

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4rem 0; }

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}

.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-white { color: #fff; }
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }

.text-gradient-orange {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient-green {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-hero { background-image: var(--gradient-hero); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn-cta {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: var(--glow-green);
  font-size: 1.1rem;
  padding: 1.15rem 2rem;
}
.btn-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 50px rgba(34,197,94,0.85); }
.btn-xl { padding: 1.4rem 2.5rem; font-size: 1.2rem; border-radius: 1rem; }

.pulse-glow { animation: pulse-glow 2.4s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(34,197,94,0.5), 0 0 40px rgba(34,197,94,0.2); }
  50% { box-shadow: 0 0 35px rgba(34,197,94,0.8), 0 0 70px rgba(34,197,94,0.35); }
}

.card {
  background: linear-gradient(180deg, #161616, #0f0f0f);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(34,197,94,0.4); }

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--fg);
}
.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.x-list li::before { content: "✕"; color: #ef4444; }

.badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.3);
}

.hero { padding: 6rem 0 4rem; }
.hero h1 strong { color: var(--green); }
.hero .subtitle { font-size: 1.15rem; max-width: 640px; margin: 0 auto 2rem; }

.offer-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid var(--green);
  background: linear-gradient(180deg, #141414, #0c0c0c);
}
.price-old { text-decoration: line-through; color: var(--muted); font-size: 1.1rem; margin-right: 0.5rem; }
.price-now { font-size: clamp(3rem, 9vw, 4.5rem); font-weight: 900; color: var(--green); line-height: 1; }
.price-installments { color: var(--muted); margin-top: 0.5rem; }

.countdown {
  display: inline-flex;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
  font-variant-numeric: tabular-nums;
}
.countdown div {
  background: #000;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.6rem 0.9rem;
  min-width: 60px;
  text-align: center;
}
.countdown span { display: block; font-size: 1.4rem; font-weight: 800; color: var(--orange); }
.countdown small { font-size: 0.7rem; text-transform: uppercase; color: var(--muted); }

.testimonial { background: linear-gradient(180deg,#161616,#0f0f0f); }
.testimonial .stars { color: var(--orange); margin-bottom: 0.5rem; }
.testimonial .author { color: var(--muted); font-size: 0.9rem; margin-top: 1rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #101010;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--green); font-size: 1.5rem; font-weight: 800; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 1.25rem 1.25rem; }

.guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  border: 1px dashed var(--border);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: #0d0d0d;
}
.seal {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: var(--gradient-accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.05;
  box-shadow: var(--glow-orange);
}

.site-footer {
  padding: 3rem 0 6rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 50;
  display: block;
}
.sticky-mobile-cta .btn { width: 100%; }
@media (min-width: 768px) { .sticky-mobile-cta { display: none; } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
