:root {
    --gold: #D4AF37;
    --dark-gold: #B78D3F;
    --light-gold: #FFDF91;
    --dark-blue: #1E3F5F;
    --white: #FFFFFF;
    --cream: #F5F0E6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: url('img/fundo.png');
    background-size: cover;
    width: 100%;
    height: 100%;
    color: #333;
    padding: 0px;
    line-height: 1.6;
    overflow: scroll;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--dark-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.profile-header p {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: bold;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.links-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.links-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    box-shadow: none;
    border: none;
    width: auto;
    height: auto;
    padding: 10px;
    color: var(--dark-blue);
    transition: all 0.3s ease;
}

.links-social a:hover {
    transform: translateY(-3px);
    color: var(--gold);
}

.link-button {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--dark-blue);
}

.link-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link-button i {
    font-size: 24px;
    color: var(--dark-blue);
    min-width: 50px;
    text-align: center;
}

.link-button span {
    font-size: 90%;
    flex-grow: 1;
    text-align: left;
}

#highlight {
    background-color: rgb(56, 97, 192);
    color: white;
}

#highlight .link-icon img {
    border: 2px solid white;
}

.footer {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 14px;
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .link-button {
        height: auto;
        min-height: 70px;
        padding: 10px 15px;
        gap: 10px;
    }
    
    .link-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .link-button i {
        font-size: 20px;
        min-width: 40px;
    }
    
    .link-button span {
        font-size: 80%;
    }
}