
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    background-color: #fff9e6; 
    color: #4a3b32;
    padding-bottom: 60px; 
}

.topo-site {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffb3d9; 
    text-align: center;
    padding: 20px;
    border-bottom: 5px solid #ff80bf;
}

.topo-site h1 {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.menu-navegacao {
   position: sticky;
   top: 0;
   z-index: 1000;
    margin-top: -20px;
}

.menu-navegacao a {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}
.conteudo-principal {
    display: flex;
    max-width: 1000px;
    margin: 30px auto;
    gap: 20px;
    padding: 0 15px;
}
.post-card {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 15px;
    flex: 2;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative; 
}
.post-content {
    display: flex;
    flex-direction: column; 
    gap: 20px; 
    flex: 2;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative; 
}
.post-content h2 a {
    color: #ff66b2;
    text-decoration: none;

}
.post-content h2 a:hover {
    color: #f49ec9;
}
.post-content .read-more {
    color: #ff66b2; 
    font-weight: bold; 
}
.post-content .read-more:hover {
    color: #f49ec9;
}
.postagem {
    flex: 2;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative; 
}
.postagem h2 {
    color: #ff66b2;
    margin-bottom: 15px;
}
.postagem p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.alerta {
    position: sticky;
    top: 10px;
    background-color: #ffb3f0; 
    padding: 12px;
    border-left: 5px solid #ff33b8;
    margin: 20px 0;
    font-weight: bold;
    border-radius: 4px;
}

.barra-lateral {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: fit-content;
    position: relative;
}


.barra-lateral::before {
    content: "🐇";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    background: #fff;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.barra-lateral h3 {
    color: #ff66b2;
    margin-bottom: 10px;
    border-bottom: 2px solid #fff0f5;
    padding-bottom: 5px;
}

.barra-lateral ul {
    width: 150px;
    height: 150px;
    background-image: url('https://lh3.googleusercontent.com/a/ACg8ocIUmU0qpJlCQ_9MnbL0kIn8vIlLX-4IEOrjdZ30DfZUxf6p568=s360-c-no');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.barra-lateral li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.botao-topo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff66b2;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}