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

/* BASE */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url('assets/c10.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 20px;
}

.logo {
  max-width: 160px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero p {
  color: #ccc;
  margin-bottom: 30px;
  font-size: 18px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 35px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* BRANDS */
.brands {
  text-align: center;
  padding: 60px 20px;
  background: #cacaca;
}

.brands p {
  margin-bottom: 20px;
  color: #000;
}

.logos img {
  height: 25px;
  margin: 10px 15px;
  filter: grayscale(100%);
  opacity: 0.7;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #666;
  background: #000;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }
}