/* ============================
   Lukhas Backes - Estilos
   ============================ */

/* Google Fonts importadas no HTML via <link> */

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

/* === VARIAVEIS === */
:root {
  --font-display: "Oswald", sans-serif;
  --font-body: "Outfit", sans-serif;
  --bg: #07080a;
  --fg: #f0f0f0;
  --green: #22c55e;
  --green-light: #4ade80;
  --orange: #f97316;
  --card: #0d0f13;
  --card-border: #1a1d24;
  --subtle: #6b7280;
  --muted: #9ca3af;
}

/* === BASE === */
body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* === NOISE TEXTURE === */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* === AMBIENT GLOW === */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-glow::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(34,197,94,0.06) 0%, transparent 65%);
  animation: glowDrift 20s ease-in-out infinite alternate;
}
.bg-glow::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 55%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(249,115,22,0.04) 0%, transparent 65%);
  animation: glowDrift 25s ease-in-out infinite alternate-reverse;
}
@keyframes glowDrift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,20px) scale(1.08); }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease-out both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* === LAYOUT === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(7,8,10,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
}
.header nav {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
}
.header .logo-text {
  display: none;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.header .nav-links {
  display: none;
  align-items: center;
  gap: 40px;
}
.header .nav-links a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.2s;
}
.header .nav-links a:hover { color: var(--fg); }
.header .insta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  transition: background 0.2s;
}
.header .insta-btn:hover { background: rgba(34,197,94,0.14); }
.header .insta-btn span { display: none; }

@media (min-width: 640px) {
  .header nav { padding: 0 32px; }
  .header .logo-text { display: flex; }
  .header .insta-btn span { display: inline; }
}
@media (min-width: 768px) {
  .header .nav-links { display: flex; }
}
@media (min-width: 1024px) {
  .header nav { padding: 0 48px; }
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 68px);
  padding-top: 68px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 68px);
}
.hero-inner {
  padding: 80px 0;
  width: 100%;
}
.hero-content { max-width: 720px; }

/* Badge */
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  color: var(--green);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.18);
}

/* Headline */
.hero h1 {
  margin-top: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero h1 .gradient {
  background-image: linear-gradient(135deg, #22c55e, #4ade80, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Subtitle */
.hero .subtitle {
  margin-top: 24px;
  max-width: 540px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--muted);
}

/* CTAs */
.hero .ctas {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .hero .ctas { flex-direction: row; align-items: center; }
}

/* Decorativos */
.hero .deco { position: absolute; inset: 0; pointer-events: none; }
.diagonal-line {
  position: absolute;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #22c55e, transparent);
  transform: rotate(25deg);
  opacity: 0.2;
  display: none;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  display: none;
}
@media (min-width: 1024px) {
  .diagonal-line, .deco-circle { display: block; }
}

/* Stats */
.stats-row {
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.stats-row .stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.stats-row .stat-label {
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--subtle);
}
.stats-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
  display: none;
}
@media (min-width: 640px) { .stats-divider { display: block; } }

/* === BOTOES === */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 14px;
  background: var(--green);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.cta-btn:hover::before { opacity: 1; }
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(34,197,94,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--fg); }

/* === SECOES === */
.section { padding: 96px 0; }
.section-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section-title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
}
.section-desc {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.section-desc.centered { margin-left: auto; margin-right: auto; }

/* === SOBRE === */
.sobre-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre-mobile { display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 768px) {
  .sobre-grid { display: grid; }
  .sobre-mobile { display: none; }
}

/* Card perfil */
.perfil-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.perfil-wrapper.mobile { width: 280px; height: 280px; }
.perfil-bg {
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(34,197,94,0.12);
  transform: rotate(3deg);
}
.perfil-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34,197,94,0.06), #0d0f13, rgba(249,115,22,0.03));
  border: 1px solid var(--card-border);
  padding: 32px;
}
.perfil-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--green);
  margin-bottom: 24px;
}
.perfil-card .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.perfil-card .role {
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 0.15em;
}
.perfil-card .divider {
  margin-top: 24px;
  width: 64px;
  height: 1px;
  background: var(--card-border);
}
.perfil-card .cref {
  margin-top: 16px;
  color: var(--subtle);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
}

/* Texto sobre */
.sobre-text p {
  color: var(--muted);
  line-height: 1.75;
}
.sobre-text .paragraphs {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Checklist */
.checklist {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checklist .check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
}
.checklist span { color: var(--muted); font-size: 14px; }

/* === RESULTADOS === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.stat-card {
  padding: 36px 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(34,197,94,0.08);
}
.stat-card .icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto 20px;
}
.stat-card .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
}
.stat-card .label {
  margin-top: 10px;
  color: var(--subtle);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* === METODOLOGIA === */
.metodo-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 56px);
}
.metodo-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.metodo-mobile { display: flex; flex-direction: column; gap: 36px; }
@media (min-width: 768px) {
  .metodo-grid { display: grid; }
  .metodo-mobile { display: none; }
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.step {
  display: flex;
  gap: 20px;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(34,197,94,0.25);
  width: 40px;
  flex-shrink: 0;
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.step p {
  margin-top: 6px;
  color: var(--subtle);
  font-size: 14px;
  line-height: 1.65;
}

/* === CONTATO === */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,197,94,0.2);
  box-shadow: 0 8px 30px rgba(34,197,94,0.06);
}
.contact-card .icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
}
.contact-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.contact-card .info {
  color: var(--subtle);
  font-size: 14px;
  word-break: break-all;
}
.cta-final {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-final .cnpj {
  margin-top: 24px;
  color: var(--subtle);
  font-size: 12px;
}

/* === FOOTER === */
.footer {
  background: #0a0c10;
  border-top: 1px solid var(--card-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 56px 0;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer .brand-text {
  font-size: 14px;
  color: var(--subtle);
  line-height: 1.6;
  max-width: 280px;
}
.footer .brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  font-size: 14px;
  color: var(--subtle);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--green); }
.footer .cnpj-line { padding-top: 4px; font-size: 12px; color: var(--subtle); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--card-border);
  font-size: 12px;
  color: var(--subtle);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* === LEGAL PAGES === */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--fg);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.legal-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-content ul, .legal-content ol {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}
.legal-content li { margin-bottom: 0.5rem; }
.legal-content strong { color: var(--fg); font-weight: 600; }
.legal-content a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--subtle);
  margin-bottom: 32px;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--green); }
.legal-box {
  margin-top: 64px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.legal-box strong { color: var(--fg); }
.legal-box a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2a2d34; }
