/* Import del font da Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

:root {
    --bg-color: #000000;
    --text-color: #fdfdfd;
    --highlight-color: #00baff;
    --separator-color: rgba(253, 253, 253, 0.2);
}

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

body {
    font-family: 'Roboto Mono', monospace;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

main {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 2px solid var(--separator-color);
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 2rem;
}

p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    text-align: left;
}

p strong {
    font-weight: 700;
    color: var(--text-color);
}

.link-animato {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.link-animato:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.social-icons {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--highlight-color);
}

.social-icons svg {
    width: 22px;
    height: 22px;
}

.copy-footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.5;
}

@media (max-width: 600px) {
    main {
        padding: 3rem 1rem;
    }

    p {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.6rem;
    }
}
