/* ============================================
   DESTRAVA® — Design System
   Preto | Branco | Ciano #00ACC1
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

:root {
  --black:     #0a0a0a;
  --black-2:   #111111;
  --black-3:   #1a1a1a;
  --white:     #f5f5f0;
  --white-dim: rgba(245,245,240,0.6);
  --cyan:      #00ACC1;
  --cyan-glow: rgba(0,172,193,0.15);
  --cyan-line: rgba(0,172,193,0.3);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --container:    1200px;
  --section-pad:  100px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }
::selection { background: var(--cyan); color: var(--black); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}

.label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--cyan);
  display: block;
}
h1, h2, h3 { font-family: var(--font-display); letter-spacing: 0.02em; line-height: 0.95; }

/* ---- NAVBAR ---- */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 24px 0; transition: var(--transition); background: rgba(10,10,10,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); }
#navbar.scrolled { padding: 16px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.nav-logo strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  font-weight: 400;
  white-space: nowrap;
}
.nav-logo strong span { color: var(--cyan); }
.nav-logo em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dim); transition: color var(--transition); }
.nav-links a:hover { color: var(--cyan); }
.nav-cta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 10px 24px; border: 1px solid var(--cyan); color: var(--cyan); transition: all var(--transition); }
.nav-cta:hover { background: var(--cyan); color: var(--black); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--white); transition: var(--transition); }

/* ---- HERO ---- */
#hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 120px 60px 80px 80px; position: relative; z-index: 2; }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--cyan); }
.hero-title { font-size: clamp(80px, 9vw, 140px); margin-bottom: 32px; }
.hero-title .line-2 { color: var(--cyan); display: block; }
.hero-subtitle { font-size: 18px; font-weight: 300; color: var(--white-dim); max-width: 460px; line-height: 1.7; margin-bottom: 56px; }
.hero-subtitle strong { color: var(--white); font-weight: 500; }
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: var(--cyan); color: var(--black); font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: all var(--transition); }
.btn-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,172,193,0.3); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dim); transition: color var(--transition); background: none; border: none; cursor: pointer; }
.btn-ghost:hover { color: var(--cyan); }

.hero-stats { display: flex; gap: 40px; margin-top: 72px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-number { font-family: var(--font-display); font-size: 48px; color: var(--white); line-height: 1; }
.stat-number span { color: var(--cyan); }
.stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dim); margin-top: 4px; }

.hero-right { position: relative; overflow: hidden; }
.hero-photo-wrap { position: absolute; inset: 0; }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; filter: grayscale(10%) contrast(1.05); }
.hero-photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, rgba(10,10,10,0.15) 35%, transparent 55%), linear-gradient(to top, var(--black) 0%, transparent 25%);
}
.hero-line { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 2px; height: 60%; background: linear-gradient(to bottom, transparent, var(--cyan), transparent); z-index: 3; }
.hero-badge { position: absolute; bottom: 60px; right: 40px; z-index: 5; background: var(--black-3); border: 1px solid var(--cyan-line); padding: 20px 24px; max-width: 200px; animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.badge-text { font-family: var(--font-display); font-size: 16px; color: var(--white); line-height: 1.2; }
.badge-sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px; color: var(--cyan); margin-top: 6px; text-transform: uppercase; }

/* ---- SECTIONS ---- */
section { padding: var(--section-pad) 0; }
.section-header { margin-bottom: 72px; }
.section-title { font-size: clamp(48px, 6vw, 96px); margin-top: 16px; line-height: 0.9; }

/* ---- SOBRE ---- */
#sobre { background: var(--black-2); position: relative; overflow: hidden; }
#sobre::before { content: 'DESTRAVA'; position: absolute; font-family: var(--font-display); font-size: 280px; color: rgba(255,255,255,0.02); right: -40px; top: 50%; transform: translateY(-50%); pointer-events: none; letter-spacing: -10px; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-text { font-size: 17px; color: var(--white-dim); line-height: 1.8; margin-bottom: 24px; }
.sobre-text strong { color: var(--white); font-weight: 500; }
.sobre-text em { color: var(--cyan); font-style: normal; font-weight: 500; }
.sobre-photo { position: relative; }
.sobre-photo img { width: 100%; filter: grayscale(30%); }
.sobre-photo::before { content: ''; position: absolute; inset: -12px; border: 1px solid var(--cyan-line); z-index: -1; }
.sobre-photo-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 60%, transparent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sobre-photo-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
}
/* ---- SOBRE STATS (index teaser) ---- */
.sobre-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.sobre-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--cyan);
  line-height: 1;
}
.sobre-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 6px;
}

/* ---- CREDENCIAIS (sobre-mim page) ---- */
.credencial-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cred-icon { width: 36px; height: 36px; background: var(--cyan-glow); border: 1px solid var(--cyan-line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--cyan); font-family: var(--font-mono); font-size: 11px; }
.cred-title { font-weight: 500; font-size: 14px; color: var(--white); }
.cred-sub { font-size: 12px; color: var(--white-dim); margin-top: 2px; }

