/* ========================= */
/* CONFIG GERAL */
/* ========================= */

:root{
  --red:#d50000;
  --yellow:#ffc400;
  --black:#050505;
  --dark:#111111;
  --text:#ffffff;
  --gray:#cfcfcf;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:
  radial-gradient(circle at top,#2a0000,#000 60%);
  color:var(--text);
  font-family:'Montserrat',sans-serif;
  overflow-x:hidden;
}

/* ========================= */
/* PADRÃO DE LEITURA GLOBAL */
/* ========================= */

h1, h2, h3{
  font-family:'Anton',sans-serif;
  letter-spacing:0.5px;
}

h1{
  font-size:2.8rem;
  line-height:1.1;
  margin-bottom:20px;
}

h2{
  font-size:2rem;
  margin-bottom:15px;
}

p{
  font-size:1.1rem;
  line-height:1.8;
  color:var(--gray);
  margin-bottom:20px;
}

.container{
  width:95%;
  max-width:900px;
  margin:auto;
  padding:30px 0;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{
  width:100%;
  position:sticky;
  top:0;
  z-index:999;

  background:rgba(0,0,0,.92);
  backdrop-filter:blur(10px);

  border-bottom:2px solid #1d1d1d;
}

.nav-container{
  width:95%;
  max-width:1400px;

  margin:auto;
  padding:18px 0;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:2.2rem;
  font-weight:900;
  color:#fff;
}

.logo span{
  color:var(--yellow);
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.nav-links a:hover{
  color:var(--yellow);
}

.youtube-btn{
  background:var(--red);
  color:#fff;

  text-decoration:none;
  font-weight:800;

  padding:12px 20px;
  border-radius:12px;

  transition:.3s;
}

.youtube-btn:hover{
  transform:scale(1.05);
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
  width:95%;
  max-width:1400px;

  margin:auto;
  padding:70px 0;

  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}

.hero h1{
  font-family:'Anton',sans-serif;

  font-size:6rem;
  line-height:.95;

  text-transform:uppercase;

  margin-bottom:25px;
}

.hero h1 span{
  color:var(--yellow);
}

.hero p{
  color:var(--gray);

  font-size:1.15rem;
  line-height:1.8;

  max-width:650px;

  margin-bottom:35px;
}

/* ========================= */
/* FEATURES */
/* ========================= */

.hero-features{
  display:flex;
  flex-wrap:wrap;
  gap:20px;

  margin-bottom:35px;
}

.feature{
  background:var(--dark);

  border:1px solid #222;
  border-radius:14px;

  padding:18px;

  min-width:180px;
}

.feature h3{
  color:var(--yellow);
  margin-bottom:8px;
}

.feature p{
  margin:0;
  font-size:.95rem;
  line-height:1.5;
}

/* ========================= */
/* BOTÕES */
/* ========================= */

.btn-back{
  display:inline-block;
  background:var(--yellow);
  color:#000;
  text-decoration:none;
  font-weight:900;
  padding:14px 22px;
  border-radius:12px;
  margin-bottom:20px;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
}

.hero-buttons a{
  color:#fff;
  text-decoration:none;

  padding:15px 24px;
  border-radius:12px;

  font-weight:800;

  transition:.3s;
}

.hero-buttons a:hover{
  transform:translateY(-5px);
}

.btn-youtube{
  background:#d50000;
}

.btn-instagram{
  background:#d62976;
}

.btn-whatsapp{
  background:#18a850;
}
.btn-center{
  text-align:center;
  margin:30px 0;
}

/* ========================= */
/* IMAGEM */
/* ========================= */

.hero-image img{
  width:100%;
  max-width:520px;

  display:block;
  margin:auto;

  filter:drop-shadow(0 0 30px rgba(255,0,0,.25));
}

/* ========================= */
/* SECTION */
/* ========================= */

.section{
  width:95%;
  max-width:1400px;

  margin:50px auto;
}

.section-title{
  display:inline-block;

  background:var(--yellow);
  color:#000;

  padding:12px 24px;
  border-radius:10px;

  font-weight:900;
  font-size:1.1rem;

  margin-bottom:25px;
}

/* ========================= */
/* VÍDEO DESTAQUE */
/* ========================= */

.featured{
  background:#0d0d0d;

  border:2px solid #1f1f1f;
  border-radius:22px;

  padding:25px;

  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:25px;
}

.featured iframe{
  width:100%;
  height:420px;

  border:none;
  border-radius:18px;
}

.featured-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.featured-tag{
  width:fit-content;

  background:var(--red);

  padding:7px 15px;
  border-radius:30px;

  font-size:.8rem;
  font-weight:800;

  margin-bottom:15px;
}

.featured-content h2{
  font-family:'Anton',sans-serif;

  font-size:3rem;
  line-height:1;

  margin-bottom:20px;
}

.featured-content p{
  color:var(--gray);

  line-height:1.8;

  margin-bottom:25px;
}

.watch-btn{
  width:fit-content;

  background:var(--yellow);
  color:#000;

  text-decoration:none;
  font-weight:900;

  padding:16px 28px;
  border-radius:12px;
}

/* ========================= */
/* CTA */
/* ========================= */

.cta{
  background:#0f0f0f;

  border:2px solid #1f1f1f;
  border-radius:22px;

  padding:40px;

  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
}

.cta h2{
  font-family:'Anton',sans-serif;

  font-size:3rem;
  line-height:1;

  margin-bottom:15px;
}

.cta p{
  color:#ccc;
  line-height:1.8;
}

.cta a{
  background:#18a850;
  color:#fff;

  text-decoration:none;
  font-weight:900;

  padding:18px 28px;
  border-radius:12px;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
  margin-top:70px;

  background:#030303;
  border-top:1px solid #1f1f1f;

  text-align:center;

  padding:35px 20px;

  color:#777;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media(max-width:1100px){

  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero p{
    margin:auto auto 35px;
  }

  .hero-features{
    justify-content:center;
  }

  .hero-buttons{
    justify-content:center;
  }

}

@media(max-width:900px){

  .featured{
    grid-template-columns:1fr;
  }

  .featured iframe{
    height:300px;
  }

  .featured-content{
    align-items:center;
    text-align:center;
  }

  .cta{
    grid-template-columns:1fr;
    text-align:center;
  }

}

@media(max-width:700px){

  .nav-container{
    flex-direction:column;
    gap:18px;
  }

  .nav-links{
    gap:15px;
  }

  .hero{
    padding:40px 0;
  }

  .hero h1{
    font-size:3.7rem;
  }

  .hero p{
    font-size:1rem;
  }

  .feature{
    width:100%;
  }

  .featured-content h2{
    font-size:2rem;
  }

  .featured iframe{
    height:240px;
  }

  .cta h2{
    font-size:2.2rem;
  }

}
.video-list{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  gap:25px;
}

.video-item{
  display:flex;
  gap:20px;
  align-items:center;
}

.video-item img{
  width:200px;
  border-radius:12px;
}

.video-item h3{
  margin-bottom:8px;
}

.video-item a{
  color:var(--yellow);
  font-weight:700;
  text-decoration:none;
}