/*
Theme Name: Codigo Selvagem
Theme URI: https://example.com/
Author: Codigo Selvagem
Author URI: https://example.com/
Description: Landing page de vendas para o protocolo Mounjaro Natural - Codigo Selvagem.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: codigo-selvagem
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --radius: 0.75rem;
  --background: #fcfbf7;
  --foreground: #1a2a1f;
  --card: #ffffff;
  --primary: #3d6b3a;            /* verde musgo / floresta */
  --primary-foreground: #ffffff;
  --secondary: #eef3ec;
  --muted: #f3f2ee;
  --muted-foreground: #6b7367;
  --border: #e3e3dc;
  --cta: #f97316;                /* laranja vibrante */
  --cta-foreground: #ffffff;
  --cta-2: #ea580c;
  --danger: #b91c1c;
  --dark: #1d231e;
  --dark-foreground: #ececea;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 900px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(120deg, #3d6b3a, #6aa46c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================================
   1. TOP BAR
   ============================================================ */
.topbar {
  background: #4a0f0f;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero { padding: 2.5rem 0 3rem; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.08;
  background:
    radial-gradient(circle at 20% 10%, #3d6b3a 0, transparent 40%),
    radial-gradient(circle at 80% 60%, #6aa46c 0, transparent 45%);
}
.hero .super { color: var(--danger); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; margin-bottom: 0.75rem; }
.hero h1 { font-size: clamp(1.85rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.05; }
.hero h1 .sub {
  display: block; margin-top: 0.6rem;
  font-size: clamp(1.05rem, 2.6vw, 1.6rem); font-weight: 700;
  color: var(--muted-foreground);
}

.hero-image-card {
  margin-top: 2rem; position: relative; border-radius: 1.25rem; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
@media (min-width: 640px) { .hero-image-card { aspect-ratio: 16 / 9; } }
.hero-image-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-image-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1) 50%, transparent);
}
.hero-image-card .label {
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; text-align: left;
}
.hero-image-card .label .pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--cta); color: var(--cta-foreground);
  font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
.hero-image-card .label p {
  margin-top: 0.75rem; color: #fff; font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.5rem); line-height: 1.2; max-width: 28rem;
}

/* ============================================================
   3. LEAD
   ============================================================ */
.lead { background: #eef3ec80; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3.5rem 0; }
.lead-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .lead-grid { grid-template-columns: 3fr 2fr; } }
.lead-grid p { margin-bottom: 1.1rem; font-size: 1.05rem; line-height: 1.65; }
.lead-grid .img-wrap { position: relative; border-radius: 1.25rem; overflow: hidden; box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2); border: 1px solid var(--border); aspect-ratio: 1; }
.lead-grid .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.lead-grid .img-wrap .badge {
  position: absolute; bottom: 0.75rem; left: 0.75rem; right: 0.75rem;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-radius: 0.75rem; padding: 0.5rem 0.75rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700;
  box-shadow: 0 10px 25px -10px rgba(0,0,0,0.25);
}
.lead-grid .img-wrap .badge::before {
  content: ""; width: 12px; height: 12px;
  background: var(--primary); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M17 8C8 10 5 16 3 22h2c1-4 4-7 8-9-3 1-6 4-7 8 5-1 11-3 13-13z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M17 8C8 10 5 16 3 22h2c1-4 4-7 8-9-3 1-6 4-7 8 5-1 11-3 13-13z'/></svg>") center/contain no-repeat;
}

/* ============================================================
   4. PROBLEMA (dark)
   ============================================================ */
