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

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: #000;
}
/* Fim do reset */

*::-webkit-scrollbar {
    width: 12px;
  }
  
  *::-webkit-scrollbar-track {
    background: #676767;
    border-radius: 10px;
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: purple;
    border-radius: 10px;
    border: 3px solid black;
  }

body{
    background-image: url("arquivos/gif-fundo.gif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;


    font-family: 'VT323', monospace;
    color: #f3f3f3;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;

}

.card{
    background-color: #070d12;
    width: 370px;
    border: 2px solid #e126d9;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.8;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 0.8; transform: translateY(0);}
}

.card .myInfo{
    padding-top: 20px; 
    display: flex;
    flex-direction: column;
    align-items: center; /*alinha horizontalmente por causa do flex direct column*/
    gap: 10px;
}

.card .myInfo img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
}


.card .myInfo .name {
    font-size: 26px;
}

.card .myInfo .role {
    color: #b8bbc5
}

.role::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.card .content{
    margin-top: 15px;
}

.card .content .tabs {
    display: flex;
}

.tabs img{
    width: 30px;
}

#project-gif {
    height: 25px;
    width: 25px;
}

.card .content .tabs .tab {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.card .tabs .tab.select {
    background-color: #262626;
    box-shadow: inset 0 -3px 0 #e126d9;
}

.card .tabInfo {
    background-color: #262626;
}

.card .tabs .tab:hover {
    background-color: #414141;
}

.tabInfo .info {
    min-height: 260px;
    padding: 15px;
    display: none;
}

.tabInfo .info.select {
    display: block;
}

.tabInfo .info .sub-title {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.tabInfo .description {
    font-size: 20px;
    max-height: 180px;
    overflow-y: auto;
    padding: 15px;
    text-align: justify;
}

.tabInfo .description span {
    color: #02d08f
}

.social {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    max-height: 180px;
    overflow-y: auto;
}

.button-link {
    width: 250px;
    display: block;
    color: #f3f3f3;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in-out;
}

.button-link:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.1);
}

.button-link:active {
    transform: scale(0.95);
}

.social .curriculo {
    background-color: #00c98d;
}

.social .linkedin {
    background-color: #0077b5;
}

.social .github {
    background-color: #545454;
}

.projetos {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    max-height: 180px;
    overflow-y: auto;
}

.projeto-descricao {
    text-align: justify;
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #1c1c1c;
    border-radius: 6px;
    animation: fadeIn 0.3s ease-in-out;
}

.projeto-descricao a {
    width: auto;
    padding: 8px 12px;
    font-size: 16px;
    display: inline-block;
    margin-top: 10px;
    border-radius: 6px;
}

.botao-centro {
    display: flex;
    justify-content: center;
}

.projeto-titulo {
    width: 100%;
    text-align: center;
    padding: 10px;
    border: none;
    background-color: #333;
    color: #f3f3f3;
    cursor: pointer;
    font-size: 18px;
    border-radius: 6px;
    transition: background-color 0.2s ease-in-out;
}

.projeto-titulo:hover {
    background-color: #444;
}

.projeto-titulo:focus {
    outline: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.projetos .mini-portfolio {
    background-color: #e126d9;
}

.projetos .amor-eternizado {
    background-color: #fb94ff;
}

.projetos .termu {
    background-color: #47afff;
}