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

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background-color: #0b0f1a;
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #020617;
}

.logo {
  font-family: 'Orbitron', sans-serif;
}

.menu a {
  margin-left: 40px;
  text-decoration: none;
  color: #fff;
  transition: 0.4s;
}

.menu a:hover {
  color:#00b4d8;
}

.btn-menu {
  background: #00b4d8;
  padding: 8px 14px;
  border-radius: 6px;
}

/* HERO */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
  url("img/forza.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 80px;
  font-family: 'Orbitron', sans-serif;
}

.hero p {
  margin: 20px 0;
  font-size: 40px;
}

/* BOTÃO */
.btn-primary {
  display: inline-block;
  background: #00b4d8;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0077b6;
  transform: scale(1.05);
}

/* SECTIONS */
.section {
  padding: 60px 50px;
  text-align: center;
}

.section h2 {
  margin-bottom: 30px;
}

.alt {
  background-color: #020617;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* CARD */
.card {
  background: #111827;
  padding: 25px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.card:hover {
  transform: translateY(-5px);
}

/* FEATURES */
.features {
  list-style: none;
}

.features li {
  margin: 20px 0;
  font-size: 18px;
}

/* GALERIA */
.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gallery img {
  width: 300px;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.card p {
  margin:15px, 0;
}

.card .btn-primary {

  margin-top: 10px;
  display: inline-block;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox:target {
  display: flex;
}

.lightbox-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 30px;
  color: white;
  text-decoration: none;
}

.nav {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  text-decoration: none;
  padding: 20px;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* CTA */
.cta {
  padding: 60px;
  text-align: center;
  background: #020617;
  
}

.cta p{
  margin: 15px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #020617;
  font-size: 15px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
  }
}