* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #3a0d0d;
    color: #fff9c4;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("../images/stars.jpg");
    background-size: cover;
    opacity: 0.25;
    z-index: -1;
}

h1 {
    font-size: 2.2rem;
    color: #fff9c4;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0px #801818;
    text-align: center;
}

.logo-link {
    position: fixed;
    top: 50px;
    left: 30px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff9c4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.logo-link:hover {
    transform: scale(1.1) rotate(-5deg);
}

.logo-link:hover .logo-img {
    filter: none;
    border-color: #801818;
}

.aprendizados-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 720px;
}

.aprendizado {
    background: rgba(120, 30, 30, 0.55);
    border-left: 5px solid #fff9c4;
    padding: 18px 22px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    transition: transform 0.25s ease, background 0.25s ease;
}

.aprendizado:hover {
    transform: translateX(6px);
    background: rgba(150, 40, 40, 0.75);
}

.aprendizado p {
    font-size: 0.9rem;
    color: #f0e68c;
    margin-bottom: 8px;
}

.aprendizado h2 {
    font-size: 1.1rem;
    font-weight: normal;
    color: #fff9c4;
}