@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #05060c;
  color: #ffffff;
  line-height: 1.7;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at top, #3a145f, #05060c 72%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px 20px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee")
    center/cover no-repeat;
  opacity: 0.14;
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.serie {
  font-size: 12px;
  letter-spacing: 2px;
  color: #b78cff;
  opacity: 0.95;
}

h1 {
  font-size: clamp(34px, 6vw, 56px);
  margin: 18px 0 10px;
  letter-spacing: 0.5px;
}

.subtitle {
  font-size: 16px;
  opacity: 0.86;
}

.highlight {
  margin: 22px auto 0;
  padding: 18px 18px;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.55;
  border: 1px solid rgba(183, 140, 255, 0.28);
}

.highlight-soft {
  background: rgba(106, 27, 177, 0.22);
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 28px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.cta:active { transform: translateY(1px); }

.cta-soft {
  background: rgba(106, 27, 177, 0.22);
  color: #ffffff;
  border: 1px solid rgba(183, 140, 255, 0.35);
  backdrop-filter: blur(6px);
}

.cta-soft:hover {
  background: rgba(106, 27, 177, 0.32);
}


.cta-ghost {
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  border-color: rgba(255,255,255,0.14);
}

.cta:hover { opacity: 0.92; }

.note {
  margin-top: 14px;
  font-size: 12px;
  opacity: 0.72;
}

.note.small { margin-top: 14px; }

/* CONTENT */
.content {
  max-width: 860px;
  margin: auto;
  padding: 76px 24px 60px;
}

.content h2 {
  color: #b78cff;
  margin: 40px 0 14px;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.content p {
  margin-bottom: 14px;
  opacity: 0.95;
}

.soft {
  opacity: 0.75;
}

ul {
  margin-left: 20px;
  margin-top: 6px;
}

ul li {
  margin: 10px 0;
  opacity: 0.92;
}

.final {
  margin-top: 54px;
  text-align: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.final .strong {
  font-size: 20px;
  font-weight: 700;
  color: #b78cff;
  margin: 10px 0 22px;
}

.footer {
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.65;
  text-align: center;
}
/* NAV discreta (voltar para o guarda-chuva) */
.mini-nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(5, 6, 12, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mini-nav-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-right{
  display: flex;
  gap: 10px;
  align-items: center;
}

.mini-link{
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(183,140,255,0.24);
  background: rgba(106, 27, 177, 0.14);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}

.mini-link:hover{
  opacity: 0.95;
  background: rgba(106, 27, 177, 0.22);
}

.mini-link:active{
  transform: translateY(1px);
}

/* empurra o conteúdo para não ficar escondido atrás da nav */
.hero{
  padding-top: 90px;
}