.problema { background: var(--dark); color: var(--dark-foreground); padding: 4rem 0; }
.problema h2 { text-align: center; font-size: clamp(1.85rem, 4.5vw, 3rem); font-weight: 900; max-width: 48rem; margin: 0 auto; line-height: 1.15; }
.problema h2 .accent { color: var(--cta); }
.problema .copy { max-width: 48rem; margin: 1.75rem auto 0; text-align: center; font-size: 1.05rem; line-height: 1.65; opacity: 0.9; }
.problema .copy p { margin-bottom: 0.75rem; }
.problema .copy p.warn { color: var(--cta); font-weight: 700; }
.problema .cards { margin-top: 2.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .problema .cards { grid-template-columns: repeat(3, 1fr); } }
.problema .card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.85rem; padding: 1.25rem;
}
.problema .card .icon-x {
  display: inline-flex; width: 40px; height: 40px; border-radius: 999px;
  background: rgba(185,28,28,0.2); border: 1px solid rgba(185,28,28,0.4);
  align-items: center; justify-content: center; color: var(--danger);
  font-weight: 900; font-size: 1.1rem; margin-bottom: 0.75rem;
}
.problema .card h3 { font-size: 1.1rem; color: #fff; }
.problema .card p { font-size: 0.9rem; opacity: 0.7; margin-top: 0.25rem; }

/* ============================================================
   5. SOLUCAO (3 pilares)
   ============================================================ */
.solucao { padding: 4rem 0; }
.solucao .head { text-align: center; max-width: 48rem; margin: 0 auto; }
.solucao .head .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); background: rgba(61,107,58,0.1); padding: 0.3rem 0.75rem; border-radius: 999px;
}
.solucao .head h2 { margin-top: 1rem; font-size: clamp(1.85rem, 4.5vw, 3rem); font-weight: 900; line-height: 1.15; }
.solucao .grid { margin-top: 3rem; display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .solucao .grid { grid-template-columns: repeat(3, 1fr); } }
.solucao .card {
  background: var(--card); border: 1px solid var(--border); border-radius: 1rem;
  padding: 1.75rem; box-shadow: 0 8px 30px -12px rgba(40,60,40,0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.solucao .card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -12px rgba(40,60,40,0.3); }
.solucao .card .icon {
  width: 56px; height: 56px; border-radius: 1rem;
  background: var(--primary); color: var(--primary-foreground);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 10px 20px -8px rgba(61,107,58,0.4);
  margin-bottom: 1.25rem;
}
.solucao .card h3 { font-size: 1.2rem; font-weight: 800; }
.solucao .card .sub { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-top: 0.15rem; }
.solucao .card p { margin-top: 0.75rem; line-height: 1.6; color: rgba(26,42,31,0.85); }

/* ============================================================
   6. PROVA SOCIAL
   ============================================================ */
.prova { background: #eef3ec80; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 0; }
.prova .head { text-align: center; max-width: 48rem; margin: 0 auto; }
.prova .head .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cta); background: rgba(249,115,22,0.1); padding: 0.3rem 0.75rem; border-radius: 999px;
}
.prova .head h2 { margin-top: 1rem; font-size: clamp(1.85rem, 4.5vw, 3rem); font-weight: 900; line-height: 1.15; }
.prova .stars { color: var(--cta); margin-top: 1rem; font-size: 0.95rem; }
.prova .stars .num { color: var(--foreground); margin-left: 0.5rem; font-weight: 600; opacity: 0.8; }

.prova .card {
  margin: 3rem auto 0; max-width: 28rem;
  background: var(--card); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden;
  box-shadow: 0 8px 30px -12px rgba(40,60,40,0.25);
}
.prova .card .img { position: relative; }
.prova .card .img img { width: 100%; height: auto; display: block; }
.prova .card .badge-row {
  position: absolute; top: 0.75rem; left: 0.75rem; right: 0.75rem;
  display: flex; justify-content: space-between;
  font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em;
}
.prova .card .badge-row .b1 { background: rgba(0,0,0,0.7); color: #fff; padding: 0.3rem 0.6rem; border-radius: 0.4rem; }
.prova .card .badge-row .b2 { background: var(--primary); color: #fff; padding: 0.3rem 0.6rem; border-radius: 0.4rem; }
.prova .card .kg {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  background: var(--cta); color: var(--cta-foreground);
  padding: 0.4rem 0.75rem; border-radius: 0.5rem;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.3);
}
.prova .card .kg b { display: block; font-size: 1.15rem; line-height: 1; font-weight: 900; }
.prova .card .kg span { display: block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.95; }
.prova .card .body { padding: 1.25rem; }
.prova .card .body .stars { color: var(--cta); margin: 0 0 0.4rem; font-size: 0.85rem; }
.prova .card .body blockquote { font-style: italic; line-height: 1.6; color: rgba(26,42,31,0.85); margin: 0; }
.prova .card .body .name { margin-top: 0.85rem; font-weight: 700; font-size: 0.92rem; }
.prova .card .body .verified { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.1rem; }
.prova .disclaimer { margin-top: 2rem; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); max-width: 36rem; margin-left: auto; margin-right: auto; }

