/* Base Styles */
:root {
    --primary-color: #F29921;
    --primary-light: #FFB151;
    --primary-gold: #FFD700;
    --text-dark: #333333;
    --text-gray: #777;
    --text-light-gray: #999;
    --background-light: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-full: 9999px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 16px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.logo p {
    font-size: 14px;
    color: var(--text-light-gray);
}

/* Profile Card Styles */
.profile-card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    position: relative;
}

.header-gradient {
    height: 128px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
}

.profile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 24px;
    margin-top: -64px;
}

.profile-image-container {
    position: relative;
    margin-bottom: 16px;
}

.profile-image {
    width: 96px;
    height: 96px;
    border-radius: var(--border-radius-full);
    border: 4px solid var(--white);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.tier-badge {
    position: absolute;
    bottom: -4px;
    right: -8px;
    background-color: var(--primary-gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
}

.tier-badge i {
    margin-right: 4px;
    font-size: 11px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.profile-location {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.relation-tag {
    display: flex;
    align-items: center;
    background-color: var(--background-light);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    margin-bottom: 16px;
}

.relation-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
    margin-right: 4px;
}

.relation-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.points-container {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    width: 100%;
}

.points-info {
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: 100%;
}

.points-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 4px;
}

.points-label {
    font-size: 12px;
    color: var(--text-gray);
}

/* Relationship Tier Styles */
.relationship-tier {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.relationship-tier h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.tier-info {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.tier-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.tier-icon i {
    color: white;
    font-size: 20px;
}

.tier-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.tier-details p {
    font-size: 14px;
    color: var(--text-gray);
}

.tier-benefits {
    list-style: none;
    margin-bottom: 20px;
}

.tier-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.tier-benefits li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
}

.next-tier {
    margin-bottom: 24px;
}

.next-tier p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.progress-bar {
    height: 8px;
    background-color: #E0E0E0;
    border-radius: var(--border-radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 60%;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-full);
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    flex: 1;
}

.btn-primary:hover {
    background-color: #e08716;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-dark);
    border: 1px solid #E0E0E0;
    padding: 12px 24px;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

/* Social Links Styles */
.social-links {
    margin-bottom: 32px;
}

.social-links h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    padding-left: 4px;
}

.social-link {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.whatsapp {
    background-color: #25D366;
}

.twitter {
    background-color: #1DA1F2;
}

.linkedin {
    background-color: #0077B5;
}

.social-info {
    margin-left: 16px;
    flex: 1;
}

.social-info h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.social-info p {
    font-size: 14px;
    color: var(--text-gray);
}

.social-arrow {
    color: var(--primary-color);
    font-size: 14px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 16px 0;
    margin-top: 32px;
}

footer p {
    font-size: 12px;
    color: var(--text-light-gray);
}

/* Responsive Styles */
@media screen and (max-width: 480px) {
    .container {
        padding: 16px 12px;
    }
    
    .logo h1 {
        font-size: 28px;
    }
    
    .profile-image {
        width: 88px;
        height: 88px;
    }
    
    .profile-name {
        font-size: 22px;
    }
    
    .social-link {
        padding: 14px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .social-info h4 {
        font-size: 15px;
    }
    
    .social-info p {
        font-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    .container {
        padding: 12px 8px;
    }
    
    .header-gradient {
        height: 110px;
    }
    
    .profile-content {
        padding: 0 16px 20px;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .tier-badge {
        font-size: 10px;
        padding: 3px 7px;
    }
    
    .points-value {
        font-size: 18px;
    }
    
    .social-link {
        padding: 12px 10px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .social-info {
        margin-left: 10px;
    }
    
    .social-info h4 {
        font-size: 14px;
    }
    
    .social-info p {
        font-size: 12px;
    }
}
