* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 50%, #e3f2fd 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 450px;
}

.card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

/* Header com padrão de ondas */
.header-pattern {
    background: linear-gradient(135deg, #90caf9 0%, #ffffff 50%, #90caf9 100%);
    background-size: 200% 200%;
    animation: wave 15s ease infinite;
    height: 220px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 40px;
}

@keyframes wave {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #e0e0e0;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(60px);
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Informações do perfil */
.profile-info {
    padding: 100px 30px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.name {
    font-size: 28px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verified-badge {
    color: #1976d2;
    font-size: 24px;
}

.bio {
    font-size: 15px;
    color: #757575;
    line-height: 1.8;
    margin-bottom: 24px;
    padding: 0 10px;
}

.bio p {
    margin: 6px 0;
    line-height: 1.6;
}

.bio p:first-child {
    font-weight: 600;
    color: #424242;
    margin-bottom: 10px;
}

/* Ícones de redes sociais */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 18px;
    color: #ffffff;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.tiktok {
    background: #000000;
}

/* Botões de ação */
.action-buttons {
    padding: 0 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #212121;
}

.action-btn i:first-child {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: #757575;
}

.action-btn span {
    flex: 1;
    text-align: left;
}

.action-btn i:last-child {
    font-size: 14px;
    color: #757575;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Botão destacado */
.action-btn.featured {
    background: #1976d2;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.action-btn.featured i:first-child,
.action-btn.featured i:last-child {
    color: #ffffff;
}

.action-btn.featured:hover {
    background: #1565c0;
    box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);
}

/* Responsividade */
@media (max-width: 480px) {
    .card {
        border-radius: 20px;
    }
    
    .header-pattern {
        height: 200px;
        padding-bottom: 35px;
    }
    
    .profile-picture {
        width: 170px;
        height: 170px;
        transform: translateY(50px);
    }
    
    .profile-info {
        padding: 85px 20px 24px;
    }
    
    .name {
        font-size: 24px;
    }
    
    .verified-badge {
        font-size: 20px;
    }
    
    .bio {
        font-size: 14px;
    }
    
    .action-buttons {
        padding: 0 20px 28px;
    }
    
    .action-btn {
        padding: 14px 18px;
        font-size: 14px;
    }
}

