* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body {
  background:#05070d;
  color:white;
}

/* HEADER */
.header {
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:15px 20px;
  z-index:10;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
}

.logo {
  font-weight:bold;
}

.hamburger {
  font-size:22px;
  cursor:pointer;
}

.menu {
  position:absolute;
  top:60px;
  right:20px;
  background:black;
  padding:15px;
  display:none;
  flex-direction:column;
}

.menu a {
  color:white;
  text-decoration:none;
  margin:5px 0;
}

/* HERO */
.hero {
  height:100vh;
  position:relative;
  overflow:hidden;
}
#hero-title {
  white-space: nowrap;
  position: relative;
}
canvas {
  position:absolute;
  width:100%;
  height:100%;
}

.overlay {
  position:absolute;
  width:100%;
  height:100%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.1)
  );
}
.content {
  position: relative;
  z-index: 2;
  text-align: center;

  top: 50%;
  transform: translateY(-50%);

  padding: 20px;

  opacity: 0;
  animation: reveal 1.2s ease forwards;
}

h1 {
  font-size:2rem;
}

p {
  margin-top:10px;
  opacity:0.8;
}

#countdown {
  margin-top:20px;
}

/* CTA */
.cta {
  margin-top:20px;
  padding:14px 26px;
  border-radius:30px;
  border:none;
  background:#00cfff;
  color:black;
  font-weight:bold;
}
.cta {
  transition: all 0.3s ease;
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00cfff;
}
.cta.big {
  font-size:1.2rem;
  padding:18px 36px;
}

/* SECTIONS */
.section {
  padding:80px 20px;
  text-align:center;
  opacity:0;
  transform:translateY(40px);
  transition:0.6s;
}

.section.visible {
  opacity:1;
  transform:translateY(0);
}

.destaque {
  background:linear-gradient(135deg,#0a2540,#020617);
}

.highlight {
  font-size:1.4rem;
  color:#00cfff;
}

/* FINAL */
.final {
  text-align:center;
  padding:80px 20px;
}
/* ACCORDION */
.accordion-section {
  padding: 80px 20px;
  max-width: 700px;
  margin: auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  font-size: 1.1rem;
  color: white;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.accordion-header::after {
  content: "+";
}

.accordion-item.active .accordion-header::after {
  content: "-";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  padding: 0 20px;
  opacity: 0.7;
}

/* TEXTO BACKGROUND CINEMATOGRÁFICO */

.bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);

  font-size: 80vh;
  letter-spacing: 2vw;
  font-weight: 700;
  white-space: nowrap;

  color: rgba(0, 229, 255, 0.08);

  pointer-events: none;
  z-index: 0;

  text-shadow:
    0 0 10px rgba(0, 229, 255, 0.12),
    0 0 30px rgba(0, 229, 255, 0.06);

  animation:
    moveText 40s linear infinite,
    pulseGlow 6s ease-in-out infinite;
}

/* MOVIMENTO REAL (SEM CONFLITO) */
@keyframes moveText {
  0% {
    transform: translateX(-50%) translateY(-50%);
  }
  100% {
    transform: translateX(100%) translateY(-50%);
  }
}

/* GLOW */
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.02;
  }
  50% {
    opacity: 0.06;
  }
}


.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-bottom: 20px;
}
.section,
.accordion-item {
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
body {
  scroll-behavior: smooth;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-text {
  z-index: 1;
}

.overlay {
  z-index: 2;
}

.content {
  z-index: 3;
}
.bg-text {
  color: red !important;
  font-size: 100px !important;
  z-index: 9999 !important;
}