﻿/* @author GustavoChaconDeveloper - github.com/GustavoChaconDeveloper */
/* ===== CHALLENGES PAGE STYLES ===== */

/* Reduce top spacing for challenges page */
.challenges-page {
    padding: 40px 40px 100px 40px !important;
    align-items: flex-start !important;
}

/* Quick-start Guide */
.quick-start-guide {
    background: rgba(10, 31, 94, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.quick-start-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.quick-start-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.btn-continue-guide {
    padding: 10px 30px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue-guide:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.quick-start-steps {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

.quick-start-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(to right, 
        #4ade80 0%, 
        #4ade80 33%, 
        rgba(102, 126, 234, 0.3) 33%, 
        rgba(102, 126, 234, 0.3) 66%, 
        rgba(255, 255, 255, 0.2) 66%);
    z-index: 0;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

.step-item.completed .step-icon {
    background: #4ade80;
    border-color: #4ade80;
    color: #ffffff;
}

.step-item.completed .step-icon .fa-check {
    display: block;
}

.step-item.completed .step-number {
    display: none;
}

.step-item.active .step-icon {
    background: #538CFF;
    border-color: #538CFF;
    color: #FFFFFF;
    box-shadow: 0px 0px 24px rgba(36, 160, 237, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
}

.step-item.active .step-icon i {
    display: none;
}

.step-item.active .step-number {
    display: block;
}

.step-number {
    display: block;
}

.step-icon i {
    display: none;
}

.step-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.step-item.completed .step-label,
.step-item.active .step-label {
    color: #ffffff;
}

/* Challenge Section */
.challenge-section-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
    background: #003399;
}

.challenge-card-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.challenge-card-title {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.challenge-card-description {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    line-height: 1.5;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-value {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 72px;
    line-height: 1;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.countdown-label {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
}

.countdown-separator {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 72px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0 5px;
    padding-bottom: 26px;
}

.btn-register-challenge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 24px;
    gap: 6px;
    width: 224px;
    height: 56px;
    background: #FFFFFF;
    border: none;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #152a85;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.btn-register-challenge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.challenge-banner-image {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tournament-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.challenge-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.challenge-card-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.btn-register-challenge {
    padding: 14px 40px;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    color: #152a85;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-register-challenge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Leaderboard Preview */
.leaderboard-preview {
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-tabs {
    display: flex;
    gap: 10px;
}

.leaderboard-tab {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leaderboard-tab.active {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    color: #ffd700;
}

.leaderboard-tab:hover {
    background: rgba(255, 255, 255, 0.05);
}

.leaderboard-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-tier {
    padding: 6px 15px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: #ffd700;
    font-size: 13px;
    font-weight: 600;
}

.points {
    color: #4ade80;
    font-size: 18px;
    font-weight: 700;
}

/* Leaderboard Table */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead {
    background: rgba(255, 255, 255, 0.03);
}

.leaderboard-table th {
    padding: 15px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leaderboard-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.leaderboard-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.leaderboard-table td {
    padding: 18px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.profile-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
}

.level-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.level-expert {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #a78bfa;
}

.level-advanced {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.level-intermediate {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.level-beginner {
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #fbbf24;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.status-inactive {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

/* Leaderboard Footer */
.leaderboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 18px;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.user-level {
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #ffd700;
    font-size: 13px;
    font-weight: 600;
}

.btn-register-leaderboard {
    padding: 10px 30px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-register-leaderboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

/* My Account Section */
.my-account-section {
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.account-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.membership-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: rgba(10, 31, 94, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.membership-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.membership-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.membership-type {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.membership-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-upgrade {
    padding: 10px 28px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-upgrade:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Account Tabs */
.account-tabs {
    display: flex;
    align-items: center;
    padding: 4px;
    gap: 4px;
    margin-bottom: 30px;
    background: rgba(0, 17, 52, 0.6);
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    width: fit-content;
}

.account-tab {
    padding: 10px 24px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.account-tab.active {
    background: #0F285B;
    color: #ffffff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}

.account-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.account-tab.active:hover {
    background: rgba(102, 126, 234, 0.6);
}

/* Botão Upgrade Plan no Header */
.btn-upgrade-plan {
    padding: 10px 28px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-upgrade-plan:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Committee Review Section */
.committee-review-section {
    background: rgba(0, 17, 52, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 30px;
}

.committee-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.committee-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.committee-description {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-apply-committee {
    padding: 12px 32px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #0F285B;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-apply-committee:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Challenge History */
.challenge-history {
    margin-top: 30px;
}

.history-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Settings Tab Styles */
.settings-section {
    background: rgba(0, 17, 52, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
}

.settings-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
}

/* Personal Information */
.personal-info-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.profile-avatar-section {
    flex-shrink: 0;
}

.avatar-frame {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    width: 132px;
    height: 132px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    position: relative;
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.avatar-background {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(82.04deg, #DB8833 2.54%, #FFE784 26.25%, #FFE784 69.24%, #DB8833 105.31%, #DB8833 105.31%);
    z-index: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

.edit-avatar-btn {
    position: absolute;
    width: 32px;
    height: 32px;
    left: 0px;
    bottom: 68px;
    border-radius: 50px;
    background: #FFFFFF;
    border: none;
    color: #003399;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: -4px 0px 12px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.edit-avatar-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.edit-avatar-btn i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-badge {
    position: absolute;
    width: 32px;
    height: 32px;
    right: 0px;
    bottom: 0px;
    background: #192950;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    z-index: 3;
}

.badge-icon {
    width: 22.63px;
    height: 24.06px;
    object-fit: contain;
}

.info-fields-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(15, 40, 91, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 10px;
}

.info-field.full-width {
    grid-column: 1 / -1;
}

.field-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 4px;
    height: 24px;
}

.field-label {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    margin: 0;
}

.field-value {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.edit-field-btn {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.edit-field-btn:hover {
    color: #667eea;
    transform: scale(1.1);
}

.edit-field-btn i {
    font-size: 16px;
}

.btn-contact-edit {
    padding: 4px 12px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-contact-edit:hover {
    color: #667eea;
}

/* Subscription Section */
.subscription-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.subscription-info-box {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
}

.subscription-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.subscription-details {
    flex: 1;
}

.subscription-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.subscription-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 4px 0;
}

.subscription-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.subscription-actions {
    display: flex;
    gap: 12px;
}

.btn-cancel-subscription {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.6);
    border-radius: 8px;
    color: rgba(239, 68, 68, 0.9);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cancel-subscription:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.8);
}

.btn-upgrade-subscription {
    padding: 10px 24px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #0F285B;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-upgrade-subscription:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Payment Methods */
.payment-methods-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.payment-card-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.card-brand {
    font-size: 32px;
    color: #1a1f71;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-number {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.card-expiry {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.payment-methods-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-method-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-change-payment {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-change-payment:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Delete Account Button */
.btn-delete-account {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: none;
    color: rgba(239, 68, 68, 0.9);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-delete-account:hover {
    color: rgba(239, 68, 68, 1);
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.empty-icon i {
    font-size: 36px;
    color: rgba(102, 126, 234, 0.6);
}

.empty-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.empty-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 30px 0;
    max-width: 450px;
}

.btn-take-me-there {
    padding: 12px 36px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-take-me-there:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.history-item:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.history-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    min-width: 120px;
}

.history-description {
    flex: 1;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 20px;
}

.btn-go {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-go:hover {
    background: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.page-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: #ffffff;
}

.page-dots {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    padding: 0 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .challenge-section-cards {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-table th,
    .leaderboard-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .quick-start-guide {
        padding: 20px;
    }
    
    .quick-start-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .quick-start-steps {
        flex-direction: column;
        gap: 25px;
    }
    
    .quick-start-steps::before {
        display: none;
    }
    
    .step-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .challenge-card-text {
        padding: 30px 25px;
    }
    
    .challenge-card-title {
        font-size: 24px;
    }
    
    .leaderboard-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .leaderboard-table {
        display: block;
        overflow-x: auto;
    }
    
    .leaderboard-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .account-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .membership-info {
        width: 100%;
        justify-content: space-between;
    }
    
    .account-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Settings responsivo */
    .personal-info-content {
        flex-direction: column;
        align-items: center;
    }
    
    .avatar-frame {
        width: 160px;
        height: 160px;
    }
    
    .profile-avatar-large {
        width: 120px;
        height: 120px;
    }
    
    .info-fields-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .subscription-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .subscription-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cancel-subscription,
    .btn-upgrade-subscription {
        width: 100%;
    }
    
    .payment-methods-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .payment-methods-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .history-description {
        padding: 0;
    }
    
    .btn-go {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .my-account-section {
        padding: 15px;
    }
    
    .account-title {
        font-size: 20px;
    }
    
    .pagination {
        gap: 5px;
    }
    
    .page-btn {
        width: 35px;
        height: 35px;
    }
    
    /* Settings mobile */
    .settings-section {
        padding: 15px 20px;
    }
    
    .settings-title {
        font-size: 18px;
    }
    
    .avatar-frame {
        width: 140px;
        height: 140px;
        padding: 12px;
    }
    
    .profile-avatar-large {
        width: 100px;
        height: 100px;
    }
    
    .edit-avatar-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .avatar-badge {
        width: 48px;
        height: 48px;
    }
    
    .field-label {
        font-size: 13px;
    }
    
    .field-value {
        font-size: 13px;
    }
    
    .btn-contact-edit {
        font-size: 12px;
    }
    
    .subscription-info-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .card-brand {
        font-size: 24px;
    }
}

/* ===== AVATAR MODAL STYLES ===== */
/* Overlay com fundo escuro */
.avatar-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none; /* Oculto por padrão */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Container do modal com efeito VIDRO (glassmorphism) */
.avatar-modal .modal-content {
    width: 642px;
    max-width: 90%;
    padding: 32px 36px;
    border-radius: 8px;
    
    /* Cor original + transparência */
    background: rgba(0, 17, 52, 0.55);
    
    /* Efeito vidro */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    /* Profundidade e brilho */
    box-shadow:
        0 0 40px rgba(0, 51, 153, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    
    /* Acabamento */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.avatar-modal-content {
    padding: 0;
}

.avatar-modal .modal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
}

.avatar-modal .modal-logo {
    height: 20px;
    width: auto;
}

.avatar-modal .modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.avatar-modal .modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.avatar-modal .modal-header {
    text-align: center;
    padding: 0 0 20px 0;
}

.avatar-modal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.avatar-modal .modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 0;
    background: rgba(10, 31, 94, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 -36px;
    padding: 30px 36px;
}

.avatar-option {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(10, 31, 94, 0.8), rgba(25, 52, 131, 0.6));
}

.avatar-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-option:hover {
    transform: scale(1.05);
    border-color: rgba(102, 126, 234, 0.5);
}

.avatar-option.selected {
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.avatar-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #667eea;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    border: 2px solid #0a1f5e;
}

.avatar-modal-actions {
    display: flex;
    gap: 15px;
    padding: 30px 0 0 0;
    justify-content: center;
}

.btn-close-modal {
    padding: 14px 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-save-avatar {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 50px;
    gap: 4px;
    
    /* Grey/White */
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    
    /* Text */
    color: #001134;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    
    transition: all 0.3s ease;
}

.btn-save-avatar:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Avatar Modal Responsive */
@media (max-width: 768px) {
    .avatar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .avatar-modal .modal-header {
        padding: 0 20px 15px 20px;
    }
    
    .avatar-modal-actions {
        padding: 20px;
        flex-direction: column;
    }
    
    .btn-close-modal,
    .btn-save-avatar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .avatar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .avatar-modal .modal-title {
        font-size: 22px;
    }
}

/* ===== NICKNAME MODAL STYLES ===== */
/* Overlay com fundo escuro */
.nickname-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none; /* Oculto por padrão */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Container do modal com efeito VIDRO (glassmorphism) */
.nickname-modal .modal-content {
    width: 480px;
    max-width: 90%;
    padding: 32px 36px;
    border-radius: 8px;
    
    /* Cor original + transparência */
    background: rgba(0, 17, 52, 0.55);
    
    /* Efeito vidro */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    /* Profundidade e brilho */
    box-shadow:
        0 0 40px rgba(0, 51, 153, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    
    /* Acabamento */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nickname-modal-content {
    padding: 0;
}

.nickname-modal .modal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
}

.nickname-modal .modal-logo {
    height: 20px;
    width: auto;
}

.nickname-modal .modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nickname-modal .modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.nickname-modal .modal-header {
    text-align: center;
    padding: 0 0 30px 0;
}

.nickname-modal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.nickname-modal .modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.nickname-input-container {
    margin-bottom: 30px;
}

.nickname-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.nickname-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.nickname-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(10, 31, 94, 0.6);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.nickname-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-save-nickname {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 50px;
    gap: 4px;
    
    /* Grey/White */
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    
    /* Text */
    color: #001134;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    
    transition: all 0.3s ease;
}

.btn-save-nickname:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Nickname Modal Responsive */
@media (max-width: 768px) {
    .nickname-modal .modal-content {
        width: 90%;
        padding: 25px 20px;
    }
    
    .nickname-modal .modal-header {
        padding: 0 0 20px 0;
    }
    
    .nickname-modal-actions {
        flex-direction: column;
    }
    
    .btn-close-modal,
    .btn-save-nickname {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nickname-modal .modal-title {
        font-size: 22px;
    }
    
    .nickname-input {
        font-size: 14px;
        padding: 14px 16px;
    }
}

/* ===== PHONE MODAL STYLES ===== */
/* Overlay com fundo escuro */
.phone-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none; /* Oculto por padrão */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Container do modal com efeito VIDRO (glassmorphism) */
.phone-modal .modal-content {
    width: 530px;
    max-width: 90%;
    padding: 32px 36px;
    border-radius: 8px;
    
    /* Cor original + transparência */
    background: rgba(0, 17, 52, 0.55);
    
    /* Efeito vidro */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    /* Profundidade e brilho */
    box-shadow:
        0 0 40px rgba(0, 51, 153, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    
    /* Acabamento */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-modal-content {
    padding: 0;
}

.phone-modal .modal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0;
}

.phone-modal .modal-logo {
    height: 20px;
    width: auto;
}

.phone-modal .modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.phone-modal .modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.phone-progress-bar {
    position: relative;
    margin-bottom: 25px;
}

.progress-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: #ffffff;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.progress-line.full::after {
    width: 100%;
}

.progress-step {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
}

.phone-modal .modal-header {
    text-align: center;
    padding: 0 0 30px 0;
}

.phone-modal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.modal-subtitle-phone {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.phone-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.phone-country-select {
    width: 100px;
    padding: 16px 12px;
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-country-select:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(10, 31, 94, 0.6);
}

.phone-country-select option {
    background: #001134;
    color: #ffffff;
}

.phone-input-modal {
    flex: 1;
    padding: 16px 20px;
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.phone-input-modal::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.phone-input-modal:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(10, 31, 94, 0.6);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.phone-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-continue-phone {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 50px;
    gap: 4px;
    
    /* Grey/White */
    background: #FFFFFF;
    border: none;
    border-radius: 12px;
    
    /* Text */
    color: #001134;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
    
    transition: all 0.3s ease;
}

.btn-continue-phone:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Phone Step Container */
.phone-step {
    animation: fadeIn 0.3s ease;
}

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

/* Verification Phone Display */
.verification-phone-display {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 8px 0 16px 0;
}

.verification-instruction {
    margin-top: 12px !important;
}

/* Verification Code Input */
.verification-code-container {
    margin-bottom: 30px;
}

.verification-code-input {
    width: 100%;
    padding: 20px;
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.verification-code-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 12px;
}

.verification-code-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(10, 31, 94, 0.6);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Verification Actions */
.verification-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn-change-phone {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-change-phone:hover {
    color: #ffffff;
}

.btn-resend-code {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.btn-resend-code:not(:disabled) {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    text-decoration: underline;
}

.btn-resend-code:not(:disabled):hover {
    color: #ffffff;
}

/* Phone Modal Responsive */
@media (max-width: 768px) {
    .phone-modal .modal-content {
        width: 90%;
        padding: 25px 20px;
    }
    
    .phone-modal .modal-header {
        padding: 0 0 20px 0;
    }
    
    .phone-modal-actions {
        flex-direction: column;
    }
    
    .btn-close-modal,
    .btn-continue-phone {
        width: 100%;
    }
    
    .phone-input-group {
        flex-direction: column;
    }
    
    .phone-country-select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .phone-modal .modal-title {
        font-size: 22px;
    }
    
    .phone-input-modal,
    .phone-country-select {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .verification-code-input {
        font-size: 24px;
        letter-spacing: 6px;
        padding: 16px;
    }
    
    .modal-subtitle-phone {
        font-size: 13px;
    }
}

/* ===== CONTACT MODAL STYLES ===== */
/* Overlay com fundo escuro */
.contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none; /* Oculto por padrão */
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Container do modal com efeito VIDRO (glassmorphism) */
.contact-modal .modal-content {
    width: 480px;
    max-width: 90%;
    padding: 32px 36px;
    border-radius: 8px;
    
    /* Cor original + transparência */
    background: rgba(0, 17, 52, 0.55);
    
    /* Efeito vidro */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    
    /* Profundidade e brilho */
    box-shadow:
        0 0 40px rgba(0, 51, 153, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    
    /* Acabamento */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-modal-content {
    padding: 0;
}

.contact-modal .modal-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
}

.contact-modal .modal-logo {
    height: 20px;
    width: auto;
}

.contact-modal .modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.contact-modal .modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.contact-modal .modal-header {
    text-align: center;
    padding: 0 0 30px 0;
}

.contact-modal .modal-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-modal .modal-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.modal-subtitle-contact {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.message-input-wrapper {
    position: relative;
}

.contact-message-input {
    width: 100%;
    padding: 16px 20px;
    padding-bottom: 45px;
    background: rgba(10, 31, 94, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-message-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-message-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(10, 31, 94, 0.6);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.message-actions {
    position: absolute;
    bottom: 12px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-send-message {
    width: 32px;
    height: 32px;
    background: rgba(102, 126, 234, 0.8);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-send-message:hover {
    background: rgba(102, 126, 234, 1);
    transform: translateY(-2px);
}

.char-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.contact-divider {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    position: relative;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(10, 31, 94, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-btn:hover {
    background: rgba(10, 31, 94, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.contact-social-btn.discord:hover {
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.contact-social-btn.telegram:hover {
    box-shadow: 0 4px 12px rgba(34, 139, 230, 0.4);
}

.contact-social-btn.whatsapp:hover {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Contact Modal Responsive */
@media (max-width: 768px) {
    .contact-modal .modal-content {
        width: 90%;
        padding: 25px 20px;
    }
    
    .contact-modal .modal-header {
        padding: 0 0 20px 0;
    }
    
    .contact-social-icons {
        gap: 15px;
    }
    
    .contact-social-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .contact-modal .modal-title {
        font-size: 22px;
    }
    
    .contact-message-input {
        font-size: 14px;
        padding: 14px 16px;
        padding-bottom: 45px;
        min-height: 100px;
    }
    
    .modal-subtitle-contact {
        font-size: 13px;
    }
}
