:root {
  --bg: #020617;
  --panel: rgba(3, 7, 18, 0.85);
  --primary: #38bdf8;
  --white: #e2e8f0;
  --muted: #94a3b8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #020617;
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148,163,184,0.12);
}

.nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: .65rem clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand span {
  font-weight: 700;
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.nav-links a {
  font-size: .9rem;
  color: var(--muted);
}

.nav-links a.active {
  color: var(--white);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--white);
}

/* botões globais */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  border-radius: .55rem; /* menos arredondado */
  border: 1px solid transparent;
  padding: .5rem 1.25rem .55rem;
  font-weight: 600;
  cursor: pointer;
  font-size: .9rem;
  transition: background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, #38bdf8 0%, #0ea5e9 100%);
  border: none;
  color: #e2e8f0;
  box-shadow: 0 10px 35px rgba(14,165,233,0.08);
}

.btn-primary:hover {
  background: linear-gradient(120deg, #0ea5e9 0%, #0369a1 100%);
}

.btn-outline {
  background: transparent;
  border-color: rgba(148,163,184,.25);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(148,163,184,.06);
}

/* força o botão do topo a ficar legível */
header .btn-primary,
.nav .btn-primary {
  color: #ffffff !important;
}

/* botão de menu (mobile) */
.mobile-toggle {
  display: none;                    /* desktop: escondido */
  background: rgba(15,23,42,.4);
  border: 1px solid rgba(148,163,184,.1);
  width: 36px;
  height: 32px;
  border-radius: .8rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;           /* <- empilha as 3 linhas */
  gap: 4px;                         /* <- espacinho entre elas */
  cursor: pointer;
  padding: 0;
}

.mobile-toggle span {
  display: block !important;
  width: 20px !important;
  height: 2px !important;
  background: #e2e8f0 !important;
  border-radius: 999px !important;
}

/* 1) BANNER DO PITCH (só a imagem) */
.hero-banner {
  width: 100%;
  min-height: 530px;
  background: url("../img/hero-pitch.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3.5rem clamp(1rem, 4vw, 3.5rem) 3rem;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(2,6,23,.1) 0%, rgba(2,6,23,.65) 100%);
}
.hero-banner-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
}
.hero-banner h1 {
  font-size: clamp(2.3rem, 3.3vw, 3.1rem);
  margin-bottom: .5rem;
}
.hero-banner p {
  max-width: 35rem;
  color: #e2e8f0;
  opacity: .92;
}
.hero-banner small {
  display: inline-block;
  background: rgba(15,23,42,.85);
  border: 1px solid rgba(148,163,184,.35);
  border-radius: 9999px;
  padding: .2rem .75rem .28rem;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .65rem;
}

/* 2) HERO DE CONTEÚDO (texto + imagem) */
.hero {
  width: 100%;
  padding: 2.5rem clamp(1rem, 4vw, 3.5rem) 2.5rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.03;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: #dbeafe;
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
  background: rgba(15,23,42,.3);
  border: 1px solid rgba(148,163,184,.08);
  border-radius: 1.6rem;
  min-height: 300px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-floating {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(2,6,23,.7);
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 1.2rem;
  padding: .4rem .8rem .55rem;
  font-size: .7rem;
}

/* SECTIONS FULL WIDTH */
section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 3.5rem) 2.5rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1.3rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  background: rgba(15,23,42,.45);
  border: 1px solid rgba(148,163,184,.14);
  border-radius: 9999px;
  padding: .2rem .65rem .3rem;
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: .55rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: rgba(15,23,42,.35);
  border: 1px solid rgba(148,163,184,.05);
  border-radius: 1.4rem;
  padding: 1.05rem 1rem 1.1rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: .4rem;
}

.card p {
  color: var(--muted);
  font-size: .9rem;
}

.list-inline {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.badge {
  background: rgba(148,163,184,.05);
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 9999px;
  padding: .15rem .6rem .35rem;
  font-size: .67rem;
  color: var(--muted);
}

footer {
  border-top: 1px solid rgba(148,163,184,.1);
  background: rgba(2,6,23,0.4);
  text-align: center;
  padding: 1.4rem 1rem 2.5rem;
  color: var(--muted);
  font-size: .8rem;
}

/* FAQ – perguntas com efeito de expandir/fechar */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.faq-item {
  cursor: pointer;
}

.faq-question {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  cursor: pointer;
}

.faq-question span {
  display: block;
}

.faq-icon {
  font-weight: 700;
  font-size: 1rem;
  color: var(--muted);
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  margin-top: .4rem;
  font-size: .9rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 1.6rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    position: fixed;
    top: 58px;
    right: 1rem;
    background: rgba(2,6,23,.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148,163,184,.15);
    border-radius: 1.2rem;
    padding: 1rem;
    flex-direction: column;
    gap: .6rem;
    width: min(210px, 70vw);
    display: none;
  }
  .nav-links.show {
    display: flex;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .hero-banner {
    min-height: 260px;
    align-items: center;
  }
}
