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

:root {
    --primary-color: #d4af37;
    --secondary-color: #f4d03f;
    --text-color: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #c5a028;
    --accent-gold: #d4af37;
    --accent-gradient: linear-gradient(135deg, #b8860b 0%, #f4d99d 50%, #c19a2e 100%);
    --success: #10b981;
    --error: #ef4444;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

html, body {
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    color: var(--text-color);
    width: 100%;
    max-width: 100vw;
    touch-action: pan-x pan-y;
    -ms-touch-action: pan-x pan-y;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 6px;
    border: 2px solid rgba(10, 10, 10, 0.8);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Firefox Scrollbar */
* {
    scrollbar-color: #d4af37 rgba(10, 10, 10, 0.8);
    scrollbar-width: thin;
}

body {
    margin: 0;
    height: auto;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Header */
/* ============================================
   HEADER UNIFICADO - SIMPLES E MODERNO
   ============================================ */

.platform-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    height: 70px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    transition: left 0.3s ease, width 0.3s ease;
}

.header-container {
    max-width: 1400px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
    min-width: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    flex-wrap: nowrap;
}

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.header-logo .admin-badge,
.header-logo .vendedor-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin-left: 8px;
}

.header-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.header-back:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-2px);
}

.header-back svg {
    width: 20px;
    height: 20px;
}

.header-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.header-link svg {
    width: 16px;
    height: 16px;
}

.btn-notification {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-notification:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-notification svg {
    width: 20px;
    height: 20px;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--error);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid var(--bg-dark);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-gradient);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 1 auto;
    max-width: 250px;
    min-width: 0;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    min-width: 40px;
    text-align: right;
    white-space: nowrap;
}

/* Responsividade Mobile */
@media screen and (max-width: 768px) {
    .platform-header {
        height: 60px;
    }

    .header-container {
        padding: 0 16px;
        gap: 12px;
    }

    .header-left {
        gap: 12px;
        flex: 1;
        min-width: 0;
    }

    .header-logo img {
        height: 32px;
        max-width: 150px;
    }

    .header-logo .admin-badge,
    .header-logo .vendedor-badge {
        font-size: 9px;
        padding: 3px 8px;
        margin-left: 6px;
    }

    .header-back {
        width: 36px;
        height: 36px;
    }

    .header-back svg {
        width: 18px;
        height: 18px;
    }

    .header-actions {
        gap: 8px;
        flex-shrink: 0;
    }

    .header-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .header-link span {
        display: none;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 13px;
    }

    .btn-primary span,
    .btn-secondary span {
        display: none;
    }

    .header-progress {
        max-width: 120px;
        gap: 8px;
    }

    .progress-bar {
        min-width: 60px;
    }

    .progress-text {
        font-size: 11px;
        min-width: 35px;
    }
}

@media screen and (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }

    .header-logo img {
        height: 28px;
        max-width: 120px;
    }

    .header-progress {
        max-width: 100px;
    }

    .progress-text {
        display: none;
    }
}

/* Main Content */
.platform-main {
    margin-top: 70px;
    padding-bottom: 80px;
}