/* ---- PROBLEMAS ---- */
.problemas-intro { max-width: 600px; margin-bottom: 64px; }
.problemas-intro p { font-size: 18px; color: var(--white-dim); line-height: 1.7; }
.problemas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.problema-card { background: var(--black); padding: 40px 32px; transition: background var(--transition); position: relative; overflow: hidden; }
.problema-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--cyan); transition: width 0.4s ease; }
.problema-card:hover { background: var(--black-3); }
.problema-card:hover::before { width: 100%; }
.problema-number { font-family: var(--font-display); font-size: 60px; color: rgba(0,172,193,0.12); line-height: 1; margin-bottom: 16px; transition: color var(--transition); }
.problema-card:hover .problema-number { color: rgba(0,172,193,0.3); }
.problema-title { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.problema-desc { font-size: 15px; color: var(--white-dim); line-height: 1.6; }

/* ---- PRODUTOS ---- */
#produtos { background: var(--black-2); }
.produtos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.produto-card { background: var(--black); border: 1px solid rgba(255,255,255,0.06); padding: 40px 32px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: border-color var(--transition), transform var(--transition); }
.produto-card:hover { border-color: var(--cyan-line); transform: translateY(-4px); }
.produto-card.featured { border-color: var(--cyan); background: linear-gradient(135deg, var(--black-3) 0%, var(--black) 100%); }
.produto-featured-label { position: absolute; top: 0; right: 0; background: var(--cyan); color: var(--black); font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; font-weight: 500; }
.produto-icon { width: 48px; height: 48px; background: var(--cyan-glow); border: 1px solid var(--cyan-line); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 20px; }
.produto-type { margin-bottom: 12px; }
.produto-name { font-family: var(--font-display); font-size: 36px; line-height: 0.95; margin-bottom: 16px; color: var(--white); }
.produto-desc { font-size: 16px; color: var(--white-dim); line-height: 1.7; flex: 1; margin-bottom: 32px; }
.produto-price { margin-bottom: 24px; }
.price-from { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; color: var(--white-dim); text-transform: uppercase; }
.price-value { font-family: var(--font-display); font-size: 52px; color: var(--white); line-height: 1; }
.price-value sup { font-size: 24px; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-value.price-custom { font-size: 28px; color: var(--cyan); }
.produto-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; border: 1px solid var(--white-dim); font-family: var(--font-mono); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); transition: all var(--transition); cursor: pointer; background: none; width: 100%; }
.produto-card.featured .produto-btn { border-color: var(--cyan); color: var(--cyan); }
.produto-btn:hover { background: var(--cyan); border-color: var(--cyan); color: var(--black); }

/* ---- MÉTODO ---- */
.metodo-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.metodo-intro-text { font-size: 17px; color: var(--white-dim); line-height: 1.8; align-self: center; }
.metodo-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.step-card { background: var(--black); padding: 40px 28px; }
.step-number { font-family: var(--font-display); font-size: 80px; color: var(--cyan); line-height: 1; opacity: 0.2; margin-bottom: 20px; }
.step-title { font-family: var(--font-display); font-size: 28px; margin-bottom: 12px; color: var(--white); }
.step-desc { font-size: 15px; color: var(--white-dim); line-height: 1.6; }

