/* ============================================================
   globals.css — LITH Marketing
   Estilos compartilhados entre todas as páginas
   ============================================================ */

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ── NOISE TEXTURE ── */
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.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.5;
}

/* ── CSS VARIABLES ── */
:root {
  --bg:      #0a0a0a;
  --bg2:     #111111;
  --bg3:     #181818;
  --surface: #1e1e1e;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --accent:  #2563EB;
  --accent2: #3B82F6;
  --gold:    #F5C842;
  --gold2:   #E8B920;
  --text:    #f0ede8;
  --muted:   #c8c8c8;
  --muted2:  #555;
  --green:   #34D399;
  --blue:    #60A5FA;
  --purple:  #A78BFA;
  --red:     #F87171;
}

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.divider   { height: 1px; background: var(--border); }
.center    { text-align: center; }
.center .sec-p { margin: 0 auto; }
section    { padding: 88px 0; }

/* ── TYPOGRAPHY UTILS ── */
.sec-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: 100px;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
  color: var(--accent2); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px;
}
.sec-label.green  { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.2);  color: var(--green); }
.sec-label.gold   { background: rgba(245,200,66,0.1);  border-color: rgba(245,200,66,0.2);  color: var(--gold); }
.sec-label.purple { background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.2); color: var(--purple); }
.sec-label.blue   { background: rgba(37,99,235,0.1);   border-color: rgba(37,99,235,0.2);   color: var(--accent2); }

.sec-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.sec-h2 em   { font-style: normal; color: var(--accent2); }
.sec-h2.gold em { color: var(--gold); }
.sec-p { color: var(--muted); font-size: 0.96rem; line-height: 1.75; max-width: 520px; }

/* ── TAG PILLS ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(0,212,232,0.12); border: 1px solid rgba(0,212,232,0.25);
  color: #33DDED; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.tag-green  { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.2);  color: var(--green); }
.tag-gold   { background: rgba(245,200,66,0.1);  border-color: rgba(245,200,66,0.2);  color: var(--gold); }
.tag-purple { background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.2); color: var(--purple); }
.tag-blue   { background: rgba(96,165,250,0.1);  border-color: rgba(96,165,250,0.2);  color: var(--blue); }

/* ── BUTTONS ── */
.btn-primary {
  padding: 14px 28px; border-radius: 10px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(37,99,235,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,0.4); }

.btn-secondary {
  padding: 14px 28px; border-radius: 10px;
  background: var(--surface); color: var(--text);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1px solid var(--border2); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: var(--bg3); border-color: rgba(255,255,255,0.15); }

.btn-gold {
  padding: 14px 28px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000; font-weight: 800; font-size: 0.95rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(245,200,66,0.28);
  border: none; cursor: pointer;
}
.btn-gold:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-ghost {
  padding: 14px 28px; border-radius: 10px;
  background: var(--surface); color: var(--text);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1px solid var(--border2);
  display: inline-flex; align-items: center; gap: 9px;
  transition: background 0.2s; cursor: pointer;
}
.btn-ghost:hover { background: var(--bg3); }

/* ── NAV (shared across all pages) ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 16px 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

/* Alias: some pages use .inner instead of .nav-inner */
.inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  color: var(--text);
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.87rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  padding: 9px 20px; border-radius: 8px;
  background: var(--accent); color: #fff !important;
  font-weight: 600; font-size: 0.84rem !important;
  transition: opacity 0.2s !important;
}
.btn-nav:hover { opacity: 0.85 !important; }

/* Login Clube LITH button */
.btn-clube {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000 !important; font-weight: 800 !important;
  font-size: 0.78rem !important; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s !important;
  box-shadow: 0 3px 16px rgba(245,200,66,0.25); white-space: nowrap;
}
.btn-clube:hover { opacity: 0.88 !important; transform: translateY(-1px) !important; }
.btn-clube .clube-icon { font-size: 0.9rem; }

/* Nav dropdown — click-based */
.nav-dropdown { position: relative; }

.nav-dropdown > a {
  cursor: pointer;
  display: flex; align-items: center; gap: 4px;
  user-select: none;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.65rem; opacity: 0.6; margin-top: 1px;
  transition: transform 0.25s;
}
.nav-dropdown.open > a::after { transform: rotate(180deg); opacity: 1; }

.dropdown-menu {
  position: absolute;
  /* Bridge gap so mouse can move from trigger to menu */
  top: calc(100% + 8px);
  left: 50%;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 14px; padding: 8px; min-width: 230px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 300;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Arrow */
.dropdown-menu::before {
  content: ''; position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--surface);
  border-left: 1px solid var(--border2); border-top: 1px solid var(--border2);
  rotate: 45deg;
}

