/* COMPONENTES ESPECÍFICOS */

/* MUGSHOT E LOGO */
.mugshot {
    position: absolute;
    top: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    height: 210px;
    width: 210px;
}

.mugshot .logo {
    margin: -23px;
}

.logo {
    position: absolute;
    top: 0;
    left: 60%;
    transform: translateX(-50%);
    z-index: 100;
    margin: 0;
    color: var(--color-black);
    height: 300px;
    width: 300px;
}

.photo-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    clip-path: polygon(12.5% 12.5%, 65% 12.5%, 90% 37.5%, 90% 87.5%, 37.5% 87.5%, 12.5% 62.5%);
    overflow: hidden;
}

.profile-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% -150%;
}

.logo .logo-svg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    z-index: 2;
}

.logo .logo-text {
    position: absolute;
    top: 58%;
    left: 16%;
    cursor: pointer;
    font-family: var(--font-accent);
    font-size: 55px;
    letter-spacing: 0px;
    font-weight: 400;
    line-height: 58.33px;
}

/* SOCIAL LINKS */
.social {
    padding-left: 0;
    margin-bottom: var(--spacing-md);
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.social:hover {
    color: var(--color-text);
}

.social:before {
    content: "";
    position: relative;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-size: cover !important;
    margin-right: 8px;
}

.social.twitter:before {
    background: url('https://cdn3.iconfinder.com/data/icons/social-media-2026/60/Socialmedia_icons_Twitter-07-128.png') center no-repeat;
}

.social.pinterest:before {
    background: url('https://cdn3.iconfinder.com/data/icons/social-media-2026/60/Socialmedia_icons_Pinterest-23-128.png') center no-repeat;
}

.social.linked-in:before {
    background: url('https://cdn3.iconfinder.com/data/icons/social-media-2026/60/Socialmedia_icons_LinkedIn-128.png') center no-repeat;
}

.social.github:before {
    background: url('https://cdn-icons-png.flaticon.com/512/25/25231.png') center no-repeat;
}

.social.whatsapp:before {
    display: none;
}

.social.email:before {
    display: none;
}

/* SIDE HEADER */
.side-header {
    font-family: var(--font-primary);
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 600;
    line-height: 28px;
    margin: var(--spacing-xl) auto var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--color-border);
}

.list-thing {
    margin-bottom: var(--spacing-sm);
}

/* TECNOLOGIAS */
.technologies-container {
    display: flex;
    gap: 4px;
    margin-top: 0;
    justify-content: space-between;
}

.technologies-column {
    flex: 1;
    min-width: 0;
}

/* BOTÃO DE DOWNLOAD DISCRETO */
.download-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0.6;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.download-button:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.download-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.download-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.download-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.download-link:hover svg {
    transform: translateY(-1px);
}