:root {
  --coral: #E08080;
  --azul: #80A0E0;
  --cinza: #E0E0E0;
  --verde: #80E080;
  --texto: #1F2937;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background-color: #ffffff;
  background-image: url("BG-Empreendedorismo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--texto);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  text-align: center;
}

/* ---------- HEADER ---------- */
header {
  padding: 20px;
  margin-top: 30px;
}
header img {
  height: 80px;
  max-width: 90%;
}

/* ---------- CONTEÚDO PRINCIPAL ---------- */
.container {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 20px;
  color: var(--texto);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
p {
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 40px;
}

/* ---------- BOTÃO ---------- */
.botao {
  background-color: var(--azul);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.botao:hover {
  background-color: var(--coral);
  transform: scale(1.05);
}

/* ---------- RODAPÉ ---------- */
footer {
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 15px;
  margin-top: auto;
}
footer img {
  height: 90px;
  object-fit: contain;
}
