/* ======= RESET & BASE ======= */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:root {
  --orange: #ff5b1f;
  --orange-hover: #e64c12;
  --dark: #0a0a0a;
  --gray: #1a1a1a;
  --card-bg: rgba(20, 20, 20, 0.65);
  --card-border: rgba(255, 91, 31, 0.25);
}

.orange { color: var(--orange); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 48px;
}

/* ======= HEADER ======= */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7), transparent);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img { height: 36px; width: auto; }

/* ======= HERO ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: -10% 0 0 0;
  height: 120%;
  background: url('assets/bg-hero.png') center/cover no-repeat;
  z-index: 1;
  will-change: transform;
  transition: transform 0.1s linear;
}
.hero-astronauta {
  position: relative;
  text-align: right;
  will-change: transform;
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
}
.hero-card {
  background: rgba(15, 15, 25, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 36px 40px;
  border-radius: 6px;
  max-width: 540px;
}
.hero-tag {
  color: #cfcfcf;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-text {
  color: #e2e2e2;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 22px;
}
.hero-text strong { color: #fff; }
.hero-empresas img {
  max-height: 32px;
  width: auto;
  opacity: 0.95;
}
.hero-astronauta img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* ======= OMNI CIRCLE ======= */
.omni-section {
  background: #fff;
  padding: 60px 0 30px;
  position: relative;
}
.omni-img {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}
.omni-section::after {
  content: '';
  display: block;
  height: 6px;
  background: var(--orange);
  margin-top: 40px;
}

/* ======= NÚMEROS ======= */
.numbers-section {
  background: #0a0a0a url('assets/bg-section.png') center/cover no-repeat;
  background-blend-mode: overlay;
  padding: 60px 0;
  position: relative;
}
.numbers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.numbers-section .container { position: relative; z-index: 2; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.number-item h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.number-item p {
  color: #ccc;
  font-size: 0.95rem;
}

/* ======= POR QUE ESCOLHER ======= */
.why-section {
  position: relative;
  padding: 80px 0;
  background: #050505;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg-section.png') center/cover no-repeat;
  opacity: 0.45;
  z-index: 1;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
  z-index: 2;
}
.why-section .container { position: relative; z-index: 3; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 28px 26px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card p {
  color: #c8c8c8;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ======= CLIENTES ======= */
.clients-section {
  background: #0a0a0a;
  padding: 70px 0;
}
.clients-pre {
  text-align: center;
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 4px;
}
.clients-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: stretch;
}
.clients-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-btn {
  background: #2a2a2a;
  color: #fff;
  padding: 14px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border-radius: 2px;
  transition: background 0.2s ease;
  text-align: left;
}
.tab-btn:hover { background: #3a3a3a; }
.tab-btn.active { background: var(--orange); color: #fff; }

.clients-video {
  background: #000;
  border: 2px solid var(--orange);
  border-radius: 4px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-placeholder {
  color: #555;
  font-size: 0.95rem;
}
.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
}
.video-frame.is-short {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame.is-short iframe {
  width: auto;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 540px;
  height: 540px;
}

/* ====== ANIMAÇÕES REVEAL ====== */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-zoom { transform: scale(0.92); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg, .hero-astronauta { transform: none !important; transition: none; }
}

/* ======= FAQ ======= */
.faq-section {
  position: relative;
  padding: 80px 0;
  background: #0a0a14;
  overflow: hidden;
}
.faq-bg {
  position: absolute;
  inset: 0;
  background: url('assets/bg-faq.png') center/cover no-repeat;
  opacity: 0.55;
  z-index: 1;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,20,0.7), rgba(10,10,20,0.85));
  z-index: 2;
}
.faq-section .container { position: relative; z-index: 3; max-width: 800px; }
.faq-list {
  background: rgba(15, 15, 25, 0.6);
  border: 1px solid rgba(255,91,31,0.2);
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  transition: background 0.2s ease;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question i {
  transition: transform 0.25s ease;
  font-size: 0.85rem;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 24px 22px;
}
.faq-answer p {
  color: #d0d0d0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ======= CONTATO ======= */
.contact-section {
  background: #050505 url('assets/bg-faq.png') center/cover no-repeat;
  background-blend-mode: overlay;
  padding: 70px 0;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.9));
}
.contact-section .container { position: relative; z-index: 2; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-title {
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.contact-list {
  list-style: none;
  margin-bottom: 20px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #ddd;
  font-size: 0.95rem;
}
.contact-list i {
  color: var(--orange);
  margin-top: 4px;
  flex-shrink: 0;
}
.social {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}
.social a {
  width: 34px;
  height: 34px;
  background: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social a:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}
.contact-map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,91,31,0.25);
}

/* FORMULÁRIO */
.contact-form-wrap {
  background: rgba(20, 20, 20, 0.65);
  border: 1px solid rgba(255,91,31,0.2);
  border-radius: 6px;
  padding: 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#leadForm input[type="text"],
#leadForm input[type="email"],
#leadForm input[type="tel"],
#leadForm select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 14px;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.93rem;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}
#leadForm input:focus,
#leadForm select:focus {
  outline: none;
  border-color: var(--orange);
}
#leadForm input::placeholder { color: #888; }
#leadForm select {
  appearance: none;
  background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23ff5b1f'><path d='M0 0l6 8 6-8z'/></svg>") right 14px center/10px no-repeat;
  padding-right: 36px;
}
#leadForm select option { background: #1a1a1a; color: #fff; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-row input { margin-bottom: 10px; }
.form-label {
  display: block;
  color: #ccc;
  font-size: 0.88rem;
  margin: 10px 0 6px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 18px;
  font-size: 0.82rem;
  color: #bbb;
  cursor: pointer;
}
.form-check input { margin-top: 3px; accent-color: var(--orange); }
.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  padding: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.form-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-msg {
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
}
.form-msg.success { color: #4ade80; }
.form-msg.error { color: #f87171; }

/* ======= FOOTER ======= */
.footer {
  background: var(--orange);
  text-align: center;
  padding: 14px 0;
  font-size: 0.85rem;
  color: #fff;
}

/* ======= RESPONSIVO ======= */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-card { margin: 0 auto; padding: 28px 24px; }
  .hero-astronauta { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; gap: 28px; }
  .clients-wrap { grid-template-columns: 1fr; }
  .clients-tabs { flex-direction: row; flex-wrap: wrap; }
  .tab-btn { flex: 1; min-width: 100px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 100px 0 50px; }
  .hero-title { font-size: 1.5rem; }
  .container { padding: 0 18px; }
  .contact-form-wrap { padding: 22px 18px; }
}
