/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #012F51;
}

/* TOPO COM BANNER */
.topo img.banner-topo {
  width: 100%;
  display: block;
  max-height: 620px;
  object-fit: cover;
}

.topo_mobile{
    display: none;
}

/* AÇÕES */
.acoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #fff;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.linha_dourada{
    margin: 0;
        width: 100%;
    height: 12px;
    background-color: #a39261;

}
.botao {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  min-width: 200px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.botao-edital {
  background-color: #D5F0F0;
  color: #012F51;
  text-decoration: none;
}

.botao-inscricao {
  background-color: #D5F0F0;
  color: #012F51;
}

.botao-inscreva {
  background-color: #00A89A;
  color: white;
  text-decoration: none;
}

/* RODAPÉ */
footer {
  background-color: #012F51;
  color: white;
  padding: 20px;
  text-align: center;
}
.rodape{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;

}



footer img {
  width: 140px;
  margin-bottom: 10px;
  margin: 3em;
}

footer p {

  margin: 3em;
}



/* Telas até 1024px (tablets e notebooks menores) */
@media (max-width: 1024px) {
  .acoes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
.topo_mobile {
    display: block;
}

.topo img.banner-topo {

  display: none;

}

  .botao {
    width: 90%;
    font-size: 1rem;
  }

  footer img {
    width: 120px;
  }
}

/* Telas até 768px (tablets pequenos e celulares em paisagem) */
@media (max-width: 768px) {
  .botao {
    padding: 16px;
    font-size: 1rem;
  }
  .topo img.banner-topo {

  display: none;

}

  .topo_mobile {
    display: block;
}
  .acoes {
    padding: 30px 10px;
  }

  footer {
    padding: 15px;
  }

  footer img {
    width: 100px;
  }
}

/* Telas até 480px (celulares) */
@media (max-width: 480px) {
  .banner-topo {
    max-height: 300px;
    object-fit: cover;
  }

  .topo img.banner-topo {

  display: none;

}

  .topo_mobile {
    display: block;
}
  .botao {
    font-size: 0.95rem;
    padding: 14px 10px;
  }

  .rodape p {
    font-size: 0.85rem;
  }
}