/* Hero Banner */
.hero-banner {
    padding: 60px 24px 0;
    background: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    letter-spacing: 0.3px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

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

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Banners Section */
.banners-section {
    padding: 40px 24px 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 768px) {
    .banners-section {
        padding-top: 20px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Banners Slider */
.banners-slider {
    position: relative;
    width: 100%;
}

.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 15px 0;
}

.slider-track {
    display: flex;
    width: 100%;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden; /* Prevent vertical scroll */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.slider-track .banner-card {
    flex: 0 0 90%;
    min-width: 90%;
    scroll-snap-align: center;
    margin: 0 5%;
    transition: transform 0.5s;
    width: 100%;
    box-sizing: border-box;
    padding: 32px;
    display: block;
    flex-shrink: 0;
    position: relative;
}

.banner-card.banner-image-card {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-card.banner-image-card::before {
    display: none;
}

.banner-card.banner-image-card img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .slider-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .slider-track .banner-card {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .banner-card.banner-image-card img {
        max-height: 520px;
        width: auto;
        max-width: 100%;
    }
}

.slider-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    letter-spacing: 0.02em;
}

.slider-hint svg {
    width: 18px;
    height: 18px;
}

.slider-hint span {
    font-weight: 500;
}

@media (min-width: 1024px) {
    .slider-controls {
        display: flex;
    }
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-btn-overlay {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.slider-btn-overlay:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.slider-track {
    cursor: grab;
}

.slider-track.active {
    cursor: grabbing;
}

/* Esconder botões de navegação no mobile */
@media (max-width: 1024px) {
    .slider-btn-overlay {
        display: none;
    }
}

.slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    outline: none;
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .slider-hint {
        display: flex;
    }
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.banner-card {
    padding: 32px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.7), rgba(36, 36, 36, 0.7));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.banner-card.banner-featured {
    grid-column: span 2;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.banner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--error);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.banner-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.banner-icon svg {
    width: 30px;
    height: 30px;
    color: #000000;
}

.banner-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.banner-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.banner-description strong {
    color: var(--gold);
    font-weight: 700;
}

.banner-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.banner-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    margin-top: 24px;
}

.cta-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

.banner-cta svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

/* CTA Banner */
.cta-banner {
    padding: 40px 24px 30px;
    background: transparent;
    text-align: center;
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--accent-gradient);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    filter: brightness(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-guarantee svg {
    width: 18px;
    height: 18px;
    color: var(--success);
}

@media (max-width: 768px) {
    .cta-guarantee {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        text-align: center;
        justify-content: center;
    }
    
    .cta-guarantee svg {
        order: -1;
        margin-bottom: 0;
        margin-right: 6px;
    }
    
    .cta-guarantee span {
        word-break: break-word;
        max-width: 100%;
    }
}

/* Footer */
.platform-footer {
    padding: 40px 24px 30px;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    margin-top: 20px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    transition: margin-left 0.3s ease, width 0.3s ease;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    height: 40px;
    margin-bottom: 12px;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Videos Page Styles */
/* Videos Page Styles */
.videos-main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    padding: 40px 24px 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.video-section {
    margin-bottom: 60px;
}

.video-container {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.placeholder-content svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: var(--gold);
}

.placeholder-content h3 {
    font-size: 18px;
    font-weight: 600;
}

.video-placeholder-static .placeholder-content img {
    max-width: 70%;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    object-fit: contain;
}

.video-placeholder-static .placeholder-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 8px;
}

.video-info {
    margin-bottom: 24px;
}

.video-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
}

.video-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    max-width: 900px;
}

.video-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.video-number {
    font-weight: 600;
    color: var(--gold);
}

.video-controls {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    max-width: 600px;
}

.btn-control {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    min-width: 160px;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-control:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-control:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-control svg {
    width: 20px;
    height: 20px;
}

/* Video List */
.video-list-section {
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.list-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: white;
}

.video-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.video-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-item:hover {
    border-color: var(--gold);
    transform: translateX(8px);
    background: rgba(26, 26, 26, 0.8);
}

.video-item.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.video-item.completed {
    border-color: var(--success);
}

.video-item.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.video-item-number {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.video-item.completed .video-item-number {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.video-item.locked .video-item-number {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.4);
}

.video-item-info {
    flex: 1;
}

.video-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.video-item-duration {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.video-item-status {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.video-item-status svg {
    width: 100%;
    height: 100%;
}

.video-item.completed .video-item-status {
    color: var(--success);
}

.video-item.locked .video-item-status {
    color: rgba(255, 255, 255, 0.3);
}

/* Modals */
.completion-modal, .final-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: flex-start; /* Align to top to allow scrolling */
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.completion-modal.active,
.final-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Prevenir scroll do body quando modal está aberto */
body.modal-open {
    overflow: hidden;
}

.modal-content {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    margin: 24px auto; /* Add margin for spacing */
    position: relative;
    box-sizing: border-box;
}

/* Garantir que o modal fique centralizado */
.completion-modal.active .modal-content,
.final-modal.active .modal-content {
    transform: scale(1);
}

.completion-modal.active .modal-content,
.final-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.celebration-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.celebration-icon svg {
    width: 40px;
    height: 40px;
    color: #000000;
}

.modal-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-body {
    text-align: center;
}

.modal-message {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.modal-promise {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
}

.promise-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    text-transform: uppercase;
}

.promise-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.promise-text strong {
    font-weight: 800;
}

.modal-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
}

.modal-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1 1 200px;
}

.modal-stat:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #000000;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px; /* Tighter spacing */
    align-items: flex-start;
}

.stat-value {
    font-size: 16px; /* Further reduced font size for better fit */
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Prevent text from wrapping */
}

.modal-aggressive {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.aggressive-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aggressive-item:last-child {
    border-bottom: none;
}

.aggressive-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.aggressive-item span {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.aggressive-item strong {
    font-weight: 700;
    color: var(--gold);
}

.progress-motivation {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-weight: 600;
}

.modal-progress {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.progress-bar-modal {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-modal {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
}

.modal-footer {
    margin-top: 32px;
}

.btn-modal-close {
    width: 100%;
    padding: 16px;
    background: var(--accent-gradient);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-modal-close:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Final Modal */
.final-content {
    max-width: 700px;
}

.final-title {
    font-size: clamp(28px, 5vw, 40px);
}

.final-message {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.final-message strong {
    font-weight: 700;
}

.final-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.final-stat {
    text-align: center;
    padding: 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
}

.final-stat-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.final-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta {
    padding: 32px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    margin-top: 32px;
}

.final-cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.final-cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--accent-gradient);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 14px;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-final-cta:hover {
    filter: brightness(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.btn-final-cta svg {
    width: 24px;
    height: 24px;
}

.celebration-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    animation: confetti-fall 3s infinite;
}

.confetti:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.confetti:nth-child(2) {
    left: 30%;
    animation-delay: 0.5s;
}

.confetti:nth-child(3) {
    left: 50%;
    animation-delay: 1s;
}

.confetti:nth-child(4) {
    left: 70%;
    animation-delay: 1.5s;
}

.confetti:nth-child(5) {
    left: 90%;
    animation-delay: 2s;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .banner-card.banner-featured {
        grid-column: span 1;
    }
    
    .final-stats {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 0 16px;
    }
    
    .header-logo img {
        height: 32px;
    }
    
    .btn-primary {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .btn-primary span {
        display: none;
    }
    
    .header-progress {
        max-width: 150px;
    }
    
    .progress-text {
        font-size: 11px;
        min-width: 35px;
    }
    
    .hero-banner {
        padding: 60px 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .banners-section {
        padding: 10px 16px 60px;
    }
    
    .section-header {
        margin-bottom: 24px;
    }
    
    .slider-track .banner-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 24px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .modal-stats {
        grid-template-columns: 1fr;
    }
    
    .modal-stat {
        flex-direction: column;
        text-align: center;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .banner-card {
        padding: 24px;
    }
    
    .banner-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-banner {
        padding: 60px 16px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .videos-main {
        margin-top: 60px;
        padding: 30px 16px 24px;
    }
    
    .video-list {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        padding: 24px;
    }
    
    .video-title {
        font-size: 24px;
    }
    
    .video-controls {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .btn-control {
        min-width: 140px;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .modal-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .modal-stat {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .video-title {
        font-size: 20px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .celebration-icon {
        width: 60px;
        height: 60px;
    }
    
    .celebration-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Strategic Value Section (after slider) */

.strategic-value-proposition-section {
    padding: 100px 24px 120px;
    background: transparent;
    border-top: none;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.strategic-value-container {
    max-width: 1400px;
    margin: 0 auto;
}

.strategic-value-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: stretch;
}

.strategic-value-main,
.strategic-comparison {
    padding: 24px;
}

.strategic-value-main {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(36, 36, 36, 0.8));
}

.strategic-comparison {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(36, 36, 36, 0.8));
}

.strategic-value-main,
.strategic-comparison {
    backdrop-filter: blur(12px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.strategic-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.strategic-icon-wrapper svg {
    width: 35px;
    height: 35px;
    color: #000000;
}

.strategic-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.strategic-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.strategic-description strong {
    color: var(--gold);
    font-weight: 700;
}

.strategic-stats-inline {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding: 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
}

.strategic-stat-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.strategic-stat-number {
    font-size: 28px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategic-stat-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.strategic-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.strategic-highlight-inline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
}

.strategic-highlight-inline svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.strategic-highlight-inline span {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.strategic-highlight-inline strong {
    color: var(--gold);
    font-weight: 700;
}

.strategic-comparison {
    padding: 40px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(36, 36, 36, 0.8));
    backdrop-filter: blur(12px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.comparison-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-icon svg {
    width: 30px;
    height: 30px;
    color: var(--gold);
}

.comparison-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.comparison-intro {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.comparison-intro strong {
    color: var(--gold);
    font-weight: 700;
}

.comparison-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.comparison-item.comparison-total {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 2px solid var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    border-radius: 12px;
}

.comparison-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.comparison-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}

.comparison-item.comparison-total .comparison-label {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.comparison-item.comparison-total .comparison-value {
    font-size: 18px;
}

.comparison-alternative {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 12px;
}

.comparison-alternative svg {
    width: 24px;
    height: 24px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-alternative div {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.comparison-alternative strong {
    color: var(--success);
    font-weight: 700;
}

@media screen and (max-width: 1024px) {
    .strategic-value-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .strategic-stats-inline {
        flex-direction: column;
        gap: 16px;
    }
    
    .strategic-stat-divider {
        width: 100%;
        height: 1px;
    }
}

@media screen and (max-width: 768px) {
    .strategic-value-section {
        padding: 60px 16px;
    }
    
    .strategic-value-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .strategic-value-main,
    .strategic-comparison {
        padding: 24px;
    }
    
    .strategic-title {
        font-size: 24px;
    }
    
    .comparison-title {
        font-size: 20px;
    }
    
    .admin-header-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .admin-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .admin-tabs {
        gap: 4px;
        padding: 0 8px;
    }
    
    .admin-tab {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .admin-tab svg {
        width: 16px;
        height: 16px;
    }
    
    .admin-tab span {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .comparison-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }
    
    .comparison-title {
        text-align: left;
    }
    
    .comparison-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .comparison-value {
        font-size: 16px;
    }
    
    .comparison-item.comparison-total {
        align-items: flex-start;
    }
    
    .comparison-alternative {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal-content {
        padding: 24px 16px;
    }
    
    .modal-body {
        text-align: center;
    }
    
    .modal-message {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 24px;
    }
    
    .modal-promise {
        text-align: center;
        padding: 20px;
    }
    
    .modal-stats {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .modal-stat {
        flex: 1 1 calc(50% - 12px);
        padding: 12px 14px;
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
        display: flex;
        justify-content: center;
    }
    
    .stat-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
    
    .stat-icon-wrapper {
        margin: 0 auto 6px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-text {
        font-size: 12px;
    }
}

/* Admin Tabs */
.admin-tabs-wrapper {
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    background: rgba(26, 26, 26, 0.4);
    border-radius: 16px 16px 0 0;
    padding: 0 8px;
}

.admin-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
}

.admin-tabs::-webkit-scrollbar {
    display: none;
}

.admin-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.admin-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(212, 175, 55, 0.08);
}

.admin-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
}

.admin-tab svg {
    width: 18px;
    height: 18px;
}

.admin-tab-content,
.dashboard-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.admin-tab-content.active,
.dashboard-tab-content.active {
    display: block;
}

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

/* Admin Section Wrapper (deprecated - kept for compatibility) */
.admin-section-wrapper {
    margin-bottom: 60px;
}

.section-divider {
    display: none; /* Hide dividers when using tabs */
}

.divider-label {
    display: none;
}

.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

/* Value Proposition Section (removed - using strategic instead) */
.value-section {
    display: none;
}

.value-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.value-card {
    padding: 40px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.7), rgba(36, 36, 36, 0.7));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card-featured {
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    color: #000000;
}

.value-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.value-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.value-description strong {
    color: var(--gold);
    font-weight: 700;
}

.value-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.value-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.value-stat-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-stat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    margin-top: 24px;
}

.value-highlight svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-highlight span {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.value-highlight strong {
    color: var(--gold);
    font-weight: 700;
}

.value-breakdown {
    margin-top: 24px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--gold);
    font-weight: 700;
}

.breakdown-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.breakdown-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.breakdown-total .breakdown-label {
    color: white;
    font-size: 18px;
}

.breakdown-total .breakdown-value {
    font-size: 20px;
}

.value-alternative {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    margin-top: 24px;
}

.value-alternative svg {
    width: 24px;
    height: 24px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-alternative div {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.value-alternative strong {
    color: var(--success);
    font-weight: 700;
}

/* Admin Badge (removed admin button from header) */
.admin-badge {
    display: inline-block;
    padding: 4px 8px;
    background: var(--accent-gradient);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin Styles */
.admin-main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.admin-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.admin-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.admin-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

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

.btn-admin-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-admin-action:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.btn-admin-action svg {
    width: 18px;
    height: 18px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card-icon-primary {
    background: var(--accent-gradient);
}

.stat-card-icon-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.stat-card-icon-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-card-icon-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.stat-card-icon svg {
    width: 30px;
    height: 30px;
    color: #000000;
}

.stat-card-content {
    flex: 1;
}

.stat-card-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-card-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.admin-section {
    margin-bottom: 40px;
}

.section-header-admin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-title-admin {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.section-title-admin svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.section-filters {
    display: flex;
    gap: 12px;
}

.filter-select, .search-input {
    padding: 10px 16px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.filter-select:focus, .search-input:focus {
    border-color: var(--gold);
}

.search-input {
    min-width: 250px;
}

/* Video Analytics */
.video-analytics-container {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    padding: 28px;
}

.video-analytics-list {
    display: grid;
    gap: 24px;
}

.video-analytics-card {
    padding: 28px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.video-analytics-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.video-analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.video-analytics-info {
    flex: 1;
}

.video-analytics-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.video-analytics-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.video-analytics-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.video-analytics-status {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.video-analytics-status.has-views {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 2px solid var(--success);
}

.video-analytics-status.no-views {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-analytics-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.analytics-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.analytics-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analytics-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.video-analytics-progress {
    margin-top: 20px;
}

.progress-bar-analytics {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill-analytics {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text-analytics {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* User Activity Table */

.user-activity-container {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    padding: 28px;
    overflow-x: auto;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.user-activity-table {
    width: 100%;
    min-width: 820px;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1.2fr 1.2fr 1fr;
    gap: 20px;
    padding: 20px;
    align-items: center;
    border-radius: 14px;
}

.table-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.6px;
    background: rgba(255, 255, 255, 0.02);
}

.table-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.table-row:hover {
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

.table-col {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-empty {
    padding: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.table-col .status-badge {
    margin-left: auto;
}

.vendor-dashboard .dashboard-section {
    margin-bottom: 40px;
}

.vendor-dashboard .section-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vendor-dashboard .section-filters .search-input {
    min-width: 220px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.goal-card {
    background: linear-gradient(150deg, rgba(28, 28, 28, 0.95), rgba(16, 16, 16, 0.95));
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.goal-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 32px 64px rgba(212, 175, 55, 0.25);
}

.goal-card:hover::before {
    opacity: 1;
}

.goal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.goal-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.goal-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
}

.progress-bar-large {
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill-large {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: inherit;
    transition: width 0.6s ease;
}

.goal-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.material-card {
    background: linear-gradient(150deg, rgba(28, 28, 28, 0.95), rgba(16, 16, 16, 0.95));
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.material-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 32px 64px rgba(212, 175, 55, 0.25);
}

.material-card:hover::before {
    opacity: 1;
}

.material-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.material-card:hover .material-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

.material-icon svg {
    width: 32px;
    height: 32px;
    color: #000000;
    transition: all 0.3s ease;
}

.material-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.material-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.btn-material {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-material svg {
    width: 18px;
    height: 18px;
}

.btn-material:hover {
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.45);
}

.dashboard-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dashboard-hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dashboard-hero-actions .btn-primary svg {
    width: 20px;
    height: 20px;
}

.dashboard-hero-actions .btn-primary span {
    font-weight: 600;
}

.vendor-dashboard .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
}

.vendor-dashboard .btn-secondary svg {
    width: 20px;
    height: 20px;
}

.charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.chart-card {
    background: rgba(18, 18, 18, 0.78);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.chart-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.chart-content {
    min-height: 220px;
}

.vendor-dashboard .section-filters .filter-select {
    min-width: 150px;
}

.vendor-dashboard .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.vendor-dashboard .stat-card {
    gap: 10px;
}

.vendor-dashboard .stat-card-header {
    border-bottom: none;
    padding-bottom: 0;
}

.vendor-dashboard .stat-card-value {
    margin-bottom: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.vendor-dashboard .stat-card-label {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
}

.vendor-dashboard .stat-card-value + .stat-card-label {
    margin-left: 0;
}

.vendor-dashboard .stat-card-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.vendor-dashboard .stat-card .stat-card-value,
.vendor-dashboard .stat-card .stat-card-label {
    display: inline-flex;
}

.vendor-dashboard .user-activity-table .table-header,
.vendor-dashboard .user-activity-table .table-row {
    grid-template-columns: 1.8fr 1.2fr 1.1fr 1.1fr 0.8fr 0.8fr;
}

.vendor-dashboard .user-activity-table .table-col:last-child {
    justify-content: flex-end;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-details {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.user-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
}

.user-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.vendor-dashboard .dashboard-hero-header {
    gap: 32px;
}

@media screen and (max-width: 768px) {
    .vendor-dashboard .dashboard-hero-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .vendor-dashboard .dashboard-hero-actions {
        width: 100%;
        justify-content: stretch;
    }

    .vendor-dashboard .dashboard-hero-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .vendor-dashboard .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 540px) {
    .vendor-dashboard .dashboard-hero-text {
        align-items: flex-start;
        gap: 16px;
    }

    .vendor-dashboard .welcome-badge {
        width: 100%;
        justify-content: center;
    }
}

.progress-bar-inline {
    display: inline-block;
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-right: 8px;
    vertical-align: middle;
}

.progress-fill-inline {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-percentage {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.status-inactive {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Questionnaires */
.questionnaires-container {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    padding: 28px;
}

.questionnaires-list {
    display: grid;
    gap: 24px;
}

.questionnaire-card {
    padding: 28px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.questionnaire-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.questionnaire-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.questionnaire-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.questionnaire-count {
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
}

.empty-state {
    padding: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Charts */
.charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 28px;
}

.chart-card {
    padding: 28px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.chart-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.chart-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 28px;
}

.chart-content {
    min-height: 200px;
}

.line-chart {
    width: 100%;
    height: 400px;
    max-height: 400px;
    overflow: hidden;
    background: transparent;
    position: relative;
    cursor: grab;
}

.line-chart:active {
    cursor: grabbing;
}

.line-chart .chart-content {
    min-height: auto;
}

.line-chart text {
    user-select: none;
}

.chart-zoom-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.zoom-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    color: #D4AF37;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.zoom-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: scale(1.05);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.chart-stats text {
    pointer-events: none;
}

.chart-period-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    flex-wrap: wrap;
}

.period-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.period-selector label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
}

.period-select {
    padding: 8px 16px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.period-select:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.period-select:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.date-range {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.date-range span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.date-input {
    padding: 8px 12px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.date-input:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.date-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.btn-apply-period {
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid #D4AF37;
    border-radius: 8px;
    color: #D4AF37;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-apply-period:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateY(-1px);
}

.btn-apply-period:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .chart-period-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .period-selector {
        width: 100%;
    }
    
    .period-select {
        flex: 1;
    }
    
    .date-range {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    
    .date-input {
        width: 100%;
    }
    
    .btn-apply-period {
        width: 100%;
    }
    
    .line-chart {
        height: 300px;
        max-height: 300px;
    }
    
    .line-chart text {
        font-size: 10px !important;
    }
    
    .chart-zoom-controls {
        top: 5px;
        right: 5px;
        gap: 6px;
    }
    
    .zoom-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

.simple-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chart-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chart-bar-label {
    min-width: 80px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.chart-bar {
    flex: 1;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 12px;
    transition: width 0.5s ease;
}

.chart-bar-value {
    min-width: 40px;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

.simple-line-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    padding: 20px 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.chart-point {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

.chart-point-value {
    width: 12px;
    height: 0%;
    background: var(--accent-gradient);
    border-radius: 6px 6px 0 0;
    transition: height 0.5s ease;
    margin-bottom: 8px;
}

.chart-point-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* Questionnaire Modal */
.questionnaire-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 10001;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.questionnaire-modal.active {
    opacity: 1;
    visibility: visible;
}

.questionnaire-content {
    max-width: 700px;
    width: 100%;
    position: relative;
}

.questionnaire-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.questionnaire-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.questionnaire-close svg {
    width: 20px;
    height: 20px;
}

.questionnaire-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.questionnaire-form {
    margin-top: 24px;
}

.question-item {
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.question-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold);
}

.radio-option span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.questionnaire-footer-form {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-questionnaire-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: var(--accent-gradient);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-questionnaire-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-questionnaire-submit svg {
    width: 20px;
    height: 20px;
}

/* Responsive Admin */
@media screen and (max-width: 1024px) {
    .charts-container {
        grid-template-columns: 1fr;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .admin-main {
        padding: 24px 16px;
    }
    
    .value-container {
        grid-template-columns: 1fr;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header-admin {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-input {
        min-width: 100%;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .table-col {
        padding: 4px 0;
    }
    
    .value-stats {
        flex-direction: column;
        gap: 16px;
    }
}


/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.login-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 48px;
    max-width: 480px;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.login-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-label svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.form-input {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-error {
    display: none;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 14px;
    text-align: center;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: var(--accent-gradient);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.btn-login:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-login svg {
    width: 20px;
    height: 20px;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.login-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: var(--gold-light);
}

.login-info {
    display: none;
    gap: 24px;
    margin-left: 48px;
}

.info-card {
    padding: 32px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    text-align: center;
    max-width: 200px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    color: var(--gold);
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.info-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .login-info {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .login-card {
        padding: 32px 24px;
    }
    
    .login-logo {
        height: 48px;
    }
    
    .login-title {
        font-size: 24px;
    }
}

/* Admin Badge */
.admin-badge, .vendedor-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-gradient);
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.5px;
    margin-left: 12px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay .modal-content {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-overlay .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.btn-modal-close-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-close-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.btn-modal-close-icon svg {
    width: 20px;
    height: 20px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-secondary {
    flex: 1;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.modal-footer .btn-primary {
    flex: 1;
    justify-content: center;
}

/* Table Styles */
.table-empty {
    padding: 60px 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.table-empty svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.table-empty p {
    font-size: 16px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    aspect-ratio: 1;
    box-sizing: border-box;
}

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

.progress-bar-small {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-small {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text-small {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    min-width: 40px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid #10b981;
}

.status-inactive {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-table-action {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.btn-table-action:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-table-action svg {
    width: 18px;
    height: 18px;
}

.btn-add-client {
    background: var(--accent-gradient) !important;
    color: #000000 !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
}

.btn-add-client:hover {
    filter: brightness(1.1);
}

.chart-placeholder {
    padding: 60px 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.chart-placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.chart-placeholder p {
    font-size: 16px;
}


.strategic-value-main {
    text-align: left;
}

.strategic-comparison {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.85), rgba(34, 34, 34, 0.85));
}

.strategic-value-main .strategic-icon-wrapper {
    margin: 0 0 24px 0;
}

.strategic-value-main .strategic-description,
.strategic-value-main .strategic-stats-inline,
.strategic-value-main .strategic-highlight-inline {
    margin-left: 0;
    margin-right: 0;
}

.strategic-highlight-inline svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.strategic-highlight-inline span {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.strategic-comparison {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 40px;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.comparison-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.comparison-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.comparison-intro {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 16px 0;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.comparison-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.comparison-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.comparison-item.comparison-total {
    grid-column: 1 / -1;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.comparison-total .comparison-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.comparison-total .comparison-value {
    font-size: 24px;
}

.comparison-alternative {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

.comparison-alternative svg {
    width: 28px;
    height: 28px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive - Strategic Value */
@media (min-width: 1024px) {
    .strategic-value-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .strategic-stat-divider {
        display: block;
    }
    
    .strategic-stats-inline {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .strategic-value-container {
        padding: 32px 24px;
    }
    
    .strategic-title {
        font-size: 24px;
    }
    
    .strategic-description {
        font-size: 16px;
    }
    
    .strategic-stats-inline {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
    }
    
    .strategic-stat-number {
        font-size: 24px;
    }
    
    .comparison-header {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-title {
        font-size: 18px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-item.comparison-total {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .strategic-value-section {
        padding: 32px 16px;
    }
    
    .strategic-value-container {
        padding: 24px 16px;
    }
    
    .strategic-icon-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .strategic-icon-wrapper svg {
        width: 32px;
        height: 32px;
    }
    
    .strategic-highlight-inline {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .comparison-alternative {
        flex-direction: column;
        text-align: center;
    }
}

/* Hero Banner Enhanced */
.hero-banner-enhanced {
    position: relative;
    overflow: hidden;
}

.hero-background-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Stats Highlight Section */
.stats-highlight-section {
    padding: 32px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-highlight-container {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.welcome-badge svg {
    width: 18px;
    height: 18px;
    color: #d4af37;
}

.hero-title-animated {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #b8860b 0%, #f4d99d 50%, #c19a2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

/* Achievements Section */
.achievements-section {
    padding: 48px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-container {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 32px;
}

.achievements-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.achievements-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.achievements-title svg {
    width: 28px;
    height: 28px;
    color: #d4af37;
}

.achievements-count {
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.achievement-badge {
    position: relative;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-badge.unlocked {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    animation: unlockBadge 0.5s ease-out;
}

@keyframes unlockBadge {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.achievement-badge.locked {
    opacity: 0.5;
    filter: grayscale(0.7);
}

.achievement-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.achievement-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.achievement-description {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.achievement-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.achievement-lock {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    opacity: 0.5;
}

/* Next Steps Section */
.next-steps-section {
    padding: 100px 24px 120px;
    background: transparent;
    border-top: none;
}

.next-steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.next-steps-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 80px 0;
    text-align: center;
    width: 100%;
    letter-spacing: -0.5px;
}

.next-steps-title svg {
    width: 36px;
    height: 36px;
    color: #d4af37;
}

.next-steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 700px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 32px;
    position: relative;
    align-items: flex-start;
    padding: 20px;
    background: rgba(26, 26, 26, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}


.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.15);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.timeline-number {
    font-size: 28px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
}

.timeline-item.completed .timeline-marker {
    background: linear-gradient(135deg, #b8860b 0%, #f4d99d 50%, #c19a2e 100%);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.timeline-item.completed .timeline-number {
    color: #000000;
    -webkit-text-fill-color: #000000;
}

.timeline-item.in-progress .timeline-marker {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

.timeline-item.in-progress .timeline-number {
    color: #d4af37;
    -webkit-text-fill-color: #d4af37;
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.timeline-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

.timeline-status {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    font-size: 12px;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.timeline-status.status-completed {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.timeline-status.status-progress {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    color: #d4af37;
}

/* Responsive - Enhanced Features */
@media (max-width: 768px) {
    .hero-stats {
        gap: 16px;
    }
    
    .hero-stat-number {
        font-size: 24px;
    }
    
    .hero-stat-divider {
        height: 30px;
    }
    
    .achievements-container {
        padding: 24px 16px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .achievement-icon {
        font-size: 36px;
    }
    
    .next-steps-section {
        padding: 60px 16px;
    }
    
    .next-steps-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .next-steps-timeline {
        gap: 32px;
    }
    
    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .timeline-number {
        font-size: 20px;
    }
    
    .timeline-item::before {
        left: 24px;
        top: 50px;
        bottom: -32px;
    }
    
    .timeline-title {
        font-size: 18px;
    }
    
    .timeline-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .welcome-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dashboard Cliente Styles */
.dashboard-main {
    padding: 40px 0 60px;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.03), transparent 55%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    min-height: calc(100vh - 70px);
    margin-left: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    transition: margin-left 0.3s ease, width 0.3s ease;
}

.dashboard-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
}

body.has-sidebar .dashboard-container {
    max-width: 1280px;
    width: 100%;
    box-sizing: border-box;
}

/* Regras globais para garantir cards quadrados - TODAS AS RESOLUÇÕES */
/* Progress stat - aspect-ratio apenas em desktop */
@media screen and (min-width: 769px) {
    .progress-main-stat,
    body.has-sidebar .progress-main-stat,
    .dashboard-container .progress-main-stat,
    * .progress-main-stat {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
    }
}

.progress-main-stats,
body.has-sidebar .progress-main-stats,
.dashboard-container .progress-main-stats {
    width: 100% !important;
    box-sizing: border-box !important;
    align-items: start !important;
}

.dashboard-container + .dashboard-container {
    margin-top: 40px;
}

.dashboard-section {
    position: relative;
    background: rgba(26, 26, 26, 0.72);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(212, 175, 55, 0.1), transparent 60%);
    opacity: 0.35;
    pointer-events: none;
}

.dashboard-section > * {
    position: relative;
    z-index: 1;
}

.dashboard-section.dashboard-hero {
    display: grid;
    gap: 32px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(20, 20, 20, 0.9) 65%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 48px;
    margin-top: 40px;
}

.dashboard-hero-header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
    text-align: center;
    width: 100%;
}

.dashboard-hero-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.dashboard-main .welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: rgba(212, 175, 55, 0.16);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.dashboard-main .welcome-badge svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.dashboard-main .welcome-badge strong {
    color: var(--gold);
}

.dashboard-title {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    margin: 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.dashboard-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    line-height: 1.6;
    margin: 0 auto;
}

.dashboard-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.dashboard-section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.dashboard-section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    font-size: 15px;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}


.stat-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(150deg, rgba(28, 28, 28, 0.95), rgba(16, 16, 16, 0.95));
    border-radius: 24px;
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.25), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}


.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 32px 64px rgba(212, 175, 55, 0.25);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover::after {
    opacity: 0.6;
}


.stat-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.stat-card-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}


.stat-card-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-card-icon {
    transform: scale(1.2) rotate(10deg);
}

.stat-card-value {
    font-size: clamp(34px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-card-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.stat-card-purple,
.stat-card-pink,
.stat-card-blue,
.stat-card-orange {
    border-color: rgba(212, 175, 55, 0.25);
}

/* Progress */
/* Progress Hero Section - Apple Style */
.progress-hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0 40px;
    margin-bottom: 40px;
}

.progress-hero-content {
    max-width: 700px;
    margin-bottom: 30px;
}

.progress-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px 0;
}

.progress-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.progress-hero-highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.progress-hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

/* Progress Page - Professional Design */
.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-header-content {
    flex: 1;
}

.progress-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.progress-title-highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-main-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.progress-percentage-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.progress-percentage-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -2px;
}

.progress-percentage-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.progress-label-highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress Charts Wrapper */
.progress-charts-wrapper {
    margin-bottom: 32px;
}

.progress-chart-main {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}

.progress-chart-main:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.2);
}

.progress-chart-header {
    margin-bottom: 24px;
}

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

.progress-chart-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.bar-chart-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.bar-chart {
    width: 100%;
    height: 100%;
}

/* Stats Bars */
.stats-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-bar-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.stat-bar-value {
    color: #D4AF37;
    font-weight: 700;
    font-size: 14px;
}

.stat-bar-track {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.stat-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Progress Main Stats - Cards Quadrados */
/* REGRA BASE: 4 colunas por padrão (desktop) */
.progress-main-stats {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 32px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    align-items: start !important;
    grid-auto-rows: auto !important;
    min-width: 0 !important;
}

/* Forçar 4 colunas no desktop sempre - independente do scroll da sidebar */
/* Esta regra deve ter a maior prioridade e sobrescrever tudo */
@media screen and (min-width: 1025px) {
    .progress-main-stats,
    body.has-sidebar .progress-main-stats,
    .dashboard-container .progress-main-stats,
    body.has-sidebar .dashboard-container .progress-main-stats,
    .dashboard-main .progress-main-stats,
    body.has-sidebar .dashboard-main .progress-main-stats,
    body.has-sidebar .dashboard-container .progress-main-stats,
    .dashboard-tab-content .progress-main-stats,
    body.has-sidebar .dashboard-tab-content .progress-main-stats {
        grid-template-columns: repeat(4, 1fr) !important;
        display: grid !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 20px !important;
        align-items: start !important;
    }
    
    .progress-main-stat,
    body.has-sidebar .progress-main-stat,
    .dashboard-container .progress-main-stat,
    .dashboard-tab-content .progress-main-stat {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
    }
}


.progress-main-stat {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    position: relative !important;
    height: auto !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.progress-main-stat:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(212, 175, 55, 0.2) !important;
    transform: translateY(-2px) !important;
}

.progress-main-stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.progress-main-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    flex-shrink: 0;
}

.progress-main-stat-icon svg {
    width: 18px;
    height: 18px;
}

.progress-main-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-main-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.progress-main-stat-total {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    flex-shrink: 0;
}

.progress-main-stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: auto;
    min-height: 6px;
}

.progress-main-stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Progress Section Header */
.progress-section-header {
    margin-bottom: 20px;
}

.progress-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.progress-section-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Next Steps */
.progress-next-steps {
    margin-bottom: 0;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.next-step-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.next-step-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.2);
}

.next-step-number {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.next-step-content {
    flex: 1;
}

.next-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.next-step-title svg {
    width: 16px;
    height: 16px;
    color: #D4AF37;
}

.next-step-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

/* Milestones Timeline */
.progress-milestones {
    margin-bottom: 20px;
}

.milestones-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    padding-left: 32px;
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.milestone-item {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.milestone-dot {
    position: absolute;
    left: -24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    margin-top: 6px;
    transition: all 0.3s ease;
}

.milestone-item.completed .milestone-dot {
    background: #D4AF37;
    border-color: #D4AF37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.milestone-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 18px;
    transition: all 0.3s ease;
}

.milestone-item.completed .milestone-content {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.milestone-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.milestone-title svg {
    width: 16px;
    height: 16px;
    color: #D4AF37;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.milestone-item.completed .milestone-title svg {
    opacity: 1;
}

.milestone-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.progress-card {
    margin-top: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(32px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.progress-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.progress-summary {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.progress-eyebrow {
    font-size: 11px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    font-weight: 600;
}

.progress-headline {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.progress-headline span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.progress-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Removido bloco de stats para layout mais limpo */

.progress-card::before,
.progress-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.progress-card::before {
    background: radial-gradient(circle at 20% 20%, rgba(244, 208, 63, 0.12), transparent 55%);
    opacity: 0.8;
}

.progress-card::after {
    background: radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.08), transparent 50%);
    opacity: 0.6;
}

.progress-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #ffffff;
}

/* Progress Circle - Apple Style */
.progress-circle-container {
    order: 2;
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-left: auto;
    padding: 20px;
    border-radius: 32px;
    background: transparent;
    border: none;
    overflow: visible;
    transition: all 0.4s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.progress-circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
}

.progress-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.progress-circle-fill {
    fill: none;
    stroke: url(#progressGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 553.1;
    stroke-dashoffset: 553.1;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
}

/* Removido glowPulse para visual mais clean */

.progress-circle-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 2;
}

.progress-circle-percentage {
    font-size: 56px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
}

.progress-circle-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.progress-badge-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.1));
    border: 2.5px solid rgba(212, 175, 55, 0.4);
    font-size: 28px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 24px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.35); }
}

.progress-bar-container {
    display: none;
}

.progress-bar-container::after {
    display: none;
}

.progress-bar-fill {
    display: none;
}

.progress-info-row {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding-right: 12%;
    border-top: none;
    padding-top: 0;
    position: relative;
    z-index: 1;
    max-width: 460px;
}

.progress-info-row::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 68px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 999px;
    opacity: 0.8;
}


.progress-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    width: 100%;
}

.progress-info-label {
    font-size: 11px;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.48);
    text-transform: uppercase;
}

.progress-status {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.progress-info-item + .progress-info-item {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.progress-milestones {
    margin-top: 4px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.milestone-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.milestone-dot.completed {
    background: var(--accent-gradient);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* (duplicate definitions removidos) */

/* Hero Background Decoration */
.hero-background-decoration {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

/* Hero Stats Quick */
.hero-stats-quick {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(244, 208, 63, 0.08));
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.hero-stats-quick:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    transform: scale(1.05);
}

.hero-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.15);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-stat-item:hover .hero-stat-icon {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
    transform: rotate(10deg);
}

.hero-stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hero-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.hero-stat-divider {
    width: 1.5px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

/* Quick Actions */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.quick-action-card {
    position: relative;
    padding: 32px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 18px;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-action-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.25), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.quick-action-card:hover,
.quick-action-card:focus-visible {
    transform: translateY(-12px) scale(1.02);
    background: rgba(25, 25, 25, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.quick-action-card:hover::before,
.quick-action-card:focus-visible::before {
    opacity: 1;
}

.quick-action-card:hover::after,
.quick-action-card:focus-visible::after {
    opacity: 0.6;
}

.quick-action-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.quick-action-card:hover .quick-action-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

.quick-action-icon svg {
    width: 36px;
    height: 36px;
    color: #d4af37;
    transition: all 0.3s ease;
}

.quick-action-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.quick-action-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.quick-action-card > svg {
    display: none;
}

@media screen and (max-width: 640px) {
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .quick-action-card {
        padding: 20px;
        border-radius: 16px;
    }
}

@media screen and (max-width: 420px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.achievement-badge {
    position: relative;
    padding: 26px 20px;
    border-radius: 18px;
    background: linear-gradient(140deg, rgba(30, 30, 30, 0.95), rgba(18, 18, 18, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
    min-height: 170px;
}

.achievement-badge:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 24px 44px rgba(212, 175, 55, 0.2);
}

.achievement-badge.unlocked {
    border-color: rgba(212, 175, 55, 0.5);
}

.achievement-badge.locked {
    opacity: 0.5;
}

.achievement-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon svg {
    width: 30px;
    height: 30px;
    color: #000000;
}

.achievement-name {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.achievement-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* Responsive Dashboard */
@media screen and (min-width: 1025px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    
    .stat-card {
        align-items: flex-start;
        gap: 28px;
    }
    
    .stat-card-header {
        align-items: flex-start;
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .dashboard-main {
        padding: 88px 0 60px;
    }
    
    .dashboard-section {
        padding: 30px;
    }
    
    .dashboard-title {
        font-size: clamp(30px, 5vw, 46px);
    }
}

@media screen and (max-width: 768px) {
    .dashboard-container {
        padding: 0 20px;
    }
    
    .dashboard-section {
        padding: 28px;
        border-radius: 18px;
    }
    
    .dashboard-hero-header {
        align-items: flex-start;
        gap: 24px;
    }
    
    .progress-card {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: stretch;
    }
    
    .progress-circle-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }
    
    .dashboard-container + .dashboard-container {
        margin-top: 32px;
    }
    
    .progress-circle-percentage {
        font-size: 40px;
    }

    .progress-hero-section {
        padding: 40px 0 60px;
        margin-bottom: 40px;
    }

    .progress-hero-title {
        font-size: clamp(36px, 5vw, 56px);
    }

    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .progress-percentage-display {
        align-items: flex-start;
    }

    /* Removido - regras de aspect-ratio movidas para seção mobile */
    
    .progress-chart-main {
        padding: 24px;
    }

    .progress-stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

    .progress-stat-value {
        font-size: 28px;
    }
}

@media screen and (max-width: 540px) {
    .dashboard-main {
        padding: 40px 0 48px;
    }
    
    .dashboard-container {
        padding: 0 16px;
    }
    
    .dashboard-section {
        padding: 24px;
        border-radius: 16px;
    }
    
    .dashboard-main .welcome-badge {
        width: 100%;
        justify-content: center;
    }
    
    .stat-card,
    .quick-action-card {
        padding: 24px;
    }
    
    .achievement-badge {
        padding: 22px 16px;
    }
    
    .progress-card-title {
        font-size: 18px;
    }
    
    .progress-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    
    .progress-info-column {
        text-align: center;
    }
    
    .progress-circle-container {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        align-items: stretch;
    }
    
    .stat-card-header {
        align-items: flex-start;
    }
    
    .stat-card-title {
        flex: 1;
    }
    
    .stat-card-icon {
        flex-shrink: 0;
    }
    
    .dashboard-container + .dashboard-container {
        margin-top: 24px;
    }
    
    .progress-hero-section {
        padding: 30px 0 40px;
    }

    .progress-hero-title {
        font-size: 32px;
    }

    .progress-hero-subtitle {
        font-size: 16px;
    }

    /* Removido - regras conflitantes que quebram o layout desktop */

    .progress-main-stat-value {
        font-size: 32px;
    }
    
    .progress-chart-main {
        padding: 20px;
    }
    
    .bar-chart-container {
        height: 160px;
    }

    .progress-stats-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .progress-stat-card {
        padding: 24px;
    }

    .progress-stat-value {
        font-size: 24px;
    }

    .progress-section-title {
        font-size: 24px;
    }

    .milestones-timeline {
        padding-left: 32px;
    }

    .milestones-timeline::before {
        left: 15px;
    }

    .milestone-dot {
        left: -24px;
        width: 10px;
        height: 10px;
    }

    .progress-circle-percentage {
        font-size: 32px;
    }
    
    .progress-circle-label {
        font-size: 9px;
    }
}

/* Value Proposition Section */
.value-proposition-section {
    padding: 80px 24px;
    background: transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.value-proposition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(244, 208, 63, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 50px;
    margin-bottom: 24px;
    animation: pulse-badge 2.5s infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.value-badge svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
}

.value-badge span {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.value-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 48px;
    color: white;
    letter-spacing: -0.5px;
}

.value-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 48px;
    line-height: 1;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.value-amount .currency {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-amount .amount {
    font-size: clamp(56px, 8vw, 96px);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.value-amount .cents {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-description {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.value-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-feature:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.value-feature svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.value-feature span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Price Comparison Section */
.price-comparison-section {
    padding: 50px 24px 60px;
    background: transparent;
    backdrop-filter: none;
    width: 100%;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.comparison-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.comparison-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.comparison-card {
    padding: 40px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 28px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.comparison-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(212, 175, 55, 0.2);
}

.comparison-highlight {
    border: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.02);
    margin-top: 12px;
}

.comparison-highlight:hover {
    transform: scale(1.04) translateY(-4px);
}

.comparison-ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gradient);
    color: #000000;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

.comparison-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 16px;
}

.comparison-header .header-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}

.comparison-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.comparison-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.comparison-badge.gold {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.comparison-prices {
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.featured {
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.price-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.price-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.benefit-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.comparison-total {
    padding: 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    text-align: center;
}

.comparison-total span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 4px;
}

.comparison-total strong {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.comparison-total.highlight {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.comparison-total.highlight strong {
    font-size: 24px;
}

.comparison-cta {
    text-align: center;
    padding: 24px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
}

.comparison-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.comparison-note svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Next Steps Section */
.next-steps-section {
    padding: 50px 24px;
    background: transparent;
    width: 100%;
}

.next-steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.next-steps-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: white;
}

.next-steps-title svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.next-steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-color: var(--gold);
    background: rgba(26, 26, 26, 0.8);
    transform: translateX(8px);
}

.timeline-marker {
    flex-shrink: 0;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    color: #000000;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.timeline-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Welcome Badge */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
}

.welcome-badge svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.welcome-badge span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.welcome-badge strong {
    font-weight: 700;
    color: var(--gold);
}

.hero-title-animated {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .value-proposition-section {
        padding: 60px 20px;
    }
    
    .value-features {
        grid-template-columns: 1fr;
    }
    
    .price-comparison-section {
        padding: 60px 20px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-highlight {
        transform: scale(1);
        margin-top: 20px;
    }
    
    .comparison-highlight:hover {
        transform: translateY(-4px);
    }
    
    .comparison-ribbon {
        top: -10px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .next-steps-section {
        padding: 60px 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker {
        margin: 0 auto;
    }
}

/* Value Proposition Section */
.value-proposition-section {
    padding: 80px 24px;
    background: transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.value-proposition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(244, 208, 63, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 50px;
    margin-bottom: 24px;
    animation: pulse-badge 2.5s infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.value-badge svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
}

.value-badge span {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.value-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: white;
}

.value-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 32px;
    line-height: 1;
    flex-wrap: nowrap;
}

.value-amount .currency {
    font-size: 36px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.value-amount .amount {
    font-size: 80px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.value-amount .cents {
    font-size: 36px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.value-description {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.value-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-feature:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.value-feature svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.value-feature span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Price Comparison Section */
.price-comparison-section {
    padding: 50px 24px 60px;
    background: transparent;
    backdrop-filter: none;
    width: 100%;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.comparison-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.comparison-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
}

.comparison-card {
    padding: 32px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.comparison-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-highlight {
    border: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.02);
    margin-top: 12px;
}

.comparison-highlight:hover {
    transform: scale(1.04) translateY(-4px);
}

.comparison-ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gradient);
    color: #000000;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

.comparison-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 16px;
}

.comparison-header .header-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 16px;
}

.comparison-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.comparison-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.comparison-badge.gold {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.comparison-prices {
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.featured {
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.price-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.price-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.benefit-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.comparison-total {
    padding: 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    text-align: center;
}

.comparison-total span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 4px;
}

.comparison-total strong {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.comparison-total.highlight {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.comparison-total.highlight strong {
    font-size: 24px;
}

/* Next Steps Section */
.next-steps-section {
    padding: 50px 24px;
    background: transparent;
    width: 100%;
}

.next-steps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.next-steps-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: white;
}

.next-steps-title svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.next-steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-color: var(--gold);
    background: rgba(26, 26, 26, 0.8);
    transform: translateX(8px);
}

.timeline-marker {
    flex-shrink: 0;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    color: #000000;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.timeline-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments for New Sections */
@media (max-width: 768px) {
    .value-proposition-section {
        padding: 60px 20px;
    }
    
    .value-amount .currency {
        font-size: 20px;
    }
    
    .value-amount .amount {
        font-size: 40px;
    }
    
    .value-amount .cents {
        font-size: 20px;
    }
    
    .value-features {
        grid-template-columns: 1fr;
    }
    
    .price-comparison-section {
        padding: 60px 20px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-highlight {
        transform: scale(1);
        margin-top: 20px;
    }
    
    .comparison-highlight:hover {
        transform: translateY(-4px);
    }
    
    .comparison-ribbon {
        top: -10px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .next-steps-section {
        padding: 60px 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker {
        margin: 0 auto;
    }
}

/* VALUE PROPOSITION - SIMPLE AND CLEAN */
.value-proposition-section {
    padding: 80px 24px;
    background: transparent;
    position: relative;
}

.value-proposition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.value-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
}

.value-badge svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.value-badge span {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.value-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    color: white;
}

.value-amount {
    display: block;
    margin-bottom: 40px;
    line-height: 1;
}

.value-amount .currency,
.value-amount .amount,
.value-amount .cents {
    display: inline-block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    vertical-align: baseline;
}

.value-amount .currency {
    font-size: 40px;
}

.value-amount .amount {
    font-size: 80px;
    letter-spacing: -2px;
    margin: 0 2px;
}

.value-amount .cents {
    font-size: 40px;
}

.value-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 750px;
    margin: 0 auto;
}

.value-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.value-feature:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.value-feature svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.value-feature span {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Desktop specific styles */
@media (min-width: 1024px) {
    .value-proposition-section {
        padding: 100px 24px;
    }
    
    .value-badge {
        padding: 8px 18px;
    }
    
    .value-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .value-badge span {
        font-size: 11px;
    }
    
    .value-title {
        font-size: 36px;
        margin-bottom: 35px;
    }
    
    .value-amount .currency {
        font-size: 44px;
    }
    
    .value-amount .amount {
        font-size: 88px;
    }
    
    .value-amount .cents {
        font-size: 44px;
    }
    
    .value-description {
        font-size: 19px;
    }
    
    .value-features {
        max-width: 800px;
        gap: 18px;
    }
    
    .value-feature {
        padding: 18px 24px;
    }
    
    .value-feature span {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .value-proposition-section {
        padding: 60px 20px;
    }
    
    .value-title {
        font-size: 24px;
    }
    
    .value-amount .currency {
        font-size: 26px;
    }
    
    .value-amount .amount {
        font-size: 52px;
    }
    
    .value-amount .cents {
        font-size: 26px;
    }
    
    .value-features {
        grid-template-columns: 1fr;
    }
}

/* ===== VALUE PROPOSITION SECTION - CENTERED LAYOUT ===== */
.value-proposition-section {
    padding: 100px 24px;
    background: transparent;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.value-proposition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.value-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin: 0 auto 24px;
}

.value-badge svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.value-badge span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.value-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 auto 32px;
    color: white;
    text-align: center;
    max-width: 900px;
}

.value-amount {
    display: block;
    text-align: center;
    margin: 0 auto 45px;
    line-height: 1;
}

.value-amount .currency,
.value-amount .amount,
.value-amount .cents {
    display: inline-block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    vertical-align: baseline;
    line-height: 1;
}

.value-amount .currency {
    font-size: 44px;
    margin-right: 2px;
}

.value-amount .amount {
    font-size: 88px;
    letter-spacing: -2px;
}

.value-amount .cents {
    font-size: 44px;
    margin-left: 2px;
}

.value-description {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 45px;
    max-width: 750px;
    text-align: center;
}

.value-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.value-feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 18px 24px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.value-feature:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.value-feature svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.value-feature span {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 1024px) {
    .value-proposition-section {
        padding: 80px 24px;
    }
    
    .value-title {
        font-size: 30px;
    }
    
    .value-amount .currency {
        font-size: 36px;
    }
    
    .value-amount .amount {
        font-size: 72px;
    }
    
    .value-amount .cents {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .value-proposition-section {
        padding: 60px 20px;
    }
    
    .value-badge {
        padding: 6px 12px;
    }
    
    .value-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .value-badge span {
        font-size: 10px;
    }
    
    .value-title {
        font-size: 24px;
        margin-bottom: 28px;
    }
    
    .value-amount {
        margin-bottom: 35px;
    }
    
    .value-amount .currency {
        font-size: 28px;
    }
    
    .value-amount .amount {
        font-size: 56px;
    }
    
    .value-amount .cents {
        font-size: 28px;
    }
    
    .value-description {
        font-size: 17px;
        margin-bottom: 35px;
    }
    
    .value-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .value-feature {
        padding: 16px 20px;
    }
    
    .value-feature span {
        font-size: 15px;
    }
}

/* ===== OVERRIDE - VALUE PROPOSITION FINAL ===== */
.value-proposition-section {
    padding: 30px 24px 50px !important;
    background: transparent !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
}

.value-proposition-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: transparent !important;
    pointer-events: none !important;
}

.value-container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
}

.value-badge {
    display: inline-block !important;
    padding: 10px 24px !important;
    background: var(--accent-gradient) !important;
    border: 1px solid rgba(212, 175, 55, 0.5) !important;
    border-radius: 14px !important;
    margin: 0 auto 16px !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.value-badge span {
    font-size: 12px !important;
    font-weight: 900 !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    display: inline-block !important;
}

.value-badge:hover {
    filter: brightness(1.1) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35) !important;
    transform: translateY(-2px) !important;
}

.value-title {
    font-size: 36px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin: 0 auto 20px !important;
    color: white !important;
    text-align: center !important;
    max-width: 900px !important;
}

.value-amount {
    display: block !important;
    text-align: center !important;
    margin: 0 auto 30px !important;
    line-height: 1 !important;
}

.value-amount .currency,
.value-amount .amount,
.value-amount .cents {
    display: inline-block !important;
    background: var(--accent-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 900 !important;
    vertical-align: baseline !important;
    line-height: 1 !important;
}

.value-amount .currency {
    font-size: 44px !important;
    margin-right: 2px !important;
}

.value-amount .amount {
    font-size: 88px !important;
    letter-spacing: -2px !important;
}

.value-amount .cents {
    font-size: 44px !important;
    margin-left: 2px !important;
}

.value-description {
    font-size: 19px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 auto 30px !important;
    max-width: 750px !important;
    text-align: center !important;
}

.value-features {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.value-feature {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 18px 24px !important;
    background: rgba(212, 175, 55, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 18px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    text-align: left !important;
}

.value-feature:hover {
    background: rgba(212, 175, 55, 0.12) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15) !important;
}

.value-feature svg {
    width: 22px !important;
    height: 22px !important;
    color: var(--gold) !important;
    flex-shrink: 0 !important;
}

.value-feature span {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.4 !important;
}

@media (max-width: 768px) {
    .value-proposition-section {
        padding: 30px 20px 50px !important;
    }
    
    .value-badge {
        padding: 6px 12px !important;
    }
    
    .value-badge svg {
        width: 12px !important;
        height: 12px !important;
    }
    
    .value-badge span {
        font-size: 10px !important;
    }
    
    .value-title {
        font-size: 24px !important;
        margin-bottom: 28px !important;
    }
    
    .value-amount {
        margin-bottom: 35px !important;
    }
    
    .value-amount .currency {
        font-size: 28px !important;
    }
    
    .value-amount .amount {
        font-size: 56px !important;
    }
    
    .value-amount .cents {
        font-size: 28px !important;
    }
    
    .value-description {
        font-size: 17px !important;
        margin-bottom: 35px !important;
    }
    
    .value-features {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    
    .value-feature {
        padding: 16px 20px !important;
    }
    
    .value-feature span {
        font-size: 15px !important;
    }
}

/* ===== FORCE CENTER ALIGNMENT - DESKTOP FIX ===== */
@media (min-width: 769px) {
    .value-proposition-section {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .value-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .value-badge {
        align-self: center !important;
    }
    
    .value-title {
        align-self: center !important;
        text-align: center !important;
    }
    
    .value-amount {
        align-self: center !important;
        text-align: center !important;
        width: auto !important;
    }
    
    .value-description {
        align-self: center !important;
        text-align: center !important;
    }
    
    .value-features {
        align-self: center !important;
        justify-self: center !important;
    }
}

/* ===== MOBILE SPACING FIX ===== */
@media (max-width: 768px) {
    .value-proposition-section {
        padding: 0 20px 40px !important;
        margin-top: -30px !important;
    }
    
    .value-badge {
        margin-bottom: 16px !important;
    }
    
    .value-title {
        margin-bottom: 20px !important;
    }
    
    .value-amount {
        margin-bottom: 25px !important;
    }
    
    .value-description {
        margin-bottom: 30px !important;
    }
}

/* OAB Logo Styling */
.oab-logo {
    width: 64px !important;
    height: 64px !important;
    margin-right: 20px !important;
}

/* ProConsumo Logo Styling */
.proconsumo-logo {
    width: 64px !important;
    height: 64px !important;
    margin-right: 20px !important;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-card {
    padding: 36px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(20, 20, 20, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(212, 175, 55, 0.2), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(25, 25, 25, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.highlight-card:hover::before {
    opacity: 0.6;
}

.highlight-card:hover::after {
    opacity: 1;
}

.highlight-card > * {
    position: relative;
    z-index: 1;
}

.highlight-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: transparent;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.highlight-icon-large svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
    stroke-width: 2;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.8);
}

.highlight-title {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.highlight-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.7;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(212, 175, 55, 0.15);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    width: fit-content;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-badge-emoji {
    font-size: 16px;
}

.highlight-card:hover .highlight-badge {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateX(4px);
}

.highlight-primary {
    border-color: rgba(212, 175, 55, 0.35);
}

.highlight-primary:hover {
    border-color: rgba(212, 175, 55, 0.6);
}

.highlight-success {
    border-color: rgba(16, 185, 129, 0.35);
}

.highlight-success:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 32px 64px rgba(16, 185, 129, 0.2);
}

.highlight-success .highlight-icon {
    border-color: #10b981;
}

.highlight-success .highlight-icon-large svg {
    color: #10b981;
}

.highlight-success:hover .highlight-icon {
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.4);
    border-color: rgba(16, 185, 129, 0.8);
}

.highlight-success .highlight-badge {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.35);
    color: #10b981;
}

.highlight-success:hover .highlight-badge {
    background: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
}

.highlight-info {
    border-color: rgba(59, 130, 246, 0.35);
}

.highlight-info:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 32px 64px rgba(59, 130, 246, 0.2);
}

.highlight-info .highlight-icon {
    border-color: #3b82f6;
}

.highlight-info .highlight-icon-large svg {
    color: #3b82f6;
}

.highlight-info:hover .highlight-icon {
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.8);
}

.highlight-info .highlight-badge {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
    color: #3b82f6;
}

.highlight-info:hover .highlight-badge {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
}

.highlight-warning {
    border-color: rgba(245, 158, 11, 0.35);
}

.highlight-warning:hover {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 32px 64px rgba(245, 158, 11, 0.2);
}

.highlight-warning .highlight-icon {
    border-color: #f59e0b;
}

.highlight-warning .highlight-icon-large svg {
    color: #f59e0b;
}

.highlight-warning:hover .highlight-icon {
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.4);
    border-color: rgba(245, 158, 11, 0.8);
}

.highlight-warning .highlight-badge {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.35);
    color: #f59e0b;
}

.highlight-warning:hover .highlight-badge {
    background: rgba(245, 158, 11, 0.25);
    border-color: rgba(245, 158, 11, 0.5);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tip-card {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(20, 20, 20, 0.7);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tip-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.tip-card:hover {
    transform: translateY(-6px);
    background: rgba(25, 25, 25, 0.85);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tip-card:hover::before {
    opacity: 0.4;
}

.tip-card > * {
    position: relative;
    z-index: 1;
}

.tip-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

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

.tip-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
}

/* Responsive - Highlights & Tips */
@media screen and (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .highlight-card {
        padding: 24px;
    }
    
    .tip-card {
        padding: 22px;
    }
}

@media screen and (max-width: 540px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-card,
    .tip-card {
        padding: 20px;
    }
}

/* ============================================
   DASHBOARD SIDEBAR - Modern App Style
   ============================================ */

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.mobile-menu-toggle:hover {
    background: rgba(30, 30, 30, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle svg {
    width: 20px;
    height: 20px;
}

.dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(40px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.dashboard-sidebar.active {
    transform: translateX(0);
}

@media screen and (min-width: 1025px) {
    .dashboard-sidebar {
        transform: translateX(0);
    }

    /* Aplicar deslocamento apenas quando há sidebar presente */
    body.has-sidebar .dashboard-main {
        margin-left: 280px;
        width: calc(100% - 280px);
        max-width: calc(100vw - 280px);
    }

    body.has-sidebar .platform-header {
        left: 280px;
        width: calc(100% - 280px);
        right: 0;
    }

    body.has-sidebar .platform-footer {
        margin-left: 280px;
        width: calc(100% - 280px);
        max-width: calc(100vw - 280px);
    }

    /* FORÇAR 4 COLUNAS NO DESKTOP - MÁXIMA PRIORIDADE */
    .progress-main-stats,
    body.has-sidebar .progress-main-stats,
    .dashboard-container .progress-main-stats,
    body.has-sidebar .dashboard-container .progress-main-stats,
    .dashboard-main .progress-main-stats,
    body.has-sidebar .dashboard-main .progress-main-stats,
    .dashboard-tab-content .progress-main-stats,
    body.has-sidebar .dashboard-tab-content .progress-main-stats,
    section .progress-main-stats,
    body.has-sidebar section .progress-main-stats,
    * .progress-main-stats,
    body.has-sidebar * .progress-main-stats {
        grid-template-columns: repeat(4, 1fr) !important;
        display: grid !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: start !important;
        box-sizing: border-box !important;
    }

    .progress-main-stat,
    body.has-sidebar .progress-main-stat,
    .dashboard-container .progress-main-stat,
    * .progress-main-stat {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
    }
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.sidebar-logo-img {
    height: 36px;
    width: auto;
}

.sidebar-close {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.sidebar-close svg {
    width: 18px;
    height: 18px;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

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

.sidebar-user-info {
    flex: 1;
    min-width: 0;
}

.sidebar-user-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-user-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.sidebar-nav-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.sidebar-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.sidebar-nav-item:hover svg {
    color: #ffffff;
}

.sidebar-nav-item.active {
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
}

.sidebar-nav-item.active svg {
    color: #d4af37;
}

.sidebar-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #d4af37;
    border-radius: 0 3px 3px 0;
}

/* Badge de notificação no sidebar */
.sidebar-nav-item {
    position: relative;
}

.sidebar-nav-item .notification-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.4);
    z-index: 10;
    line-height: 1;
    visibility: visible !important;
}

.sidebar-nav-item .notification-badge[style*="display: none"] {
    display: none !important;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-logout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.btn-logout svg {
    width: 18px;
    height: 18px;
}

/* Progress Stats Mini */
.progress-stats-mini {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-stat-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.progress-stat-mini-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.progress-stat-mini-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Action Badge */
.quick-action-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.quick-action-badge.badge-success {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

/* Gold Text Utility */
.gold-text {
    color: #d4af37;
    font-weight: 700;
}

/* Dark Theme Adjustments */
.dashboard-main {
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.03), transparent 55%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
}

.dashboard-section {
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-section.dashboard-hero {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(15, 15, 15, 0.95) 65%);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-main .welcome-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-card {
    background: linear-gradient(150deg, rgba(20, 20, 20, 0.95), rgba(12, 12, 12, 0.95));
    border: 1.5px solid rgba(255, 255, 255, 0.08);
}

.stat-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.progress-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Dark theme overrides already applied above */

/* Mobile Responsive */
@media screen and (max-width: 1024px) {
    .dashboard-sidebar {
        width: 260px;
    }

    /* Resetar deslocamento em telas menores */
    body.has-sidebar .dashboard-main {
        margin-left: 0;
        width: 100%;
        max-width: 100vw;
    }

    body.has-sidebar .platform-header {
        left: 0;
        width: 100%;
        max-width: 100vw;
    }

    body.has-sidebar .platform-footer {
        margin-left: 0;
        width: 100%;
        max-width: 100vw;
    }

    /* Garantir que outros dashboards não sejam afetados */
    .dashboard-main {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .platform-header {
        left: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .sidebar-close {
        display: flex;
    }

    .dashboard-main {
        padding-left: 0;
        margin-left: 0;
        width: 100%;
        max-width: 100vw;
    }

    .dashboard-container {
        padding: 0 20px;
    }

    .dashboard-section {
        padding: 24px 20px;
    }

    .progress-card {
        flex-direction: column;
        padding: 24px 20px;
    }

    .progress-info-column {
        order: 2;
        padding-right: 0;
        max-width: 100%;
    }

    .progress-circle-container {
        order: 1;
        margin: 0 auto 24px;
        width: 200px;
        height: 200px;
    }

    .progress-stats-mini {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-primary span {
        display: none;
    }

    .btn-primary {
        padding: 12px;
        min-width: 44px;
    }

    .btn-secondary span {
        display: none;
    }

    .btn-secondary {
        padding: 12px;
        min-width: 44px;
    }
}

@media screen and (max-width: 480px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-hero-header {
        padding: 32px 20px;
    }

    .dashboard-title {
        font-size: 28px;
    }

    .dashboard-subtitle {
        font-size: 16px;
    }
}

/* Timeline - Instagram Style */
#timelineContainer {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-post-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 32px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.timeline-post-card:last-child {
    margin-bottom: 0;
}

.timeline-post-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.timeline-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 60px;
}

.timeline-post-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.timeline-post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
}

.timeline-post-avatar svg {
    width: 20px;
    height: 20px;
}

.timeline-post-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.timeline-post-author-name {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.timeline-post-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.timeline-post-more {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.timeline-post-more:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.timeline-post-more svg {
    width: 20px;
    height: 20px;
}

.timeline-post-media {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #0a0a0a;
    position: relative;
    display: block;
}

.timeline-post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.timeline-post-content {
    padding: 16px 20px 20px;
}

.timeline-post-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
}

.timeline-post-text:last-child {
    margin-bottom: 0;
}

.timeline-post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.timeline-post-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-1px);
}

.timeline-post-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    #timelineContainer {
        max-width: 100%;
        padding: 0;
    }

    .timeline-post-card {
        border-radius: 0;
        margin-bottom: 24px;
        border-left: none;
        border-right: none;
    }

    .timeline-post-card:first-child {
        border-top: none;
    }

    .timeline-post-card:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .timeline-post-header {
        padding: 14px 16px;
        min-height: 56px;
    }

    .timeline-post-avatar {
        width: 36px;
        height: 36px;
    }

    .timeline-post-avatar svg {
        width: 18px;
        height: 18px;
    }

    .timeline-post-content {
        padding: 14px 16px 16px;
    }

    .timeline-post-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
}

/* REGRA FINAL - Máxima prioridade para garantir 4 colunas no desktop */
@media screen and (min-width: 1025px) {
    .progress-main-stats,
    body.has-sidebar .progress-main-stats,
    .dashboard-container .progress-main-stats,
    body.has-sidebar .dashboard-container .progress-main-stats,
    .dashboard-main .progress-main-stats,
    body.has-sidebar .dashboard-main .progress-main-stats,
    .dashboard-tab-content .progress-main-stats,
    body.has-sidebar .dashboard-tab-content .progress-main-stats,
    section .progress-main-stats,
    body.has-sidebar section .progress-main-stats,
    * .progress-main-stats,
    body.has-sidebar * .progress-main-stats {
        grid-template-columns: repeat(4, 1fr) !important;
        display: grid !important;
        gap: 20px !important;
    }
    
    .progress-main-stat,
    body.has-sidebar .progress-main-stat,
    * .progress-main-stat {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: auto !important;
    }
}

/* REGRA DESKTOP - aspect-ratio apenas em telas grandes */
@media screen and (min-width: 769px) {
    .progress-main-stat,
    body.has-sidebar .progress-main-stat,
    .dashboard-container .progress-main-stat,
    .dashboard-main .progress-main-stat,
    .dashboard-tab-content .progress-main-stat,
    section .progress-main-stat,
    * .progress-main-stat {
        aspect-ratio: 1 / 1 !important;
    }
}

/* Tablet - 2 colunas apenas entre 769px e 1024px - MANTÉM QUADRADO */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .progress-main-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    
    .progress-main-stat {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
}

/* Mobile - 2 colunas abaixo de 768px - Cards compactos */
@media screen and (max-width: 768px) {
    .progress-main-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .progress-main-stat {
        aspect-ratio: auto !important;
        width: 100% !important;
        height: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 16px !important;
        gap: 8px !important;
    }
    
    .progress-main-stat-value {
        font-size: 24px !important;
    }
    
    .progress-main-stat-icon {
        width: 28px !important;
        height: 28px !important;
    }
    
    .progress-main-stat-icon svg {
        width: 14px !important;
        height: 14px !important;
    }
}

/* Mobile pequeno - 2 colunas compactas */
@media screen and (max-width: 540px) {
    .progress-main-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .progress-main-stat {
        aspect-ratio: auto !important;
        width: 100% !important;
        height: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 12px !important;
        gap: 6px !important;
    }
    
    .progress-main-stat-value {
        font-size: 20px !important;
    }
    
    .progress-main-stat-label {
        font-size: 11px !important;
    }
    
    .progress-main-stat-total {
        font-size: 10px !important;
    }
}

/* REGRA DESKTOP - aspect-ratio 1:1 apenas em telas grandes */
@media screen and (min-width: 769px) {
    .progress-main-stat,
    body.has-sidebar .progress-main-stat,
    .dashboard-container .progress-main-stat,
    .dashboard-main .progress-main-stat,
    .dashboard-tab-content .progress-main-stat,
    section .progress-main-stat,
    * .progress-main-stat {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
    }
}

/* Garantir aspect-ratio apenas em tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .progress-main-stat {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: auto !important;
    }
}


/* ===== MOBILE PROGRESS CARDS - COMPACTOS (PRIORIDADE MÁXIMA) ===== */
@media screen and (max-width: 768px) {
    .progress-main-stats,
    body.has-sidebar .progress-main-stats,
    .dashboard-container .progress-main-stats,
    * .progress-main-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .progress-main-stat,
    body.has-sidebar .progress-main-stat,
    .dashboard-container .progress-main-stat,
    .dashboard-main .progress-main-stat,
    .dashboard-tab-content .progress-main-stat,
    section .progress-main-stat,
    * .progress-main-stat {
        aspect-ratio: auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 16px !important;
        gap: 8px !important;
    }
    
    .progress-main-stat-value {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }
    
    .progress-main-stat-icon {
        width: 28px !important;
        height: 28px !important;
    }
    
    .progress-main-stat-icon svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    .progress-main-stat-label {
        font-size: 12px !important;
    }
    
    .progress-main-stat-total {
        font-size: 11px !important;
    }
    
    .progress-main-stat-bar {
        height: 4px !important;
        margin-top: 8px !important;
    }
}

@media screen and (max-width: 540px) {
    .progress-main-stats,
    body.has-sidebar .progress-main-stats,
    .dashboard-container .progress-main-stats,
    * .progress-main-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .progress-main-stat,
    body.has-sidebar .progress-main-stat,
    .dashboard-container .progress-main-stat,
    * .progress-main-stat {
        aspect-ratio: auto !important;
        padding: 12px !important;
        gap: 6px !important;
    }
    
    .progress-main-stat-value {
        font-size: 20px !important;
    }
    
    .progress-main-stat-label {
        font-size: 11px !important;
    }
    
    .progress-main-stat-total {
        font-size: 10px !important;
    }
}

/* ===== OVERRIDE FINAL - MOBILE PROGRESS CARDS COMPACTOS ===== */
@media screen and (max-width: 768px) {
    .progress-main-stat,
    .progress-main-stat:hover,
    body .progress-main-stat,
    body.has-sidebar .progress-main-stat,
    .dashboard-container .progress-main-stat,
    .dashboard-main .progress-main-stat,
    .dashboard-tab-content .progress-main-stat,
    section .progress-main-stat,
    div .progress-main-stat,
    * .progress-main-stat,
    body * .progress-main-stat,
    html body .progress-main-stat {
        aspect-ratio: unset !important;
        min-height: unset !important;
        max-height: unset !important;
        height: auto !important;
        padding: 10px !important;
        gap: 4px !important;
        border-radius: 10px !important;
    }
    
    .progress-main-stat-header {
        gap: 6px !important;
        margin-bottom: 4px !important;
    }
    
    .progress-main-stat-icon {
        width: 24px !important;
        height: 24px !important;
    }
    
    .progress-main-stat-icon svg {
        width: 12px !important;
        height: 12px !important;
    }
    
    .progress-main-stat-label {
        font-size: 10px !important;
    }
    
    .progress-main-stat-value {
        font-size: 20px !important;
        line-height: 1 !important;
        margin: 2px 0 !important;
    }
    
    .progress-main-stat-total {
        font-size: 9px !important;
        margin-bottom: 4px !important;
    }
    
    .progress-main-stat-bar {
        height: 3px !important;
        margin-top: 4px !important;
    }
}

@media screen and (max-width: 540px) {
    .progress-main-stat,
    .progress-main-stat:hover,
    body .progress-main-stat,
    body.has-sidebar .progress-main-stat,
    .dashboard-container .progress-main-stat,
    .dashboard-main .progress-main-stat,
    .dashboard-tab-content .progress-main-stat,
    section .progress-main-stat,
    div .progress-main-stat,
    * .progress-main-stat,
    body * .progress-main-stat,
    html body .progress-main-stat {
        aspect-ratio: unset !important;
        min-height: unset !important;
        max-height: unset !important;
        height: auto !important;
        padding: 8px !important;
        gap: 3px !important;
        border-radius: 8px !important;
    }
    
    .progress-main-stat-icon {
        width: 20px !important;
        height: 20px !important;
    }
    
    .progress-main-stat-icon svg {
        width: 10px !important;
        height: 10px !important;
    }
    
    .progress-main-stat-value {
        font-size: 18px !important;
    }
    
    .progress-main-stat-label {
        font-size: 9px !important;
    }
    
    .progress-main-stat-total {
        font-size: 8px !important;
    }
    
    .progress-main-stat-bar {
        height: 2px !important;
    }
}
