* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
  line-height: 1.6;
  color: #ff0000;
  background-color: bisque;
  min-height: 100vh;
}

header {
  background: linear-gradient(90deg, #ff0000, #ff8800);
  color: white;
  text-align: center;
  padding: 5px 0; 

}
#botoes {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
  transform: translateY(-13px);
}
#botoes a {
  color: white;
  text-decoration: none;
  display: inline-block;
  background: #ff8800;
  border: 2px solid white;
  border-radius: 30px;
  padding: 15px 25px;
  font-size: 18px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.562);
  transition: all 0.3s ease;
   margin: 4px 0; 
}

#botoes a:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

#tituloprincipal {
  text-align: center;
  margin-top: 20px;
  margin: 20px 0 1rem;
  color: #000;
}

h2,
h3 {
  color: #000;
  margin-bottom: 10px;
}

section {
  background: white;
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 15px #000;
}

.lilian {
  text-align: center;
  margin: 2rem 0;
}

.lilian img {
  max-width: 100%;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 0 30px #000;
  width: 20%;
}

figcaption {
  background: #ff0000;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  margin-top: 1rem;
  color: #000;
}

.pg {
  position: relative;
  bottom: 0;
  text-align: right;
  padding: 7px 0;
}

.pg a {
  background: #ff8800;
  color: white;
  padding: 15px 25px;
  border-radius: 30px 10px;
  border: 3px solid white;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

iframe {
  width: 100%;
  height: 100px;
  border: none;
  margin-top: 10px;
}
#rodape {
  background: linear-gradient(90deg, #ff0000, #ff8800);
  color: white;
  text-align: center;
  padding: 10px 0;
border: 1px solid black;
}
.btn-voltar {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background-color: #2d3436;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 20px; /* Espaço do topo e da lateral */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-voltar:hover {
    background-color: #0984e3; /* Muda para azul ao passar o mouse */
    transform: translateX(-5px); /* Dá um leve pulinho para a esquerda */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.seta {
    margin-right: 8px;
    font-size: 1.2rem;
}
