@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --body-bg-image: url('assets/bg.png');

    /* colors */
    --bg: #ADBAC0;
    --sky-blue: #CCDFED;
    --blue-light: #548DDD;
    --strong-blue: #002fcb;
    --white: #FFFFFF;
    --black: black;
}
/* Global Styles */
* {
    margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;   
}
*::-webkit-scrollbar { /* Estiliza a barra de rolagem para toda a página */
    width: 5px; /* Largura da barra de rolagem vertical */
    height: 5px; /* Altura da barra de rolagem horizontal */
}
*::-webkit-scrollbar-thumb { /* Estiliza o polegar da barra de rolagem */
    background: var(--blue-light); /* Cor do polegar */
    border-radius: 15px; /* Arredonda os cantos do polegar */
}
*::-webkit-scrollbar-track { /* Estiliza a trilha da barra de rolagem */
    background: var(--bg); /* Cor de fundo da trilha */    
}
*::-webkit-scrollbar-button { /* Remove ou reduz o espaço das setinhas (botões de rolagem) */
    display: none; /* Esconde as setas de rolagem */
}
body {
    margin: 0;
    padding: 0;
    background-image: var(--body-bg-image);
    background-size: 150px;
}
body a{
    color: var(--strong-blue);
    text-decoration: none;    
}
body a:hover{
    color: var(--blue-light);
    transform: scale(1.1);    
}
body strong{
    color: var(--blue-light);
    font-weight: 800;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Anton", sans-serif;
    font-style: normal;
    color: var(--strong-blue);
}
p{
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
}

#container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

header{
    display: flex;
    flex-direction: column;
    align-content:space-between;        
}

/* Imagem recortada */
.header-img {
    max-width: 100%;
    position: absolute;
    z-index: 0;
}

/* Menu */
nav {        
    margin: 0 auto;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2em;
    padding-top: 47%; /* espaço para a imagem sobrepor */
    z-index: 1;
}    

/* Logo e texto */
.content {
    margin: 0 auto;
    padding: 32% 15px 0px 15px;
    margin-top: -30%;
    margin-bottom: 0;
    width: 83%;
    height: 100%;
    background: -webkit-linear-gradient(90deg,rgba(170, 182, 194, 1) 85%, rgba(170, 182, 194, 0) 100%);
    text-align: center;
    font-size: x-small;
}
section{
    margin: 0 auto;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo {
    width: 75px;
    margin-bottom: 10px;
    color: #004AAD;
}
.sectiontext{
    color: var(--white);
}

/* Perfil */
.card-profile{
    margin: 0 auto;
    padding: 5px 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #ffffff55;
    border-radius: 15px;
    border: solid 1px rgb(255, 255, 255);
    filter: drop-shadow(0.5px 0.5px 15px rgba(255, 255, 255, 0.335));
}
.meio{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.meio2{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-me{
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.titulo-card{
    margin: 0 10px;  
}
i{
    color: var(--blue-light); 
}
.card-foto{
    margin: 0 auto;
    width: 10vh;
    border-radius: 250px;
}
.card-text{
    padding: 0 5px;
    font-size: xx-small;
    text-align: left;
    color: var(--white);
}

.tabs {
    max-width: 550px;
    min-height: 300px;
    padding: 0.2vh;
    display: flex;
    position: relative;
}
input {
    display: none;
}
.tab-name {
    box-sizing: border-box;
    cursor: pointer;
    margin: 0.4vw;       
    min-height: 50px;
    padding: 0 4.5px; 
    color: white;
    background: rgba(255, 255, 255, 0);
    transition: 0.25s;
}
.tab-name:hover{
    transform: scale(1.2);
    transition: 0.5s;
}     
      
input:checked + label .tab-name {
    background: rgba(255, 255, 255, 0);
    color: black;
    font-weight: 800;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: 0.5s;
    filter: drop-shadow(0.5px 0.5px 2px rgba(0, 0, 0, 0.200));  
    animation: jump 0.9s ease-in-out infinite; 
}
.icontab{
    max-width: 30px;
}

@keyframes jump {
    0%   { transform: translateY(0) scale(1.2); }
    30%  { transform: translateY(-10px) scale(1.2); }
    50%  { transform: translateY(0) scale(1.2); }
    70%  { transform: translateY(-10px) scale(1.2); }
    100% { transform: translateY(0) scale(1.2); }
}
.tab-content {
    box-sizing: border-box;
    position: absolute;
    margin: 0 auto;
    width: 100%;
    height: 75%;
    left: 0;
    padding: 15px;
    background: var(--sky-blue);
    color: black;        
    border-radius: 15px;
    opacity: 0;
    z-index: 0;
    transition: 0.5s;
}
input:checked + label .tab-content {
    opacity: 1;
    z-index: 1;
}

.profile-content{
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

table{
    margin: 0 5px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    line-height: 1;
    text-align: left;
}
table td{
    width: 50%;
    padding-bottom: 1px;
    margin: 0 auto;    
    border-bottom: 2px dotted #548ddd67;
}
.figure{
    width: 130px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    border-radius: 50%;
    transition: 0.5s;
    filter: drop-shadow(0.5px 0.5px 2px rgba(0, 0, 0, 0.200));    
}
.figure:hover{
    transform: scale(1.05);
    filter:saturate(2);
}

/* Rodapé */
footer {    
    margin: 0 auto;
    padding: 5px;
}