/* ---- RESULTADOS ---- */
#resultados { background: var(--black-2); }
.resultados-ticker { overflow: hidden; margin-bottom: 72px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.ticker-track { display: flex; gap: 60px; animation: ticker 25s linear infinite; white-space: nowrap; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { font-family: var(--font-display); font-size: 18px; letter-spacing: 3px; color: rgba(255,255,255,0.2); flex-shrink: 0; }
.ticker-item.highlight { color: var(--cyan); }
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.depoimento-card { background: var(--black); border: 1px solid rgba(255,255,255,0.06); padding: 36px 28px; transition: border-color var(--transition); }
.depoimento-card:hover { border-color: var(--cyan-line); }
.depo-quote { font-size: 32px; color: var(--cyan); font-family: var(--font-display); line-height: 1; margin-bottom: 16px; opacity: 0.5; }
.depo-text { font-size: 16px; color: var(--white-dim); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.depo-result { font-family: var(--font-display); font-size: 22px; color: var(--cyan); margin-bottom: 20px; }
.depo-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.depo-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--cyan-glow); border: 1px solid var(--cyan-line); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; color: var(--cyan); flex-shrink: 0; }
.depo-name { font-size: 15px; font-weight: 500; color: var(--white); }
.depo-role { font-size: 13px; color: var(--white-dim); margin-top: 2px; }

/* ---- CTA ---- */
#cta { position: relative; overflow: hidden; text-align: center; padding: 120px 0; }
#cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,172,193,0.08) 0%, transparent 70%); pointer-events: none; }
.cta-label { margin-bottom: 20px; }
.cta-title { font-size: clamp(56px, 8vw, 120px); margin-bottom: 24px; }
.cta-title span { color: var(--cyan); display: block; }
.cta-sub { font-size: 18px; color: var(--white-dim); max-width: 500px; margin: 0 auto 48px; line-height: 1.7; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
#footer { background: var(--black-3); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-display); font-size: 36px; letter-spacing: 4px; margin-bottom: 16px; }
.footer-logo span { color: var(--cyan); }
.footer-desc { font-size: 13px; color: var(--white-dim); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--white-dim); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-copy { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 1px; }
.footer-social { display: flex; gap: 16px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white-dim); transition: all var(--transition); font-family: var(--font-mono); font-size: 11px; }
.social-link:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---- MODAL ---- */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal { background: var(--black-3); border: 1px solid rgba(255,255,255,0.1); max-width: 520px; width: 100%; padding: 48px; position: relative; animation: modalIn 0.3s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-close { position: absolute; top: 20px; right: 20px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--white-dim); font-size: 20px; transition: color var(--transition); background: none; border: none; cursor: pointer; }
.modal-close:hover { color: var(--cyan); }
.modal-label { margin-bottom: 12px; }
.modal-title { font-family: var(--font-display); font-size: 48px; margin-bottom: 16px; line-height: 0.95; }
.modal-desc { font-size: 14px; color: var(--white-dim); margin-bottom: 32px; line-height: 1.6; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.form-input { width: 100%; background: var(--black); border: 1px solid rgba(255,255,255,0.1); color: var(--white); font-family: var(--font-body); font-size: 14px; padding: 14px 16px; outline: none; transition: border-color var(--transition); border-radius: 2px; }
.form-input:focus { border-color: var(--cyan); }
.form-input::placeholder { color: rgba(255,255,255,0.25); }
select.form-input option { background: var(--black-3); }
.form-btn { width: 100%; padding: 16px; background: var(--cyan); color: var(--black); font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: all var(--transition); margin-top: 8px; cursor: pointer; border: none; }
.form-btn:hover { background: var(--white); transform: translateY(-1px); }

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ---- LISTA ESPERA PAGE ---- */
.wait-page { min-height: 100vh; padding: 120px 0 80px; }
.wait-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dim); margin-bottom: 48px; transition: color var(--transition); }
.wait-back:hover { color: var(--cyan); }
.wait-title { font-size: clamp(48px, 8vw, 80px); margin: 16px 0 24px; }
.wait-title span { color: var(--cyan); }
.wait-desc { font-size: 16px; color: var(--white-dim); line-height: 1.7; margin-bottom: 48px; }
.wait-form { display: flex; flex-direction: column; gap: 20px; }
.wait-benefits { margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 14px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon { color: var(--cyan); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.benefit-text { font-size: 13px; color: var(--white-dim); line-height: 1.5; }

/* ---- FOOTER LOGO ---- */
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  line-height: 1;
  color: var(--white);
}
.footer-logo-text span { color: var(--cyan); }
.footer-logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 4px;
}

/* ---- SKILLS GRID ---- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.skill-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 36px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.skill-card:hover {
  border-color: var(--cyan-line);
  transform: translateY(-3px);
}
.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width 0.5s ease;
}
.skill-card:hover::before { width: 100%; }
.skill-number {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(0,172,193,0.1);
  line-height: 1;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.skill-card:hover .skill-number { color: rgba(0,172,193,0.25); }
.skill-icon { font-size: 28px; margin-bottom: 16px; }
.skill-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 16px;
}
.skill-desc {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 28px;
}
.skill-outcome {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.skill-outcome .label { margin-bottom: 6px; font-size: 10px; }
.skill-outcome p { font-size: 15px; color: var(--white); font-weight: 500; line-height: 1.5; }

@media (max-width: 768px) {
  .skills-grid { grid-template-columns: 1fr; }
}
.coming-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.coming-content { text-align: center; position: relative; z-index: 2; padding: 0 24px; }
.coming-title { font-size: clamp(64px, 12vw, 160px); line-height: 0.9; margin-bottom: 32px; }
.coming-title span { color: var(--cyan); display: block; }
.coming-desc { font-size: 18px; color: var(--white-dim); max-width: 500px; margin: 0 auto 48px; line-height: 1.7; }
.coming-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,172,193,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,172,193,0.04) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }
.coming-grid::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 40%, var(--black) 80%); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 120px 40px 60px; min-height: 100vh; }
  .hero-right { display: none; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-photo { display: none; }
  .metodo-header { grid-template-columns: 1fr; gap: 40px; }
  .metodo-steps { grid-template-columns: 1fr 1fr; }
  .produtos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .depoimentos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .container { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column !important; position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: rgba(10,10,10,0.98); border-bottom: 1px solid rgba(0,172,193,0.2); padding: 8px 0; list-style: none; z-index: 200; margin: 0; gap: 0; }
  .nav-links.open { display: flex !important; flex-direction: column !important; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 11px; letter-spacing: 1px; border-bottom: 1px solid rgba(255,255,255,0.05); white-space: nowrap; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-left { padding: 100px 24px 60px; }
  .problemas-grid { grid-template-columns: 1fr; }
  .metodo-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .modal { padding: 32px 24px; }
}
