@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #2B2B2B;
  color: #fff;
  font-family: "Raleway", sans-serif;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #C40000;
  text-shadow: 0 0 20px rgba(196, 0, 0, 0.7);
}

.hero p {
  margin: 20px 0;
}

/* BOTÕES */

.buttons {
  display: flex;
  gap: 8px;
}

.btn-primary {
  background: #C40000;
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ff0000;
  box-shadow: 0 0 15px #C40000;
}

.btn-secondary {
  border: 1px solid #fff;
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
}

.big {
  font-size: 1.2rem;
  padding: 18px 40px;
}

/* SEÇÕES */
section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  color: #ff0000;
  text-shadow: 0 0 20px rgba(196, 0, 0, 0.7);
  margin-bottom: 20px;
}

/* CARDS */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: #151F24;
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

/* PILARES */
.pilares {
  margin-top: 20px;
}

.pilares span {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px dashed #C40000;
  border-radius: 8px;
  padding: 10px 15px;
  margin: 5px;
  display: inline-block;
}

/* GLASS */
.glass {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
}

/* GRID */
.info-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* CTA FINAL */
.cta-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: linear-gradient(45deg, #000, #C40000);
}

/* LOGOS */
.logos {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.redes-sociais {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.redes-sociais a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 48px;
  height: 48px;
  border: 1px solid white;
  padding: 8px;
  cursor: pointer;
}

.redes-sociais a:hover {
  background-color: rgba(255, 255, 255, 0.308);
  cursor: pointer;
}

.redes-sociais button:hover {
  cursor: pointer;
}

.redes-sociais button {
  background-color: transparent;
  border: none;
  width: 100%;
  height: 100%;
}

.redes-sociais img {
  width: 100%;
  height: 100%;
}

/* ANIMAÇÃO */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.genese {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("../img/genese.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  min-height: 600px;
}

.genese::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(145deg, #1a1a1ac2, #111);
}

.manifesto {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("../img/manifesto.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  min-height: 600px;
}

.manifesto::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(145deg, #1a1a1ac2, #111);
}


.manifesto-box {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 30px;
  border-left: 4px solid #C40000;
  background: linear-gradient(145deg, #1a1a1a, #111);
  box-shadow: 0 0 20px rgba(196, 0, 0, 0.1);
}

.manifesto-box p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.timeline {
  max-width: 800px;
  margin: 40px auto;
  border-left: 2px solid #C40000;
  padding-left: 20px;
}

.timeline-item {
  margin-bottom: 25px;
  position: relative;
}

.timeline-item span {
  color: #C40000;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 5px;
  width: 10px;
  height: 10px;
  background: #C40000;
  border-radius: 50%;
}

.pilares {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  min-height: 600px;
  background-image: url("../img/pilares.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.pilares::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(145deg, #1a1a1ac2, #111);
}

.info-grid {
  max-width: 880px;
}

.event-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  width: 200px;
}

.event-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  background: #C40000;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(196, 0, 0, 0.4);
}

.idealizacao {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  overflow: hidden;
  padding-bottom: 64px;
  background-color: #151F24;
}

.idealizacao .img-box {
  margin-block: 32px;
  max-width: 880px;
}

.idealizacao img {
  width: 100%;
  object-fit: contain;
}

footer {
  display: flex;
  width: 100%;
  height: 44px;
  align-items: center;
  justify-content: center;
  background-color: #0f0f0f;
  font-size: 12px;
}

footer p a {
  text-decoration: none;
  color: #6e6e6e;
}

/* RESPONSIVO */
@media(max-width: 768px) {

  .features,
  .info-grid {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .features {
    width: 100%;
  }

  .event-card {
    width: 100%;
  }
}