/* ============================================================
   7. OFERTA
   ============================================================ */
.oferta { padding: 0 0 4rem; }
.oferta .frame {
  max-width: 720px; margin: 0 auto; padding: 4px; border-radius: 1.5rem;
  background: linear-gradient(135deg, #3d6b3a, #f97316, #3d6b3a);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
}
.oferta .inner { background: var(--card); border-radius: calc(1.5rem - 4px); padding: 2.5rem 1.5rem; text-align: center; }
.oferta .pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(249,115,22,0.1); color: var(--cta);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
.oferta p.lead { margin: 1.5rem auto 0; font-size: 1.1rem; line-height: 1.6; max-width: 32rem; }
.oferta .price { margin: 2rem 0; }
.oferta .price .old { color: var(--muted-foreground); text-decoration: line-through; font-size: 0.9rem; }
.oferta .price .now { display: flex; justify-content: center; align-items: baseline; gap: 0.5rem; margin-top: 0.25rem; }
.oferta .price .now .lbl { font-weight: 600; opacity: 0.7; }
.oferta .price .now .val { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 900; }
.oferta .price .note { display: block; margin-top: 0.5rem; font-size: 0.85rem; color: var(--muted-foreground); }
.oferta ul.checks {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: 0.5rem; font-size: 0.9rem;
}
@media (min-width: 640px) { .oferta ul.checks { grid-template-columns: repeat(3, 1fr); } }
.oferta ul.checks li { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; }
.oferta ul.checks li::before { content: "✓"; color: var(--primary); font-weight: 900; }

/* ============================================================
   CTA BUTTON
   ============================================================ */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: linear-gradient(180deg, #fb923c, var(--cta-2));
  color: var(--cta-foreground);
  font-family: 'Montserrat', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  padding: 1.1rem 2rem; border-radius: 0.85rem; border: 0;
  cursor: pointer;
  box-shadow: 0 10px 30px -8px rgba(234,88,12,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  width: 100%; max-width: 28rem;
}
@media (min-width: 640px) { .btn-cta { width: auto; } }
.btn-cta:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.06); box-shadow: 0 18px 40px -10px rgba(234,88,12,0.7); }
.btn-cta::before {
  content: "🔒"; font-size: 1.1rem;
}
.pulse-cta { animation: pulseCta 2s ease-in-out infinite; }
@keyframes pulseCta {
  0%,100% { box-shadow: 0 10px 30px -8px rgba(234,88,12,0.55), 0 0 0 0 rgba(249,115,22,0.55); }
  50%     { box-shadow: 0 14px 34px -8px rgba(234,88,12,0.7), 0 0 0 18px rgba(249,115,22,0); }
}

/* ============================================================
   8. GARANTIA
   ============================================================ */
.garantia { background: #eef3ec80; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3.5rem 0; }
.garantia .row {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center;
}
@media (min-width: 640px) { .garantia .row { flex-direction: row; text-align: left; } }
.garantia .seal {
  flex-shrink: 0; width: 96px; height: 96px; border-radius: 999px;
  background: var(--primary); color: var(--primary-foreground);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 20px 40px -10px rgba(61,107,58,0.4);
  outline: 4px solid rgba(61,107,58,0.2);
}
.garantia h3 { font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 900; }
.garantia p { margin-top: 0.5rem; line-height: 1.6; opacity: 0.85; }

/* ============================================================
   9. FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(236,236,234,0.8); padding: 3rem 0; text-align: center; }
.site-footer .brand { font-family: 'Montserrat', sans-serif; font-weight: 900; color: #fff; font-size: 1.25rem; letter-spacing: 0.02em; }
.site-footer nav { margin: 1rem 0; display: flex; gap: 1.5rem; justify-content: center; font-size: 0.9rem; }
.site-footer nav a:hover { color: #fff; }
.site-footer .small { font-size: 0.75rem; opacity: 0.7; max-width: 36rem; margin: 0.75rem auto 0; line-height: 1.6; }
.site-footer .copy { font-size: 0.7rem; opacity: 0.5; margin-top: 0.75rem; }
