* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Inter', sans-serif;
  background-color: #e6e6e6;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #c5d6ff;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo-container {
  flex-shrink: 0;
}

.logo-img-navbar {
  height: 40px;
  width: auto;
}

.menu {
  display: flex;
  flex: 1;
  justify-content: space-evenly;
  margin-left: 2rem;
}

.menu a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1rem;
}

.menu a:hover {
  font-weight: bold;
}

.dicas-container {
  padding: 7rem 2rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.dicas-container h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.dica-secao {
  margin-bottom: 3rem;
}

.dica-secao h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

/* CAIXAS DE DICA COM ÍCONES */
.dica-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #ffffff;
  border-left: 5px solid #6b88ff;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.dica-icon {
  height: 50px;
  width: 50px;
  flex-shrink: 0;
}

/* REAPROVEITAR highlight-box */
.highlight-box {
  background-color: #ffffff;
  border-left: 5px solid #6b88ff;
  padding: 1.2rem 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 1rem;
  background: #f3f3f3;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-img {
  height: 30px;
  width: auto;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .menu {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .dica-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dica-icon {
    height: 40px;
    width: 40px;
  }
}