.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 8px;
  color: var(--muted); text-decoration: none;
  font-size: 0.84rem; font-weight: 500;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown-item:hover { background: var(--bg3); color: var(--text); }
.dropdown-item .di-icon { font-size: 0.95rem; width: 20px; text-align: center; }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border); padding: 48px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px;
}
.footer-brand p { font-size: 0.82rem; color: var(--muted); margin-top: 12px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: var(--muted); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--muted2); flex-wrap: wrap; gap: 8px;
}
.foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; font-size: 0.78rem; color: var(--muted2);
}
.foot-inner a { color: var(--muted2); text-decoration: none; }
.foot-inner a:hover { color: var(--muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; margin-top: 14px;
}
.section-header h2 em { font-style: normal; color: var(--accent2); }
.section-header p {
  margin-top: 14px; color: var(--muted);
  max-width: 520px; margin-left: auto; margin-right: auto;
  font-size: 1rem; line-height: 1.7;
}

/* ── FAQ (shared) ── */
.faq-list  { max-width: 720px; margin: 0 auto; }
.faq-wrap  { max-width: 700px; margin: 48px auto 0; }
.faq-item  { border-bottom: 1px solid var(--border); padding: 20px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem; font-weight: 600; gap: 14px;
}
.faq-icon { color: var(--muted); transition: transform 0.3s; font-size: 1.2rem; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent2); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.2s;
  font-size: 0.87rem; color: var(--muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 240px; padding-top: 14px; }

/* ── TESTIMONIALS (shared) ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(245,200,66,0.15); }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text  { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.testi-name { font-size: 0.85rem; font-weight: 700; }
.testi-role { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* ── HIGHLIGHT ROWS (shared) ── */
.highlight-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.highlight-row.reverse { direction: rtl; }
.highlight-row.reverse > * { direction: ltr; }
.highlight-text h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin: 14px 0 18px;
}
.highlight-text p   { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 14px; }
.highlight-features { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.highlight-features li { display: flex; align-items: center; gap: 12px; font-size: 0.87rem; }
.highlight-features li .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent2); flex-shrink: 0; }
.highlight-visual {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; min-height: 300px; position: relative; overflow: hidden;
}
.highlight-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(37,99,235,0.06), transparent 70%);
}

