*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #111111;
    color: #e4e4e4;
    font-family: 'Inter', Helvetica, sans-serif;
    line-height: 1.6;
}

.container{
    width: 90%;
    max-width: 800px;
    margin: auto;
    padding: 30px 0;
}

header{
    text-align: center;
    padding-top: 60px;
}

h1{
    font-size: 2.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

h2{
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.descricao{
    color: #a1a1aa;
    max-width: 600px;
    margin: auto;
}

.card{
    background-color: #1f1f1f;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

ul{
    padding-left: 20px;
}

li{
    margin-bottom: 8px;
}

.imagem{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 14px;
    transition: 0.3s;
}

.imagem:hover{
    transform: scale(1.02);
}

.meio{
    object-position: center 30%;
}

.perfil{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
}

.imagens-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.botao{
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    padding: 10px 18px;
    background-color: #2f2f2f;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.2s;
}

.botao:hover{
    background-color: #3a3a3a;
}

.tema-claro{
    background-color: #f3f3f3;
    color: #111111;
}

.tema-claro .card{
    background-color: white;
    border: 1px solid #d4d4d4;
}

.tema-claro h2{
    color: #111111;
}

.tema-claro .descricao{
    color: #525252;
}

.tema-claro .botao{
    background-color: #e4e4e4;
    color: #111111;
}

.tema-claro .botao:hover{
    background-color: #d4d4d4;
}

.botao-tema{
    position: fixed;
    top: 20px;
    right: 20px;

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background-color: #1f1f1f;
    color: white;

    cursor: pointer;

    font-size: 1.2rem;

    transition: 0.3s;

    z-index: 999;
}

.botao-tema:hover{
    transform: scale(1.05);
}

.card{
    opacity: 0;
    transform: translateY(30px);

    transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.card.mostrar{
    opacity: 1;
    transform: translateY(0);
}

iframe{
    width: 100%;
    aspect-ratio: 16 / 9;

    border: none;
    border-radius: 14px;
}


.terminal-overlay{
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;

    transition: 0.3s;

    z-index: 2000;
}

.terminal-overlay.ativo{
    opacity: 1;
    pointer-events: all;
}

.terminal{
    width: 90%;
    max-width: 700px;

    background-color: #111111;
    border: 1px solid #333;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.terminal-topo{
    display: flex;
    gap: 8px;

    padding: 14px 18px;

    background-color: #1a1a1a;

    border-bottom: 1px solid #2a2a2a;
}

.bolinha{
    width: 12px;
    height: 12px;

    border-radius: 50%;
}

.vermelho{
    background: #ff5f56;
}

.amarelo{
    background: #ffbd2e;
}

.verde{
    background: #27c93f;
}

.terminal-conteudo{
    padding: 25px;
}

.prompt{
    color: #27c93f;
}

.terminal-input{
    width: 100%;

    margin-top: 15px;

    background: transparent;
    border: none;
    outline: none;

    color: white;

    font-size: 1rem;

    font-family: 'Inter', sans-serif;
}

.terminal-output{
    margin-top: 20px;

    color: #d4d4d4;
}

.comando{
    color: #27c93f;

    margin-bottom: 10px;
}