* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    cursor: default;
}

::selection {
    background-color: goldenrod;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

body {
    background: radial-gradient(circle at 80% -10%, darkgoldenrod, #111111, #000000);
    color: #fff;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: white;
    z-index: 999;
}

.logo_navbar {
    height: 55px;
    width: 55px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid #000000;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    user-select: none;
    pointer-events: none;
}

.menu {
    width: 30px;
    height: 30px;
    display: flex;
    gap: 7px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.line {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 30px;
    transition: 0.4s;
}

.nav_links {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 70%;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(60px);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 0 30px 30px 0;
    z-index: 888;
    transition: all 0.4s ease;
}

.link {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: default;
    transition: 0.3s;
}

.link:hover {
    color: darkgoldenrod;
    transform: scale(1.1);
}

.nav_links.active {
    left: 0;
    transition: all 0.4s ease;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: calc(100dvh - 75px);
    padding: 0 20px;
    gap: 20px;
}

.title_main {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.description_main {
    font-size: 1.2rem;
    color: white;
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.button_main {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: darkgoldenrod;
    border: none;
    border-radius: 5px;
    cursor: default;
    transition: background-color 0.3s, transform 0.3s;
}

.button_main:hover {
    background-color: goldenrod;
    transform: scale(1.05);
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 10px;
    background: #222;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, goldenrod 60%, darkgoldenrod 100%);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, darkgoldenrod 60%, goldenrod 100%);
}
::-webkit-scrollbar-track {
    background: #111;
    border-radius: 8px;
}