html {
    scrollbar-width: thin;
    scrollbar-color: #ffcc00 #1a1a1a;
    scroll-behavior: smooth;
}

body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 640px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.6;
    font-size: 22px; 
}

.header-container {
    margin-bottom: 40px;
    border-bottom: 1px solid #ffcc00;
    padding-bottom: 20px;
}

.avatar {
    width: 90px;
    height: 90px;
    background: #333;
    border-radius: 50%;
    margin-bottom: 15px;
    display: block;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar-link {
    padding: 0 !important;
    display: inline-block;
    border-radius: 50%;
}

.avatar-link:hover {
    background-color: transparent !important;
}

.avatar-link:hover .avatar {
    transform: translateY(-5px); 
    box-shadow: 0 0 35px rgba(255, 204, 0, 0.6);
}

h1 {
    color: #ffcc00;
    margin: 0;
    font-size: 2.5em;
    letter-spacing: -1px;
}

.menu {
    margin-top: 20px;
    font-size: 1.1em;
}

.menu a {
    margin-right: 25px; /* Espaçamento maior para substituir a barra visualmente */
}

a {
    color: #ffcc00;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
    padding: 0 2px;
}

a:hover {
    background-color: #ffcc00;
    color: #1a1a1a;
    border-radius: 2px;
}

.f {
    padding: 20px;
    display: inline-block;
    border-radius: 8px;
    margin: 20px 0;
    box-sizing: border-box;
    width: 100%;
}

.f img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.c { background-color: #FFF5E6; }
.v { background-color: #E8F5E9; }
.a { background-color: #E1F5FE; }
.b { background-color: #F8F9FA; }

p {
    margin-bottom: 1.5em;
    text-align: left;
}

.contacto {
    margin-top: 40px;
    padding: 20px;
    background-color: #262626;
    border-left: 4px solid #ffcc00;
    border-radius: 4px;
}

.footer {
    margin-top: 60px;
    font-size: 0.9em;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #777;
    font-style: italic;
}

::selection {
    background-color: #ffcc00;
    color: #1a1a1a;
}