:root {
    --primary-color: #8B7AB8;
    --secondary-color: #C4A8E3;
    --accent-color: #E8D5F2;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-color: #F8F4FC;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
    --whatsapp: #25D366;
    --instagram: #E4405F;
    --linkedin: #0077B5;
    --website: #8B7AB8;
    --email: #EA4335;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 680px;
    width: 100%;
    background: var(--white);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.8s ease;
}

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

/* Seção de Perfil */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.1);
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.profile-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.profile-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.link-button:active {
    transform: translateY(-2px);
}

.link-button .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Cores específicas para cada botão */
.link-button.whatsapp {
    border-color: var(--whatsapp);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.link-button.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.link-button.instagram {
    border-color: var(--instagram);
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
    color: var(--white);
}

.link-button.instagram:hover {
    background: linear-gradient(135deg, #8134AF 0%, #DD2A7B 50%, #F58529 100%);
}

.link-button.linkedin {
    border-color: var(--linkedin);
    background: var(--linkedin);
    color: var(--white);
}

.link-button.linkedin:hover {
    background: #005885;
}

.link-button.website {
    border-color: var(--website);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.link-button.website:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.link-button.email {
    border-color: var(--email);
    background: var(--email);
    color: var(--white);
}

.link-button.email:hover {
    background: #c53929;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #F0F0F0;
}

.footer p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-note {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-location {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

/* Skip to content link (Acessibilidade) */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.skip-to-content:focus {
    left: 10px;
    top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-title {
        font-size: 14px;
    }

    .profile-description {
        font-size: 14px;
    }

    .link-button {
        padding: 16px 20px;
        font-size: 14px;
    }

    .link-button .icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 30px 20px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 22px;
    }

    .link-button span {
        font-size: 13px;
    }
}

/* Animações suaves para os links */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.link-button:nth-child(1) { animation: slideIn 0.4s ease 0.1s both; }
.link-button:nth-child(2) { animation: slideIn 0.4s ease 0.2s both; }
.link-button:nth-child(3) { animation: slideIn 0.4s ease 0.3s both; }
.link-button:nth-child(4) { animation: slideIn 0.4s ease 0.4s both; }
.link-button:nth-child(5) { animation: slideIn 0.4s ease 0.5s both; }

/* Acessibilidade */
.link-button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    body {
        background: white;
    }
    
    .container {
        box-shadow: none;
        max-width: 100%;
    }
}
