@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;0,9..40,700;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

:root {
  --orange: #FF5A00;
  --orange-hot: #FF7A2E;
  --orange-dim: #CC4800;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #242424;
  --mid: #3A3A3A;
  --line: rgba(255,255,255,0.08);
  --off-white: #F5F5F0;
  --muted: #888888;
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ── NOISE OVERLAY ── */
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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 80px);
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0;
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--off-white);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: -2px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--off-white); background: var(--dark3); }

.nav-cta {
  margin-left: 16px;
  background: var(--orange);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--orange-hot) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--off-white); border-radius: 2px;
  transition: all .3s;
}

/* ── PAGE WRAPPER ── */
.page { padding-top: var(--nav-h); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px,10vh,120px) clamp(20px,5vw,80px);
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,90,0,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,90,0,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}

.hero-accent {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,90,0,.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,90,0,.12);
  border: 1px solid rgba(255,90,0,.3);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.7); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 140px);
  line-height: .92;
  letter-spacing: 2px;
  color: var(--off-white);
  position: relative;
  z-index: 1;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
  display: block;
}
.hero-title span {
  display: block;
  -webkit-text-stroke: 1px rgba(245,245,240,0.2);
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 520px;
  margin-top: 24px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 rgba(255,90,0,0);
}
.btn-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,90,0,.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--mid);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-secondary:hover {
  border-color: var(--orange);
  background: rgba(255,90,0,.06);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.hero-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--off-white);
  line-height: 1;
}
.hero-stat-val b { color: var(--orange); }
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── SECTIONS ── */
.section {
  padding: clamp(60px,8vw,120px) clamp(20px,5vw,80px);
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: 1px;
  line-height: .95;
  color: var(--off-white);
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 60px;
  border: 2px solid var(--dark3);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--dark);
  padding: 36px 32px;
  position: relative;
  transition: background .2s;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,90,0,.05), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover { background: var(--dark2); }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(255,90,0,.12);
  border: 1px solid rgba(255,90,0,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--off-white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 60px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--dark3);
  transition: border-color .2s;
}
.step:hover { border-color: var(--orange); }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 12px;
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── CTA BAND ── */
.cta-band {
  margin: 0 clamp(20px,5vw,80px) clamp(60px,8vw,120px);
  background: var(--orange);
  border-radius: 20px;
  padding: clamp(48px,6vw,80px) clamp(32px,5vw,80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'FULL LOGS';
  position: absolute;
  right: -20px; bottom: -40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  color: rgba(0,0,0,.08);
  letter-spacing: 8px;
  line-height: 1;
  pointer-events: none;
}
.cta-band-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}
.cta-band-sub { font-size: 16px; color: rgba(255,255,255,.75); margin-top: 8px; }
.btn-cta-white {
  background: #fff;
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s, box-shadow .2s;
  flex-shrink: 0;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--line);
  padding: clamp(48px,6vw,80px) clamp(20px,5vw,80px) 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.65;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ── INNER PAGE HERO ── */
.inner-hero {
  padding: clamp(60px,8vw,100px) clamp(20px,5vw,80px) clamp(40px,5vw,60px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: attr(data-title);
  position: absolute;
  right: -20px; bottom: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px,12vw,180px);
  color: rgba(255,90,0,.05);
  letter-spacing: 4px;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--line); }

/* ── ACCORDION (FAQ) ── */
.accordion { margin-top: 40px; display: flex; flex-direction: column; gap: 2px; }

.accordion-item {
  background: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--dark3);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--off-white);
  transition: background .2s;
}
.accordion-trigger:hover { background: var(--dark2); }
.accordion-trigger.open { color: var(--orange); }

.accordion-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .3s, border-color .2s, color .2s;
}
.accordion-trigger.open .accordion-icon {
  transform: rotate(45deg);
  border-color: var(--orange);
  color: var(--orange);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.accordion-body.open {
  max-height: 500px;
}
.accordion-body-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input, .form-select, .form-textarea {
  background: var(--dark);
  border: 1px solid var(--dark3);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,0,.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: var(--dark2); }

.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--orange-hot); transform: translateY(-1px); }

/* ── PROSE (Privacidade) ── */
.prose {
  max-width: 760px;
  margin-top: 40px;
}
.prose h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--off-white);
  margin: 40px 0 12px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose li { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.prose a { color: var(--orange); text-decoration: none; }

/* ── TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.team-card {
  background: var(--dark);
  border: 1px solid var(--dark3);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.team-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px;
  background: var(--dark3);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--orange);
  border: 2px solid var(--dark3);
}
.team-name { font-weight: 700; font-size: 16px; color: var(--off-white); }
.team-role { font-size: 13px; color: var(--orange); margin-top: 4px; }
.team-bio { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.6; }

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--dark);
  border: 1px solid var(--dark3);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 12px 12px;
  padding: 28px 24px;
}
.value-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--off-white); margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── SUPPORT CHANNELS ── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.channel-card {
  background: var(--dark);
  border: 1px solid var(--dark3);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s;
}
.channel-card:hover { border-color: var(--orange); }
.channel-icon {
  width: 44px; height: 44px;
  background: rgba(255,90,0,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.channel-title { font-weight: 700; font-size: 15px; color: var(--off-white); margin-bottom: 4px; }
.channel-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.channel-link { font-size: 13px; color: var(--orange); text-decoration: none; display: inline-block; margin-top: 8px; }
.channel-link:hover { text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp .6s ease forwards; }
.fade-in-2 { animation: fadeUp .6s .15s ease both; }
.fade-in-3 { animation: fadeUp .6s .3s ease both; }
.fade-in-4 { animation: fadeUp .6s .45s ease both; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,.98);
    padding: 20px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .hero-stats { gap: 24px; }
  .cta-band { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
