@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');


:root {
    --cor-fundo: #0B0D13;
    --cor-destaque: #00E699;
    --cor-destaque-opacidade-60: #00E69999;
    --cor-destaque-opacidade-40: #00E69966;
    --cor-destaque-opacidade-30: #00E6994D;
    --cor-destaque-opacidade-10: #33FFBB1A;
    --cor-destaque-opacidade-5: #33FFBB0D;
    --cor-texto-primario: #818898;
    --cor-texto-secundario: #f0f2f5;
}

* {
    font-family: "JetBrains Mono", "monospace", "Inter", "system-ui", "sans-serif";
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-size: 14px;
}

body {
    width: 100vw;
    background: var(--cor-fundo);
    background-image: linear-gradient(
        to bottom, 
        transparent 50%, 
        rgba(0, 230, 153, 0.03) 50%
    );
    background-size: 100% 4px;
}

.top-header {
    display: flex;
    align-items: center;
    height: 70px;
    width: 100vw;
    padding: 1rem 15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.014);
    backdrop-filter: blur(10px);
}

.header-logo-container {
    width: 30%;
    margin-left: 20px;
    font: 20px "JetBrains Mono";
    font-weight: bolder;
    letter-spacing: -3px;
}

.header-logo span {
    font: 20px "Inter";
    font-weight: bolder;
}

.header-logo {
    text-decoration: none;
}

.logo-nome {
    color: var(--cor-texto-secundario);
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.header-logo:hover .logo-nome {
    color: var(--cor-destaque);
    cursor: pointer;
}

.header-menu {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 70%;
    margin-right: 20px;
    gap: 35px;
    font: monospace;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
}

.header-menu a {
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-decoration: none;
    color: var(--cor-texto-primario);
}

.header-menu a::before {
    content: '//';
    position: absolute;
    right: 100%; /* Empurra o // exatamente para a esquerda do texto */
    margin-right: 4px; /* Dá um pequeno espaço entre o // e a palavra */
    color: var(--cor-destaque);
    opacity: 0; /* Começa invisível */
    transition: opacity 0.3s ease;
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; /* Posiciona a linha um pouco abaixo do texto */
    left: -20px;
    width: 0;
    height: 1px; /* Espessura da linha */
    background-color: var(--cor-destaque);
    box-shadow: 0 0 8px #33FFBB1A; /* Aquele brilho suave na linha */
    opacity: 0; /* Começa invisível */
    transition: width 0.3s ease;
}

.header-menu a:hover {
    color: var(--cor-destaque);
    text-shadow: 0 0 10px rgba(0, 230, 153, 0.3); /* Brilho no texto */
    cursor: pointer;
}

.header-menu a:hover::before {
    opacity: 1;
}
.header-menu a:hover::after {
    opacity: 1;
    left: -20px; /* Puxa a linha para trás para cobrir os dois caracteres // */
    width: calc(100% + 20px); /* Aumenta o tamanho da linha para compensar */
}

.mode-selection {
    display: flex;
    justify-content: center;
    width: 50px;
}

.mode-selection svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--cor-destaque);
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mode-selection button {
    all: unset;
    cursor: pointer;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px;
    border: 1px solid var(--cor-destaque-opacidade-30);
    box-shadow: 0 0 15px var(--cor-destaque-opacidade-10), inset 0 0 15px var(--cor-destaque-opacidade-5);
    transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mode-selection button:hover {
    transform: scale(1.05);
}

.links {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.links a {
    text-decoration: none;
    color: white;
}

.links a:hover {
    color: var(--cor-destaque);
}

.first-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 200px;
    /*border: 1px solid red;*/
}

.texto-destaque {
    color: var(--cor-destaque);
}

.texto-primario {
    color: var(--cor-texto-primario);
}

.texto-secundario {
    color: var(--cor-texto-secundario);
}

.nome {
    display: flex;
    gap: 30px;
}

.nome span {
    font-size: 72px;
    font-family: "Inter";
    font-weight: bold;
}

.muriel {
    color: var(--cor-destaque);
    text-shadow: 
        0 0 20px var(--cor-destaque-opacidade-60), 
        0 0 40px var(--cor-destaque-opacidade-40);
}

.terminal-texto {
    font-family: monospace;
    color: var(--cor-texto-secundario);
    font-weight: bold;
}

.prefixo {
    color: var(--cor-destaque); /
}

.cursor {
    color: var(--cor-destaque);
    animation: piscar 0.8s step-end infinite;
}

.texto-digitado {
    font-size: 25px;
}

@keyframes piscar {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}