* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #4a0e0e;
color: #fff9c4;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 20px;
line-height: 1.6;
overflow-x: hidden;
position: relative;
}

body::before {
content: "";
position: fixed;
inset: 0;
background-image: url("../images/bolo.jpg");
background-size: cover;
background-position: center;
opacity: 0.5;
z-index: -1;
}

.conteudo-principal {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
max-width: 900px;
width: 100%;
}

h1 {
font-size: 3.5rem;
margin-bottom: 15px;
text-transform: uppercase;
text-shadow: 3px 3px 0px #801818;
text-align: center;
}

.caixa {
background-color: rgba(128, 24, 24, 0.5);
padding: 25px;
border-radius: 15px;
border-left: 8px solid #fff9c4;
margin-bottom: 40px;
max-width: 550px;
width: 100%;
box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.caixa h2 {
font-size: 1rem;
font-weight: 500;
text-align: center;
}

.botoes {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 25px;
width: 500px;
margin-bottom: 40px;
}

.botao {
position: relative;
overflow: hidden;
background-size: cover;
background-position: center;
flex: 1 1 140px;
min-height: 135px;
padding: 12px 25px;
border-radius: 20px;
color: #FFFFC5;
text-decoration: none;
font-weight: bold;
font-size: 1.2rem;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
transition: 0.3s;
opacity: 0.90;
}

.botao::before {
content: "";
position: absolute;
inset: 0;
background: rgba(184, 35, 35, 0.25);
z-index: 1;
}

.botao span {
position: relative;
z-index: 2;
}

.botao:hover {
transform: scale(1.05);
}

.btn-pensamentos { background-image: url('../images/curlybefore.jpg'); }
.btn-musica { background-image: url('../images/curly.jpg'); }
.btn-livros { background-image: url('../images/jimmy3.jpg'); }
.btn-amigurumi { background-image: url('../images/anya2.jpg'); }
.btn-desenhos { background-image: url('../images/swansea.jpg'); }
.btn-jogos { background-image: url('../images/daisuke.jpg'); }

.sobre-mim-lateral {
position: absolute;
top: 40px;
right: 40px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}

.sobre-mim-lateral h2 {
font-size: 1rem;
}

.sobre-mim-lateral img {
width: 90px;
height: 90px;
border-radius: 50%;
border: 5px solid #8f3d38;
box-shadow: 0 8px 25px rgba(0,0,0,0.6);
transition: 0.3s;
}

.sobre-mim-lateral img:hover {
transform: rotate(5deg) scale(1.05);
}

.link-aprendizados {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #f6f1a2 !important;
    text-decoration: none !important; 
    opacity: 0.8;
    transition: 0.3s;
    font-weight: bold;
}

.link-aprendizados:hover {
    opacity: 1;
    text-decoration: none !important;
}

.painel-fofo {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.painel-fofo img {
  width: 70px;
  opacity: 85%;
  height: auto;
}

.painel-fofo img:hover {
  transform: scale(1.15) rotate(-5deg);
  
}

.painel-fofo img:nth-child(odd) {
  transform: rotate(-5deg);
}

.painel-fofo img:nth-child(even) {
  transform: rotate(5deg);
}

.polle-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}

.polle {
  opacity: 80%;
  width: 90px;
  height: auto;
}

.balao {
  opacity: 80%;
  position: absolute;
  bottom: -5px;   
  right: -100px;
  width: 450px;
  height: auto;
}