/* Club CS — Modern Light Green Theme */

:root {
  --bg: #f0fdf4;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-hover: #ecfdf5;
  --glass: rgba(255, 255, 255, 0.88);
  --white: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --primary: #16a34a;
  --primary-light: #22c55e;
  --accent-bright: #15803d;
  --gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 45%, #059669 100%);
  --gradient-text: linear-gradient(135deg, #16a34a 0%, #059669 50%, #0d9488 100%);
  --glow: 0 0 48px rgba(34, 197, 94, 0.18);
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.1);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --header-h: 76px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1160px, calc(92vw - 2rem));
  height: var(--header-h);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: top 0.3s var(--ease), box-shadow 0.3s;
}

.header.scrolled {
  top: 0.6rem;
  box-shadow: var(--shadow-lg), var(--glow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 0.5rem 0 1.25rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
}

.logo em {
  font-style: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.nav a:hover { color: var(--accent-bright); background: var(--surface-hover); }
.nav a.active { color: var(--accent-bright); background: rgba(34, 197, 94, 0.12); font-weight: 600; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  padding: 0.55rem;
}

.menu-toggle svg { width: 22px; height: 22px; display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover { box-shadow: 0 8px 28px rgba(34, 197, 94, 0.45); }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover { background: var(--surface-hover); border-color: rgba(34, 197, 94, 0.35); color: var(--accent-bright); }

.btn-whatsapp {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.95rem 1.75rem; font-size: 0.95rem; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 520px; height: 520px;
  background: rgba(34, 197, 94, 0.15);
  top: -120px; right: -80px;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(16, 185, 129, 0.1);
  bottom: 0; left: -100px;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 280px; height: 280px;
  background: rgba(5, 150, 105, 0.1);
  top: 40%; left: 35%;
  animation-delay: -5s;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
  animation: fade-up 0.8s var(--ease) both;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.hero-pill-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-glow 2s infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Service cards */
.services {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: var(--shadow-lg), var(--glow);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: #ecfdf5;
  border: 1px solid rgba(34, 197, 94, 0.15);
  color: var(--primary);
}

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 0.6rem; color: var(--accent-bright); }

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
  background: #ecfdf5;
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

/* ── Stats ── */
.stats-bar {
  border-block: 1px solid var(--border);
  background: var(--white);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Sections ── */
section { padding: 5.5rem 0; }

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.section-head .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 0.85rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
}

.feature:hover {
  background: var(--white);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

/* ── Steps ── */
.steps-wrap {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step {
  position: relative;
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.1rem;
}

.step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ── Praças ── */
.search-box {
  position: relative;
  max-width: 440px;
  margin: 0 auto 1.5rem;
}

.search-box svg {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 0.9rem 1.25rem 0.9rem 2.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}

.search-box input:focus {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.search-box input::placeholder { color: var(--text-muted); }

.pracas-meta {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.pracas-meta span { color: var(--primary-light); font-weight: 600; }

.pracas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.75rem;
  max-height: 460px;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.pracas-grid::-webkit-scrollbar { width: 5px; }
.pracas-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.praca-chip {
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}

.praca-chip:hover {
  border-color: rgba(34, 197, 94, 0.35);
  background: #ecfdf5;
}

.praca-chip.hidden { display: none; }

.praca-chip strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 0.2rem;
}

.praca-chip span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; }

.no-results {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
  display: none;
}

.no-results.visible { display: block; }

/* ── CTA ── */
.cta-section { padding: 5rem 0; }

.cta-card {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.06;
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-card > * { position: relative; }

.cta-card h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.cta-card p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  background: var(--white);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.85rem;
  max-width: 300px;
  line-height: 1.6;
}

.footer-cols {
  display: flex;
  gap: 3.5rem;
}

.footer-cols h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.footer-cols a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-cols a:hover { color: var(--primary-light); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 54px;
  height: 54px;
  background: #16a34a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.45);
  transition: transform 0.2s var(--ease);
}

.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ── Pricing page ── */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.page-hero p { color: var(--text-muted); font-size: 1.05rem; }

.page-hero .label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 0.85rem;
}

.pricing-section { padding: 0 0 5rem; }

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 0.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-inline: auto;
  box-shadow: var(--shadow);
}

.plan-tab {
  padding: 0.65rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.plan-tab:hover { color: var(--text); }
.plan-tab.active {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

.plan-panel { display: none; }
.plan-panel.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  box-shadow: var(--shadow);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: var(--glow);
  position: relative;
}

.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gradient);
  color: #fff;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}

.price-top {
  padding: 2rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.price-top h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-amount sup {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
}

.price-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-features { flex: 1; margin-bottom: 1.5rem; }

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.price-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.price-card .btn { width: 100%; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .services { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .header { width: calc(100% - 1.5rem); top: 0.75rem; border-radius: 16px; }
  .header-inner { padding: 0 0.75rem; }

  .menu-toggle { display: block; }
  .nav { display: none; }
  .nav-cta { display: none; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--header-h) + 1.5rem);
    left: 0.75rem;
    right: 0.75rem;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
  }

  .nav.open a { width: 100%; padding: 0.85rem 1rem; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .footer-cols { gap: 2rem; }
  .footer-top { flex-direction: column; }
}
