body {
  margin:0;
  font-family: Arial;
  background:#f5f5f5;
}

.container {
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.header {
  background:#f7941d;
  padding:15px 0;
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo {
  height:40px;
}

.menu {
  display:flex;
  gap:25px;
  list-style:none;
  font-weight:bold;
}

.actions {
  display:flex;
  gap:10px;
}

.btn-black {
  background:black;
  color:white;
  padding:8px 15px;
  border-radius:20px;
  text-decoration:none;
}

/* HERO (CARROSSEL) */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* OVERLAY */
.overlay {
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

/* TEXTO HERO */
.hero-content {
  position: absolute;
  color: white;
  max-width: 600px;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.hero h1 {
  font-size:38px;
}

.hero-buttons {
  margin-top:20px;
}

.btn-orange {
  background:#f7941d;
  padding:10px 20px;
  text-decoration:none;
  color:black;
  margin-right:10px;
}

.btn-outline {
  border:2px solid #f7941d;
  padding:10px 20px;
  color:white;
  text-decoration:none;
}

/* BOLINHAS */
.controls {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.controls span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: white;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}

.controls span.active {
  opacity: 1;
}

/* NOTICIAS */
.noticias {
  padding:60px 0;
}

.cards {
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.card {
  background:white;
  padding:15px;
  border-radius:10px;
  width:30%;
}

.card img {
  width:100%;
  border-radius:10px;
}

/* SOCIAL */
.social {
  display:flex;
  justify-content:center;
  gap:20px;
  padding:40px 0;
}

.social-btn {
  width:60px;
  height:60px;
  background:black;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:0.3s;
}

.social-btn i {
  color:white;
  font-size:24px;
}

.social-btn:hover {
  transform:scale(1.1);
}

/* CORES DAS REDES */
.social-btn:nth-child(1):hover { background:#E1306C; }
.social-btn:nth-child(2):hover { background:#1877F2; }
.social-btn:nth-child(3):hover { background:#FF0000; }
.social-btn:nth-child(4):hover { background:#25D366; }

/* CTA */
.cta {
  background:black;
  color:white;
  text-align:center;
  padding:60px 20px;
}

/* FOOTER */
.footer {
  background:black;
  color:white;
  text-align:center;
  padding:20px;
}

/* RESPONSIVO */
@media(max-width:768px){

  .menu {
    display:none;
  }

  .hero {
    height:60vh;
    min-height:220px;
    max-height:350px;
  }

  .hero-content {
    left:5%;
    right:5%;
    max-width:100%;
  }

  .hero h1 {
    font-size:18px;
  }

  .cards {
    flex-direction:column;
  }

  .card {
    width:100%;
  }

  .social {
    flex-direction:column;
    align-items:center;
  }

.video {
  margin:60px auto;
  max-width:800px;
}

.video iframe {
  width:100%;
  height:450px;
  border-radius:10px;
  display:block;
}