* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Afacad', sans-serif;
  line-height: 1.6;
  background-color: #F6F0F6; 
}


header {
  background-color: #F6F0F6 ;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

nav {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 32px;
  width: 100%;
  background-color: #F6F0F6 ;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1); 
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

nav ul li a::before {
  content: "•";
  font-size: 18px;
  color: #BA68C8; 
}

nav ul li a:hover {
  background-color: #BA68C8;
  color: rgba(246, 240, 246, 0.8); 
  border-radius: 3px;
  padding-right: 10px;
}

footer a {
  margin-top: 5px;
  color: #BA68C8; 
  text-decoration: none;
}

footer a:hover {
  background-color: #BA68C8;
  color: rgba(246, 240, 246, 0.8); 
  border-radius: 3px;
  padding: 5px;
}

footer {
  position: fixed;
  bottom: 0px;
  left: 0px;
  height: 32px;
  width: 100%;
  background-color: #F6F0F6 ;
  box-shadow: 5px 0 0 0 rgba(0, 0, 0, 0.1); 
}


.hero {
  position: relative;
  background: linear-gradient(rgba(246, 240, 246, 0.8), rgba(246, 240, 246, 0.8)), 
  url('background.jpg') no-repeat center center/cover;
  height: 97vh;
  overflow-y: hidden;
  z-index: -100;
}

.overlay {
  background-color: #F6F0F6(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 900px; 
  width: 100%; 
  margin-bottom: 20px;
  mix-blend-mode: multiply;
}
.tagline {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.title {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.cta {
  background-color: #C490D3; 
  color: white;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cta:hover {
  background-color: #b087cc; 
}

/* Responsividade */

/* Para telas menores que 768px (tablets) */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column; 
    gap: 10px; 
  }

  .hero {
    height: 70vh; 
  }

  .overlay {
    padding: 10px; 
  }

  .title {
    font-size: 36px; 
  }

  .description {
    font-size: 14px; 
  }

  .cta {
    font-size: 16px;
    padding: 8px 15px;
  }

  .logo {
    max-width: 480px; 
  }
}

/* Para telas menores que 480px (celulares) */
@media (max-width: 480px) {
  nav ul {
    flex-direction: column; 
    gap: 3px; 
  }

  .hero {
    height: 70vh; 
  }

  .title {
    font-size: 2px; 
  }

  .description {
    font-size: 12px; 
  }

  .cta {
    font-size: 14px; 
    padding: 6px 10px;
  }

  .logo {
    max-width: 300px; 
  }
}

