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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

body {
    background-image: url(../image/background.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

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

.business-card {
    background-color: #2727279a;
    width: 380px;
    border: 1.9px solid #3bb5fc;
    border-radius: 15px;
    overflow: hidden;
    outline: none;
    border-color: #3bb5fc;
    box-shadow: 0 0 50px #3bb5fc;
    position: relative;
}

.language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.lang-btn {
    background-color: #1a1a1a;
    color: #f3f3f3;
    border: 1.5px solid #3bb5fc;
    border-radius: 8px;
    padding: 6px 12px;
    font-family: 'VT323', monospace;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(59, 181, 252, 0.3);
}

.lang-btn:hover {
    background-color: #3bb5fc;
    color: #000;
    box-shadow: 0 0 20px #3bb5fc;
    transform: translateY(-2px);
}

.lang-btn.active {
    background-color: #3bb5fc;
    color: #000;
    box-shadow: 0 0 25px #3bb5fc;
}

.business-card .my-information {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.business-card .my-information img {
    width: 11rem;
    height: 10rem;
    border-radius: 70px;
    border: 1.9px solid #3bb5fc;
    outline: none;
    border-color: #3bb5fc;
    box-shadow: 0 0 30px #3bb5fc;
}

.business-card .my-information .name {
    font-size: 30px;
    color: #f3f3f3;
}

.business-card .my-information .job-title {
    font-size: 25px;
    color: #f3f3f3;
}

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

.business-card .tabs {
    display: flex;
}

.business-card .tabs .tab {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.business-card .tabs img {
    width: 4rem;
    transition: transform 0.3s ease;
}

.business-card .tabs .tab:hover img {
    transform: scale(1.1);
}

.tab-label {
    font-size: 18px;
    font-weight: bold;
    color: #f3f3f3;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.business-card .tabs .tab.selected {
    background-color: #1a1a1a;
    border-bottom-color: #3bb5fc;
    box-shadow: 0 -2px 15px rgba(59, 181, 252, 0.5);
}

.business-card .tabs .tab.selected .tab-label {
    color: #3bb5fc;
    text-shadow: 0 0 10px #3bb5fc;
}

.business-card .information-tabs {
    background-color: #272727;
}

.business-card .tabs .tab:hover {
    background-color: #1a1a1a;
}

.information-tabs .information {
    min-height: 260px;
    padding: 15px;
    display: none;
}

.information-tabs .information.selected {
    display: block;
}

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

.information-tabs .description {
    font-size: 22px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 15px;
}

.information-tabs .description span {
    color: #02d08f;
}

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


.social-networks li a {
    width: 250px;
    display: block;
    color: #f3f3f3;
    text-align: center;
    border-radius: 4%;
    padding: 10px;
    font-size: 20px;
    transition: background 1s;
    border: 2px solid #000;
}

.social-networks li a:hover {
    background-color: #ffee00;

}


.social-networks .linkedin {
    background-color: #06c185;
}


.social-networks .linkedin :hover {
    background-color: #ffee00e8;
}



.social-networks .github {
    background-color: #1d87bd;
}

.social-networks .github:hover {
    background-color: #ffee00e8;
}

.social-networks .instagram {
    background-color: rgb(255, 41, 41);
}

.social-networks .instagram:hover {
    background-color: #ffee00e8;
}

.social-networks .discord {
    background-color: rgb(49, 95, 247);
}

.social-networks .discord:hover {
    background-color: #ffee00e8;
}


.social-networks .portfolio {
    background-color: #a395e9
}


.social-networks .portfolio:hover {
    background-color: #ffee00e8;
}


/* Audio */
#minhaMusica {
    width: 14rem;
    margin: 10px 10px;
    background-color: #2727279a;
    border: 1.9px solid #3bb5fc;
    border-radius: 30px;
    outline: none;
    border-color: #3bb5fc;
    box-shadow: 0 0 20px #3bb5fc;
}
#minhaMusica::-webkit-media-controls-panel {
    background-color: #07070741;
    border-radius: none;
}

#minhaMusica::-webkit-media-controls-pause-button {
    background-color: #3bb5fc;
}

#minhaMusica::-webkit-media-controls-current-time-display,
#minhaMusica::-webkit-media-controls-time-remaining-display {
    color: #000;
}
