/* === ESTILO GERAL === */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #0c0c0c;
  color: #f1f1f1;
}

h1, h2, h3 {
  margin: 0;
}

.vermelho { color: #ff3b3b; }
.amarelo { color: #ffcc00; }

/* === CABEÇALHO === */
.cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #0c0c0c;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
  background-color: #333;
  border-radius: 8px;
}

/* === MENU (DESKTOP) === */
.menu {
  display: flex;
  align-items: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.menu a:hover { color: #ffcc00; }

/* === MENU (MOBILE) === */
.menu-icon {
  display: none;
  font-size: 1.8em;
  color: #ffcc00;
  cursor: pointer;
}

.menu-popover {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 60px;
  background: #1b1b1b;
  border-radius: 10px;
  padding: 15px 20px;
  width: 200px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.menu-popover a {
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  transition: 0.3s;
}

.menu-popover a:last-child { border-bottom: none; }
.menu-popover a:hover { color: #ffcc00; }

/* === RESPONSIVIDADE === */
@media (max-width: 950px) {
  .menu { display: none; }
  .menu-icon { display: block; }

  .apresentacao {
    flex-direction: column;
    text-align: center;
  }

  .botoes { justify-content: center; }
  .apresentacao div { margin-bottom: 20px; }
}

@media (max-width: 770px) {
  footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* === APRESENTAÇÃO === */
.apresentacao {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  flex-wrap: wrap;
}

.texto-apresentacao {
  max-width: 500px;
  margin-bottom: 35px;
}

.texto-apresentacao h1 {
  font-size: 2.5em;
  line-height: 1.3em;
}

.texto-apresentacao p {
  margin: 20px 0;
  font-size: 1.1em;
  color: #cfcfcf;
}

.botoes {
  display: flex;
  gap: 15px;
}

/* === BOTÕES === */
.btn-vermelho,
.btn-amarelo {
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  padding: 12px 25px;
}

.btn-vermelho {
  background: #ff3b3b;
  color: #fff;
  border: none;
}

.btn-vermelho:hover { background: #e63232; }

.btn-amarelo {
  background: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.btn-amarelo:hover {
  background: #ffcc00;
  color: #0c0c0c;
}

/* === IMAGEM APRESENTAÇÃO === */
.imagem-apresentacao {
  width: 300px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 12px;
}

.placeholder-img { width: 200px; }

/* === DASHBOARD === */
.dashboard {
  padding: 60px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #1b1b1b;
  padding: 25px;
  border-radius: 10px;
}

.card h3 {
  color: #ffcc00;
  font-size: 1.8em;
  margin: 10px 0;
}

.card p {
  color: #ccc;
  font-size: 0.9em;
}

/* === COMO FUNCIONA === */
.como-funciona {
  padding: 60px;
  text-align: center;
  background: #0e0e0e;
}

.como-funciona h2 {
  margin-bottom: 40px;
  font-size: 1.8em;
}

.passos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}

.passo {
  background: #1b1b1b;
  padding: 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 250px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.passo:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}

.passo h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #ffcc00;
}

.passo p {
  font-size: 0.95em;
  color: #ccc;
  line-height: 1.5;
}

/* === BENEFÍCIOS === */
.beneficios {
  padding: 60px;
  text-align: center;
}

.beneficios-lista {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.beneficio {
  background: #1b1b1b;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
}

/* === RODAPÉ === */
.rodape {
  background: #0a0a0a;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #222;
}

.links-rodape a {
  color: #aaa;
  text-decoration: none;
  margin-right: 20px;
  font-size: 0.9em;
}

.links-rodape a:hover { color: #ffcc00; }

.redes-sociais {
  display: flex;
  gap: 15px;
}

/* === PLACEHOLDERS / ÍCONES === */
.icone-placeholder {
  width: 40px;
  height: 40px;
  background: #333;
  margin: 0 auto 10px;
  border-radius: 8px;
}

.icone-placeholder.pequeno {
  width: 25px;
  height: 25px;
}

/* Ícones principais */
.icone-card,
.icone-passo,
.icone-beneficio,
.icone-social {
  font-size: 2em;
  color: #ffcc00;
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Ícones sociais menores */
.icone-social {
  font-size: 1.8em;
  margin: 0 8px;
  cursor: pointer;
}

.icone-card:hover,
.icone-passo:hover,
.icone-beneficio:hover,
.icone-social:hover {
  color: #ff0000;
  transform: scale(1.1);
}
