/*
Theme Name: Adrenalize
Theme URI: https://adrenalize.com.br
Author: Adrenalize Marketing
Author URI: https://adrenalize.com.br
Description: Tema oficial da Adrenalize Marketing Digital. Design moderno, dark, focado em conversão.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: adrenalize
*/

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

:root {
  --orange: #FF5500;
  --orange-light: rgba(255,85,0,0.15);
  --orange-border: rgba(255,85,0,0.4);
  --bg: #0D0D0D;
  --bg2: #111111;
  --bg3: #141414;
  --surface: #1a1a1a;
  --border: #222222;
  --text: #ffffff;
  --text2: #aaaaaa;
  --text3: #666666;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 500; line-height: 1.3; }
h3 { font-size: 18px; font-weight: 500; }
h4 { font-size: 15px; font-weight: 500; }
p { font-size: 15px; line-height: 1.7; color: var(--text2); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-dark { background: var(--bg); }
.section-light { background: var(--bg2); }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.divider { height: 1px; background: var(--border); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; border: none; border-radius: 8px; padding: 13px 28px; font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: var(--font); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #e04a00; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-white { background: #fff; color: var(--orange); }
.btn-white:hover { background: #f0f0f0; }

/* ===== SECTION LABELS ===== */
.section-tag { font-size: 11px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; display: block; }
.section-title { color: var(--text); margin-bottom: 12px; }
.section-sub { color: var(--text3); font-size: 15px; max-width: 520px; }

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: var(--orange);
  padding: 10px 2rem;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap; position: relative; z-index: 200;
}
.urgency-bar span { font-size: 13px; color: #fff; font-weight: 500; }
.urgency-pill { background: rgba(0,0,0,0.25); border-radius: 20px; padding: 3px 12px; font-size: 12px; color: #fff; display: flex; align-items: center; gap: 6px; }
.urgency-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }
.urgency-cta { background: #fff; color: var(--orange); border: none; border-radius: 20px; padding: 5px 16px; font-size: 12px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.urgency-cta:hover { background: #f0f0f0; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 38px; width: auto; }
.site-logo-text { font-size: 17px; font-weight: 700; letter-spacing: 2px; color: #fff; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 13px; color: var(--text3); transition: color 0.2s; }
.main-nav a:hover { color: var(--text); }
.nav-club-link { background: var(--orange-light); border: 1px solid var(--orange-border); color: var(--orange) !important; border-radius: 6px; padding: 5px 14px; font-weight: 500; }
.nav-club-link:hover { background: rgba(255,85,0,0.25) !important; }
.nav-cta { background: var(--orange); color: #fff !important; border: none; border-radius: 8px; padding: 9px 18px; font-size: 13px; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 7px; }
.nav-cta:hover { background: #e04a00 !important; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* ===== HERO ===== */
.hero-section {
  background: var(--bg);
  padding: 6rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--orange-light); border: 1px solid var(--orange-border); color: var(--orange); font-size: 12px; border-radius: 20px; padding: 5px 16px; margin-bottom: 1.5rem; }
.hero-title { color: #fff; margin-bottom: 1.25rem; }
.hero-title span { color: var(--orange); }
.hero-desc { color: var(--text3); font-size: 16px; max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: 14px; overflow: hidden; max-width: 700px; margin: 0 auto; }
.hero-stat { background: var(--bg3); padding: 1.5rem 1rem; text-align: center; }
.hero-stat .num { font-size: 26px; font-weight: 600; color: var(--orange); }
.hero-stat .lbl { font-size: 11px; color: var(--text3); margin-top: 5px; }

/* ===== PLATFORMS ===== */
.platforms { padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.platforms-label { font-size: 12px; color: var(--text3); text-align: center; margin-bottom: 1rem; }
.platforms-row { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.platform-pill { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 7px 16px; font-size: 13px; color: var(--text3); display: flex; align-items: center; gap: 7px; transition: all 0.2s; }
.platform-pill:hover { border-color: var(--orange-border); color: var(--text); }

/* ===== CLUBE VISIBILIDADE ===== */
.clube-section { background: #0a0a0a; padding: 5rem 0; }
.clube-badges { display: flex; align-items: center; gap: 10px; margin-bottom: 2rem; }
.badge-red { background: var(--orange); color: #fff; font-size: 11px; font-weight: 600; border-radius: 5px; padding: 4px 12px; letter-spacing: 0.5px; }
.badge-vagas { background: var(--orange-light); border: 1px solid var(--orange-border); color: var(--orange); font-size: 11px; font-weight: 500; border-radius: 5px; padding: 4px 12px; display: flex; align-items: center; gap: 6px; }
.clube-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.clube-card-top { background: linear-gradient(135deg,#1a0a00,#110500); border-bottom: 1px solid #2a1400; padding: 2.5rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.clube-tag { font-size: 11px; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.clube-title { font-size: 30px; font-weight: 600; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.clube-sub { font-size: 15px; color: #888; line-height: 1.7; max-width: 460px; }
.price-box { background: var(--orange-light); border: 1px solid var(--orange-border); border-radius: 14px; padding: 1.5rem 2rem; text-align: center; min-width: 180px; }
.price-label { font-size: 11px; color: var(--orange); margin-bottom: 8px; letter-spacing: 1px; }
.price-value { font-size: 36px; font-weight: 700; color: #fff; }
.price-period { font-size: 13px; color: #888; margin-top: 6px; }
.price-note { font-size: 11px; color: var(--orange); margin-top: 10px; background: rgba(255,85,0,0.15); border-radius: 5px; padding: 4px 10px; display: inline-block; }
.countdown { display: flex; gap: 6px; justify-content: center; margin-top: 14px; }
.cd-block { background: #1a1a1a; border-radius: 8px; padding: 8px 10px; text-align: center; min-width: 44px; }
.cd-num { font-size: 20px; font-weight: 600; color: var(--orange); }
.cd-lbl { font-size: 9px; color: var(--text3); margin-top: 3px; }
.cd-sep { font-size: 20px; color: #333; padding-top: 8px; }
.clube-card-body { padding: 2rem 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.clube-features { display: flex; flex-direction: column; gap: 12px; }
.clube-feat { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #aaa; }
.feat-check { width: 20px; height: 20px; border-radius: 50%; background: var(--orange-light); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.vagas-box { background: #0d0d0d; border: 1px solid #1f1f1f; border-radius: 12px; padding: 1.5rem; }
.vagas-title { font-size: 12px; color: var(--text3); margin-bottom: 14px; }
.vagas-bar-wrap { background: var(--surface); border-radius: 20px; height: 8px; margin-bottom: 10px; overflow: hidden; }
.vagas-bar-fill { height: 100%; border-radius: 20px; background: var(--orange); }
.vagas-info { display: flex; justify-content: space-between; font-size: 11px; color: var(--text3); margin-bottom: 14px; }
.vagas-info .vagas-count { color: var(--orange); font-weight: 600; }
.vagas-slots { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.vaga-slot { width: 30px; height: 30px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; }
.vaga-taken { background: var(--orange-light); color: var(--orange); }
.vaga-free { background: var(--surface); border: 1px dashed #333; color: var(--text3); }
.vagas-cta { background: var(--orange); color: #fff; border: none; border-radius: 9px; width: 100%; padding: 13px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s; font-family: var(--font); }
.vagas-cta:hover { background: #e04a00; }
.timer-row { display: flex; align-items: center; gap: 7px; margin-top: 12px; justify-content: center; }
.timer-label { font-size: 11px; color: var(--text3); }
.timer-val { font-size: 11px; color: var(--orange); font-weight: 600; }

/* ===== SERVIÇOS ===== */
.services-section { background: var(--bg); padding: 5rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1rem; margin-top: 3rem; }
.svc-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; transition: border-color 0.2s, transform 0.2s; }
.svc-card:hover { border-color: var(--orange-border); transform: translateY(-2px); }
.svc-icon { width: 40px; height: 40px; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--orange); font-size: 20px; }
.svc-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.svc-desc { font-size: 12px; color: var(--text3); line-height: 1.6; }

/* ===== COMO FUNCIONA ===== */
.steps-section { padding: 5rem 0; }
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.steps-list { display: flex; flex-direction: column; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1.5rem; position: relative; }
.step-connector { position: absolute; left: 15px; top: 32px; bottom: 0; width: 1px; background: var(--border); }
.step-item:last-child .step-connector { display: none; }
.step-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--orange-light); border: 1px solid var(--orange-border); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 12px; font-weight: 600; flex-shrink: 0; }
.step-body { padding-top: 4px; }
.step-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--text3); line-height: 1.6; }

/* ===== DEPOIMENTOS ===== */
.testimonials-section { padding: 5rem 0; background: var(--bg2); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.25rem; margin-top: 3rem; }
.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; }
.testi-stars { color: var(--orange); font-size: 14px; margin-bottom: 1rem; }
.testi-text { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--orange); flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 600; color: #fff; }
.testi-role { font-size: 12px; color: var(--text3); }

/* ===== CTA BAND ===== */
.cta-band { background: var(--orange); padding: 4rem 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 16px; }

/* ===== FOOTER ===== */
.site-footer { background: #080808; border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-brand img { height: 34px; width: auto; }
.footer-brand-name { font-size: 16px; font-weight: 700; letter-spacing: 2px; color: #fff; }
.footer-desc { font-size: 13px; color: var(--text3); line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 1rem; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 13px; color: var(--text3); margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: #444; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--text3); font-size: 16px; transition: all 0.2s; }
.social-link:hover { border-color: var(--orange); color: var(--orange); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; background: #25D366; color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .clube-card-top { grid-template-columns: 1fr; }
  .clube-card-body { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  h1 { font-size: 32px; }
  .hero-section { padding: 4rem 0 3rem; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