/* ── HOW IT WORKS STEPS ── */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-row::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}
.step { text-align: center; padding: 24px 16px; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.2rem; font-weight: 800;
  color: var(--accent2); margin: 0 auto 18px; position: relative; z-index: 1;
}
.step h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step p   { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── CTA FINAL ── */
.cta-final {
  text-align: center; padding: 96px 0; position: relative; overflow: hidden; background: var(--bg);
}
.cta-final::before {
  content: ''; position: absolute;
  bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin: 14px 0 20px; position: relative; z-index: 1;
}
.cta-final h2 em { font-style: normal; color: var(--accent2); }
.cta-final p     { color: var(--muted); font-size: 1rem; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-final .btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.guarantee       { margin-top: 20px; font-size: 0.78rem; color: var(--muted2); position: relative; z-index: 1; }
.cta-sec { text-align: center; padding: 88px 0; position: relative; overflow: hidden; }
.cta-sec::before {
  content: ''; position: absolute;
  bottom: -160px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 450px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.08), transparent 65%); pointer-events: none;
}
.cta-sec h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.025em; margin: 12px 0 18px; position: relative; z-index: 1;
}
.cta-sec h2 em { font-style: normal; color: var(--accent2); }
.cta-sec p     { color: var(--muted); max-width: 480px; margin: 0 auto 32px; position: relative; z-index: 1; }
.cta-btns      { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-note      { margin-top: 16px; font-size: 0.75rem; color: var(--muted2); position: relative; z-index: 1; }

/* ── MOCK UI COMPONENTS ── */
.mock-header   { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mock-title    { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 800; }
.mock-live {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.2);
  color: var(--green); font-size: 0.65rem; font-weight: 700;
}
.mock-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.mock-stats  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.mock-stat   { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.mock-stat-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--text); }
.mock-stat-val.accent { color: var(--accent2); }
.mock-stat-val.green  { color: var(--green); }
.mock-stat-val.gold   { color: var(--gold); }
.mock-stat-label { font-size: 0.62rem; color: var(--muted); margin-top: 3px; }
.mock-list  { display: flex; flex-direction: column; gap: 8px; }
.mock-row   {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px;
}
.mock-row-left  { display: flex; align-items: center; gap: 10px; }
.mock-row-icon  { font-size: 1rem; width: 20px; text-align: center; }
.mock-row-name  { font-size: 0.78rem; font-weight: 600; }
.mock-row-sub   { font-size: 0.62rem; color: var(--muted); margin-top: 1px; }
.mock-badge {
  padding: 3px 9px; border-radius: 100px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.mb-blue   { background: rgba(37,99,235,0.15);  color: var(--accent2); }
.mb-green  { background: rgba(52,211,153,0.12);  color: var(--green); }
.mb-gold   { background: rgba(245,200,66,0.12);  color: var(--gold); }
.mb-purple { background: rgba(167,139,250,0.12); color: var(--purple); }

/* ── SERVICE COMPACT CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-compact {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s;
}
.svc-compact::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.svc-compact:hover { border-color: rgba(37,99,235,0.25); transform: translateY(-3px); }
.svc-compact:hover::before { opacity: 1; }
.svc-compact-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px; flex-shrink: 0;
}
.svc-compact-icon.blue   { background: rgba(37,99,235,0.12); }
.svc-compact-icon.gold   { background: rgba(245,200,66,0.12); }
.svc-compact-icon.purple { background: rgba(167,139,250,0.12); }
.svc-compact-icon.green  { background: rgba(52,211,153,0.12); }
.svc-compact-icon.pink   { background: rgba(244,114,182,0.12); }
.svc-compact-icon.white  { background: rgba(255,255,255,0.06); }
.svc-compact-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.svc-compact-desc  { font-size: 0.84rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.svc-compact-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: 8px;
  background: transparent; border: 1px solid var(--border2);
  color: var(--muted); font-size: 0.8rem; font-weight: 600;
  text-decoration: none; align-self: flex-start;
  transition: background 0.2s, border-color 0.2s, color 0.2s; cursor: pointer;
}
.svc-compact-btn:hover { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.35); color: var(--accent2); }
.svc-compact-btn svg { width: 12px; height: 12px; transition: transform 0.2s; }
.svc-compact-btn:hover svg { transform: translateX(3px); }

/* ── HERO (shared base) ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.78rem; color: var(--muted); margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge span { color: var(--accent2); font-weight: 600; }
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--accent2); }
.hero-sub {
  margin-top: 22px; font-size: 1.1rem; color: var(--muted);
  font-weight: 300; line-height: 1.7;
  max-width: 560px; margin-left: auto; margin-right: auto;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-ctas {
  margin-top: 36px; display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease both;
}

/* ── SWIPER PORTFOLIO/COVERFLOW (shared) ── */
.portfolio-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border2);
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.portfolio-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-50%) scale(1.08); }
.portfolio-btn.prev { left: 0; }
.portfolio-btn.next { right: 0; }
.portfolio-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 0; }
.portfolio-pagination .swiper-pagination-bullet { width: 7px; height: 7px; background: var(--muted2); border-radius: 100px; opacity: 1; transition: all 0.3s; cursor: pointer; }
.portfolio-pagination .swiper-pagination-bullet-active { background: var(--accent2); width: 24px; }

/* ── RESPONSIVE (shared breakpoints) ── */
@media (max-width: 900px) {
  .hero { padding: 110px 0 60px; }
  .highlight-row, .highlight-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero h1  { font-size: 2.6rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ════════════════════════════════════════════
   MOBILE NAV — Hamburger + Drawer
   ════════════════════════════════════════════ */

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border2);
  cursor: pointer;
  z-index: 310;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.nav-hamburger:hover { background: var(--bg3); border-color: rgba(255,255,255,0.2); }
.nav-hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
/* X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 290;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; }

/* Mobile drawer panel — hidden on desktop */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: #0f0f0f;
  border-left: 1px solid var(--border2);
  z-index: 300;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav-drawer.open { transform: translateX(0); }

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-logo img { height: 44px; width: auto; }
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}
.drawer-close:hover { background: var(--bg3); color: var(--text); }

/* Drawer nav links */
.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
}
.drawer-link:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.drawer-link .di { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }

/* Drawer section label */
.drawer-section-label {
  padding: 16px 20px 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
}

/* Drawer divider */
.drawer-divider { height: 1px; background: var(--border); margin: 8px 16px; }

/* Drawer CTA buttons */
.drawer-ctas {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-btn-wpp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 10px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.drawer-btn-wpp:hover { opacity: 0.88; }
.drawer-btn-clube {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000; font-weight: 800; font-size: 0.88rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}
.drawer-btn-clube:hover { opacity: 0.88; }

/* Prevent body scroll when drawer is open */
body.drawer-open { overflow: hidden; }

/* Show hamburger, hide desktop links on mobile */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .mobile-nav-overlay { display: block; }
  .mobile-nav-drawer  { display: flex; }
  /* .nav-links already display:none at 900px in existing media query */
}
