/* Reset e variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Dark Theme - Tony Robbins Style */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent-cyan: #0c3864;
    --accent-purple: #8b5cf6;
    
    /* Legacy colors (mantidos para compatibilidade) */
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --tertiary-black: #111111;
    --tech-blue: #ffffff;
    --tech-blue-dark: #ffffff;
    --tech-purple: #ffffff;
    --tech-green: #ffffff;
    --neural-blue: #ffffff;
    --white: #ffffff;
    --light-gray: #1a1a1a;
    --dark-gray: #333333;
    
    /* Espaçamento - Sistema Tony Robbins */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
    
    /* Tipografia - Inter/Poppins */
    --font-primary: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
    --font-legacy-primary: 'Orbitron', monospace;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;
    --font-size-6xl: 5rem;
    
    /* Bordas e Sombras */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.7);
    
    /* Legacy shadows (mantidos para compatibilidade) */
    --shadow-tech: 0 0 20px rgba(255, 255, 255, 0.3);
    --shadow-neural: 0 0 30px rgba(255, 255, 255, 0.4);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.8);
    
    /* Transições */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s ease;
    --glow-animation: glow 2s ease-in-out infinite alternate;
}

/* Keyframes for tech animations */
@keyframes glow {
    from { text-shadow: 0 0 20px var(--white); }
    to { text-shadow: 0 0 30px var(--white), 0 0 40px var(--white); }
}

/* ===== UTILITY CLASSES - TONY ROBBINS STYLE ===== */
/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

/* Grid Utilities */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Text Alignment */
.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

/* Spacing Utilities */
.m-0 { margin: 0; }
.m-xs { margin: var(--spacing-xs); }
.m-sm { margin: var(--spacing-sm); }
.m-md { margin: var(--spacing-md); }
.m-lg { margin: var(--spacing-lg); }
.m-xl { margin: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.p-0 { padding: 0; }
.p-xs { padding: var(--spacing-xs); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }

.pt-0 { padding-top: 0; }
.pt-xs { padding-top: var(--spacing-xs); }
.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }

.pb-0 { padding-bottom: 0; }
.pb-xs { padding-bottom: var(--spacing-xs); }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }

/* Border Radius Utilities */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow Utilities */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Width Utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }

/* Display Utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* ===== LOGIN PAGE STYLES ===== */
.login-section {
    min-height: calc(100vh - 80px);
    padding: 0;
    background: var(--primary-black);
    overflow: hidden;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
}

/* Left Side - Visual Area */
.login-visual-area {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    overflow: hidden;
}

.login-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
}

.login-visual-icon {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 2rem;
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.login-visual-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.login-visual-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-family: var(--font-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.login-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1.1rem;
}

.login-feature-item i {
    color: rgba(0, 255, 255, 0.8);
    font-size: 1.3rem;
}

.login-visual-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Right Side - Login Form */
.login-form-area {
    background: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.login-form-container {
    background: linear-gradient(135deg, var(--tertiary-black) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.login-container {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--tertiary-black) 100%);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), 0 0 100px rgba(255, 255, 255, 0.1);
}

.login-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-form-icon {
    font-size: 3.5rem;
    color: rgba(0, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.login-form-header h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.login-form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-icon {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.login-header h1 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.login-form {
    margin-top: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.login-form label i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.login-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.login-form .btn-login {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

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

.login-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: var(--font-secondary);
}

.login-footer i {
    margin-right: 0.5rem;
}

.error-message {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid rgba(244, 67, 54, 0.5);
    color: #ff5252;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    text-align: center;
}

.nav-user-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-user-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.nav-user-item a:hover {
    color: var(--white);
    opacity: 0.8;
}

#nav-logout {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    cursor: pointer;
}

#nav-logout:hover {
    color: #ff5252;
}

@media (max-width: 768px) {
    .login-wrapper {
        grid-template-columns: 1fr;
    }
    
    .login-visual-area {
        display: none;
    }
    
    .login-form-area {
        padding: 2rem 1rem;
    }
    
    .login-form-container {
        padding: 2.5rem 2rem;
        max-width: 100%;
    }
    
    .login-visual-title {
        font-size: 2rem;
    }
    
    .login-visual-subtitle {
        font-size: 1rem;
    }
    
    .login-form-header h2 {
        font-size: 1.5rem;
    }
    
    .login-form-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .login-container {
        padding: 2rem 1.5rem;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
}



@keyframes chat-glow-pulse {
    0% { 
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
                    0 0 10px rgba(255, 255, 255, 0.3),
                    0 0 15px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                    0 0 30px rgba(255, 255, 255, 0.6),
                    0 0 40px rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
    }
    100% { 
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
                    0 0 10px rgba(255, 255, 255, 0.3),
                    0 0 15px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
}

/* ===== SOFT PRICING PAGE STYLES ===== */
.impact-highlights-soft {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-item-soft {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.impact-item-soft:hover {
    background: rgba(255, 255, 255, 0.05);
}

.impact-item-soft i {
    font-size: 1.8rem;
    color: rgba(255, 107, 53, 0.7);
}

.impact-item-soft.success {
    background: rgba(76, 175, 80, 0.08);
}

.impact-item-soft.success i {
    color: rgba(76, 175, 80, 0.8);
}

.impact-arrow-soft {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.guarantee-badge-soft {
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: rgba(0, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.guarantee-badge-soft i {
    margin-right: 0.5rem;
    opacity: 0.8;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.impact-card-soft {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.impact-card-soft:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.impact-number-soft {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.4);
    color: rgba(0, 255, 255, 0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.impact-icon-soft {
    font-size: 2rem;
    color: rgba(0, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-align: center;
}

.impact-card-soft h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.impact-card-soft p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.cost-of-inaction-soft {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
}

.cost-of-inaction-soft h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: 600;
}

.cost-intro {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cost-grid-soft {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cost-item-soft {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cost-item-soft:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cost-item-soft i {
    font-size: 1.5rem;
    color: rgba(0, 255, 255, 0.6);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cost-item-soft p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.pricing-header-soft {
    text-align: center;
    margin-bottom: 3rem;
}

.value-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.comparison-item {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
}

.comparison-item i {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.comparison-item:first-child i {
    color: #ff5252;
}

.comparison-item.success i {
    color: #4caf50;
}

.comparison-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.comparison-arrow {
    font-size: 1.5rem;
    color: var(--white);
}

.package-value {
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    text-align: center;
}

.package-value p {
    margin: 0.4rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.savings-amount {
    color: #4caf50 !important;
    font-size: 1.1rem;
}

.savings-badge {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: rgba(76, 175, 80, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.75rem;
    display: inline-block;
}

.package-guarantee {
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
    color: rgba(0, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-primary-soft {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.4);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
}

.btn-primary-soft:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(0, 255, 255, 0.15));
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.2);
}

@keyframes pulse-button {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 69, 0, 0.7); }
}

.pricing-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.pricing-note i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

.popular-badge {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .impact-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .impact-arrow {
        transform: rotate(90deg);
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .value-comparison {
        flex-direction: column;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
    }
}





/* Base styles */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.01) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Tech grid pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Tony Robbins Style */
.header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    text-transform: none;
    letter-spacing: 0.3px;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
    border-radius: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a[target="_blank"]::after {
    content: ' ↗';
    font-size: 0.6rem;
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== TONY ROBBINS STYLE - NEW SECTIONS ===== */

/* Hero Section - Tony Robbins Style */
.hero-tony-robbins {
    position: relative;
    min-height: 100vh;
    background: #000000;
    background-image: url('Pictures/LucioTrindadeSite.png');
    background-size: 80%;
    background-position: left center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-tony-robbins::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 2;
}

.hero-text-content {
    position: absolute;
    bottom: 8.0%;
    left: 5%;
    z-index: 3;
}

.hero-headline-main {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: #0c3864;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 107, 168, 0.4);
    background: #347bc1;
}

.hero-deeus-card {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 300px;
    height: 200px;
    background-image: url('Pictures/DEEUS.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    z-index: 3;
}

.hero-deeus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.deeus-card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.deeus-label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.deeus-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

/* Services Section - Swiper Carousel */
.services-section {
    padding: var(--spacing-2xl) 0;
    background: #000000;
    position: relative;
}

.services-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.services-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.btn-services-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    background: #2c79c6;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-services-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 107, 168, 0.4);
    background: #347bc1;
}

.services-swiper {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    overflow: visible;
}

.services-swiper .swiper-wrapper {
    align-items: stretch;
}

.services-swiper .swiper-slide {
    height: auto;
    max-width: 300px;
    margin-right: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-swiper .swiper-slide:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
    position: relative;
}

.service-card-figure {
    margin: 0;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.service-card-link {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    z-index: 2;
}

.service-brand {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.service-card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.service-card-description {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

/* Swiper Navigation - Minimalista (escondido) */
.services-nav-next,
.services-nav-prev {
    display: none;
}

/* Swiper Pagination - Minimalista */
.services-pagination {
    position: relative;
    margin-top: var(--spacing-lg);
    text-align: center;
}

.services-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.services-pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.8);
    width: 8px;
    height: 8px;
}

/* Pricing Wall Section */
.pricing-wall {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
    text-align: center;
}

.pricing-wall h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.pricing-wall .section-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.pricing-wall-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-angled-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-primary);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

/* Features Section - Tony Robbins Style */
.features-tony {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.section-title-tony {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle-tony {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.features-grid-tony {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card-tony {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-fast);
    text-align: center;
}

.feature-card-tony:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    background: var(--bg-tertiary);
}

.feature-icon-tony {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-full);
    border: 2px solid rgba(0, 255, 255, 0.2);
}

.feature-icon-tony i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
}

.feature-card-tony h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-card-tony p {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section - Tony Robbins Style */
.cta-section-tony {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-tony::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.cta-content-tony {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-tony {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.cta-subtitle-tony {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.cta-buttons-tony {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta-primary {
    background: #0c3864;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(12, 56, 100, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 107, 168, 0.4);
    background: #347bc1;
    color: #ffffff;
}

.btn-cta-secondary {
    background: #ffffff;
    color: #010101;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #ffffff;
    color: #010101;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsividade - Tony Robbins Style */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: var(--font-size-4xl);
    }
    
    .hero-subheadline {
        font-size: var(--font-size-lg);
    }
    
    .section-title-tony {
        font-size: var(--font-size-3xl);
    }
    
    .cta-title-tony {
        font-size: var(--font-size-3xl);
    }
    
    .features-grid-tony {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-md);
    }
}

/* Responsividade - Hero Tony Robbins */
@media (max-width: 768px) {
    .hero-tony-robbins {
        min-height: 100vh;
    }
    
    .hero-text-content {
        bottom: 20%;
        left: 5%;
        right: 5%;
    }
    
    .hero-headline-main {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .btn-hero-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero-deeus-card {
        width: 250px;
        height: 160px;
        bottom: 3%;
        right: 3%;
    }
    
    .deeus-title {
        font-size: 1.5rem;
    }
    
    .services-header {
        padding: 0 var(--spacing-sm) var(--spacing-md);
    }
    
    .services-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .services-swiper .swiper-slide {
        max-width: 280px;
    }
    
    .service-card-link {
        height: 350px;
    }
    
    .service-card-content {
        padding: 1.5rem 1rem;
    }
    
    .service-card-title {
        font-size: 1.25rem;
    }
    
    .services-nav-next,
    .services-nav-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .services-swiper .swiper-slide {
        max-width: 250px;
    }
    
    .service-card-link {
        height: 300px;
    }
    
    .service-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: var(--font-size-2xl);
    }
    
    .hero-subheadline {
        font-size: var(--font-size-sm);
    }
    
    .section-title-tony {
        font-size: var(--font-size-xl);
    }
    
    .cta-title-tony {
        font-size: var(--font-size-xl);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
}

/* Hero Section - Legacy (mantido para compatibilidade) */
.hero {
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-black);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    transition: filter 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video video {
        display: none;
    }
    
    .hero {
        background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    position: relative;
    background: transparent;
}



.btn-primary {
    background: var(--white);
    color: var(--primary-black);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Lucio AI - Botão Principal com Cérebro */
.ana-brain-cta {
    position: relative;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(51, 51, 51, 0.8));
    border: 3px solid #ffffff;
    border-radius: 60px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: containerBlink 3s infinite;
}

.brain-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 4s infinite;
}

.brain-container::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 65px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.05), 
        rgba(255, 255, 255, 0.2));
    opacity: 0;
    animation: pulseGlow 3s infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0% { 
        opacity: 0;
        transform: scale(0.95);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
    100% { 
        opacity: 0;
        transform: scale(0.95);
    }
}

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

.brain-container:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.9));
}

.brain-container:hover .brain-icon {
    color: #000000;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(1.2);
}

.brain-container:hover .brain-text h3 {
    color: #000000;
}

.brain-container:hover .brain-text p {
    color: #333333;
}

.brain-icon {
    font-size: 2.2rem;
    color: #ffffff;
    animation: brainPulse 2s infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

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

@keyframes containerBlink {
    0% { 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                    0 0 0 0 rgba(255, 255, 255, 0.4);
        border-color: #ffffff;
    }
    50% { 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                    0 0 40px 15px rgba(255, 255, 255, 0.8),
                    0 0 80px 30px rgba(255, 255, 255, 0.4),
                    0 0 120px 40px rgba(255, 255, 255, 0.2);
        border-color: #ffffff;
    }
    100% { 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                    0 0 0 0 rgba(255, 255, 255, 0.4);
        border-color: #ffffff;
    }
}

.brain-text {
    position: relative;
    z-index: 2;
}

.brain-text h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.brain-text p {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    transition: all 0.3s ease;
}

.brain-container:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: transparent;
    position: relative;
}





.stat h3 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
    position: relative;
    z-index: 2;
}

/* Galeria Section */
.galeria {
    padding: 120px 0;
    background: var(--primary-black);
    color: var(--white);
}

.galeria h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: linear-gradient(135deg, rgba(0, 225, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    overflow: hidden;
}

#lucio-ai-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-info {
    text-align: center;
    padding: 2rem;
    color: var(--white);
}

.video-info i {
    font-size: 4rem;
    color: var(--cyan-accent);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.video-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.video-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.video-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    display: inline-block;
}

.video-info ul li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 2rem;
}

.video-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cyan-accent);
    font-weight: bold;
}

.play-video-btn {
    background: linear-gradient(135deg, var(--cyan-accent) 0%, rgba(0, 225, 255, 0.7) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-video-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 225, 255, 0.3);
}

.lucio-ai-description {
    margin-top: 4rem;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ai-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(0, 225, 255, 0.1);
    transition: all 0.3s ease;
}

.ai-feature:hover {
    background: rgba(0, 225, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 225, 255, 0.15);
}

.ai-feature i {
    font-size: 2.5rem;
    color: var(--cyan-accent);
    margin-bottom: 1rem;
}

.ai-feature h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.ai-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Removed old carousel styles - replaced with video player styles */

/* Sobre Section */
.sobre {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: none;
    position: relative;
    z-index: 1;
}

.highlight {
    color: #cccccc;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.sobre p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credential {
    position: relative;
    z-index: 1;
}

.credential i {
    color: var(--white);
    font-size: 1.2rem;
}

.credential p {
    color: var(--white);
}

.sobre-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: transparent;
    border-radius: 15px;
    padding: 2rem;
}

.lucio-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 15px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: block;
    margin: 0 auto;
    filter: contrast(1.05) brightness(1.05);
    background: #000000;
}

.lucio-photo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    filter: contrast(1.1) brightness(1.1);
}

/* Metodologia Section */
.metodologia {
    padding: 120px 0;
    background: #000000;
    color: var(--white);
}

.metodologia h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: none;
}

/* Calculadora de Impacto Financeiro */
.calculator-container {
    max-width: 800px;
    margin: 1rem auto 0;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.slider-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: none;
    letter-spacing: 0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .currency,
.input-wrapper .unit {
    position: absolute;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.input-wrapper .currency {
    left: 1rem;
}

.input-wrapper .unit {
    right: 1rem;
}

.input-wrapper input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.input-wrapper:has(.currency) input {
    padding-left: 2.5rem;
}

.input-wrapper:has(.unit) input {
    padding-right: 3rem;
}

.input-wrapper input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    font-weight: 400;
}

.input-wrapper input[type="number"]::-webkit-inner-spin-button,
.input-wrapper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Select Styles */
.select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.select-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.select-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
}

.select-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.select-input option {
    background: #1a1a1a;
    color: #ffffff;
}

.input-hint {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Slider Styles */
.slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0.5rem 0;
}

.slider-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #0c3864;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.slider-input::-webkit-slider-thumb:hover {
    background: #347bc1;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(12, 56, 100, 0.5);
}

.slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #0c3864;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.slider-input::-moz-range-thumb:hover {
    background: #347bc1;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(12, 56, 100, 0.5);
}

.slider-input:focus {
    background: rgba(255, 255, 255, 0.15);
}

.slider-input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(12, 56, 100, 0.2);
}

.slider-input:focus::-moz-range-thumb {
    box-shadow: 0 0 0 4px rgba(12, 56, 100, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.calculator-results .result-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.result-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.result-card.highlight {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.result-card.savings {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.result-label {
    font-family: var(--font-primary);
    font-size: 0.90rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.result-value {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.result-card.savings .result-value {
    color: #ffffff;
}

.calculator-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.btn-calculator-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    border: none;
    cursor: pointer;
}

.services-header .btn-calculator-cta {
    width: auto;
    max-width: none;
}

.btn-calculator-cta-primary {
    background: #0c3864;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(12, 56, 100, 0.3);
}

.btn-calculator-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 107, 168, 0.4);
    background: #347bc1;
    color: #ffffff;
}

.btn-calculator-cta-secondary {
    background: #ffffff;
    color: #010101;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-calculator-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #ffffff;
    color: #010101;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-calculator-cta i {
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .calculator-cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .btn-calculator-cta {
        width: auto;
        min-width: 250px;
    }
}

.calculator-cta {
    text-align: center;
}

.btn-calculator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    background: #0c3864;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-calculator:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 107, 168, 0.4);
    background: #347bc1;
}

@media (max-width: 768px) {
    .calculator-card {
        padding: 2rem 1.5rem;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-value {
        font-size: 1.5rem;
    }
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-weight: 400;
}

.metodologia-hero {
    text-align: center;
    margin: 3rem 0;
}

.deeus-image {
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
}

.deeus-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.metodologia-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.metodologia-card {
    background: var(--bg-secondary);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.metodologia-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-tertiary);
}

.card-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    transition: var(--transition);
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.metodologia-card:hover .card-icon {
    background: var(--cyan-accent);
    border-color: var(--cyan-accent);
}

.metodologia-card:hover .card-icon i {
    transform: scale(1.1);
}

.metodologia-card-content {
    flex: 1;
    text-align: left;
}

.metodologia-card h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: -0.3px;
    font-weight: 600;
}

.metodologia-card p {
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

/* Serviços Section */
.servicos {
    padding: 120px 0;
    background: var(--primary-black);
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.servicos h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: none;
    position: relative;
    z-index: 1;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.servico-card {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-tertiary);
}

.servico-card.featured {
    border-color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.servico-card h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: -0.3px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.servico-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.servico-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.servico-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.servico-card li {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.servico-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-top: 1.5rem;
    font-family: var(--font-primary);
    position: relative;
    z-index: 2;
}

/* Depoimentos Section */
.depoimentos {
    padding: 120px 0;
    background: #0c3864;
    color: var(--white);
}

.depoimentos h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: none;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.depoimento-card {
    background: #ffffff;
    color: #010101;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 0, 0, 0.2);
    background: #f8f8f8;
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.depoimento-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #010101;
    opacity: 0.9;
}

.author {
    color: #010101;
}

.author strong {
    color: var(--primary-gold);
}

.author span {
    display: block;
    font-size: 0.9rem;
    color: #010101;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Contato Section */
.contato {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.contato h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: none;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contato-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 600;
}

.contato-info .contact-item span {
    font-family: var(--font-primary);
    color: var(--white);
    font-size: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--white);
    font-size: 1.2rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.contato-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--primary-black);
    color: var(--white);
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.contato-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    background: #0c3864;
    color: #ffffff;
    border: 2px solid #0c3864;
    cursor: pointer;
    transition: var(--transition);
}

.contato-form .btn:hover {
    background: #347bc1;
    border-color: #347bc1;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 123, 193, 0.4);
}

.contato-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-primary);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    font-size: var(--font-size-lg);
}

.footer-section p {
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
}

/* Responsividade */
@media (min-width: 1400px) {
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-menu a {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }
    
    .nav-container {
        padding: 1rem 1rem;
    }
}

/* Prevenir scroll horizontal */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

/* Otimizações de Performance Mobile */
@media (max-width: 768px) {
    /* Reduzir animações em mobile para melhor performance */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Desabilitar animações complexas em mobile */
    .brain-container::before,
    .brain-container::after {
        animation: none;
    }
    
    /* Otimizar vídeo para mobile */
    .hero-video video {
        will-change: auto;
    }
    
    /* Melhorar renderização de fontes */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* Breakpoint Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.65rem;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        justify-content: flex-start;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        min-height: 44px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        width: 100%;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    
    /* Tipografia Responsiva */
    h1, .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }
    
    h2 {
        font-size: 1.6rem !important;
        line-height: 1.4;
    }
    
    h3 {
        font-size: 1.3rem !important;
        line-height: 1.4;
    }
    
    h4 {
        font-size: 1.1rem !important;
        line-height: 1.4;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .stat h3 {
        font-size: 2rem !important;
    }
    
    .stat p {
        font-size: 0.85rem;
    }
    
    .hero-video video {
        filter: grayscale(100%) contrast(1.1) brightness(0.6);
        object-fit: cover;
        object-position: center;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.65);
    }
    
    /* Espaçamentos Mobile */
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 60px 0 !important;
    }
    
    .sobre, .metodologia, .servicos, .depoimentos, .contato {
        padding: 60px 0 !important;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .metodologia-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .metodologia-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .metodologia-card-content {
        text-align: center;
    }
    
    .card-icon {
        margin-bottom: 1rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
        .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ana-brain-cta {
        margin-top: 2rem;
    }

    /* Touch Targets - Mínimo 44x44px */
    .btn, button, .btn-primary, .btn-secondary {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Brain Container Mobile */
    .ana-brain-cta {
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .brain-container {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        min-height: 60px;
    }

    .brain-icon {
        font-size: 1.8rem;
        min-width: 44px;
    }

    .brain-text h3 {
        font-size: 1.1rem;
    }

    .brain-text p {
        font-size: 0.9rem;
    }

    .servico-card.featured {
        transform: none;
    }
    
    /* Cards Mobile */
    .servico-card, .depoimento-card, .metodologia-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Formulários Mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 16px; /* Previne zoom no iOS */
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* Melhorar área de toque em selects */
    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 40px;
    }
    
    .contato-form {
        padding: 1.5rem;
    }
    
    /* Imagens Responsivas */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .lucio-photo {
        max-width: 100%;
    }
    
    .deeus-image {
        max-width: 100%;
    }
    
    /* Melhorar scroll suave */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Otimizar scroll em mobile */
    .chat-messages,
    .chat-body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

@media (max-width: 480px) {
    /* Mobile Pequeno - Otimizações Extras */
    .hero {
        padding: 70px 0 40px;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 1.4rem !important;
        line-height: 1.2;
        padding: 0 0.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .stat {
        padding: 0.5rem;
    }
    
    .stat h3 {
        font-size: 1.8rem !important;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
    
    .hero-video video {
        object-position: center;
        filter: grayscale(100%) contrast(1.1) brightness(0.5);
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.75);
    }
    
    .metodologia-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Brain Container Mobile Pequeno */
    .brain-container {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .brain-text h3 {
        font-size: 1rem;
    }
    
    /* Cards Mobile Pequeno */
    .servico-card, .depoimento-card {
        padding: 1.2rem;
    }
    
    /* Seções Mobile Pequeno */
    section {
        padding: 40px 0 !important;
    }
    
    .sobre, .metodologia, .servicos, .depoimentos, .contato {
        padding: 40px 0 !important;
    }
    
    /* Chat Widget Mobile Pequeno */
    .chat-window {
        width: calc(100vw - 20px);
        max-width: 100%;
        height: calc(100vh - 100px);
        max-height: 500px;
        bottom: 80px;
        right: 10px;
        left: 10px;
        border-radius: 15px;
    }
    
    .chat-tooltip {
        font-size: 12px;
        padding: 8px 12px;
        bottom: 65px;
        right: 10px;
        white-space: nowrap;
        text-align: center;
        max-width: calc(100vw - 100px);
    }
    
    /* Ajustes das mensagens no mobile */
    .chat-message {
        max-width: 85%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 16px;
    }
    
    .bot-message {
        margin-right: 15px;
    }
    
    .user-message {
        margin-left: 15px;
    }
    
    .bot-message::before,
    .user-message::before {
        border-width: 5px;
        margin-bottom: -5px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .lucio-photo {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 3/4;
        object-position: center top;
    }
    
    .deeus-image {
        max-width: 100%;
        width: 100%;
    }
    
    /* Chat Button Mobile */
    .chat-button {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Video responsive styles */
    .video-wrapper {
        padding-bottom: 75%; /* Adjust aspect ratio for mobile */
    }
    
    .video-info h3 {
        font-size: 1.5rem;
    }
    
    .video-info i {
        font-size: 3rem;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
    }
    
    .ai-feature {
        padding: 1.5rem;
    }

    .ana-brain-cta {
        margin-top: 1.5rem;
    }

    .brain-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .brain-icon {
        font-size: 1.8rem;
    }

    .brain-text h3 {
        font-size: 1.1rem;
    }

    .brain-text p {
        font-size: 0.9rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.metodologia-card:nth-child(1) { animation-delay: 0.1s; }
.metodologia-card:nth-child(2) { animation-delay: 0.2s; }
.metodologia-card:nth-child(3) { animation-delay: 0.3s; }
.metodologia-card:nth-child(4) { animation-delay: 0.4s; }
.metodologia-card:nth-child(5) { animation-delay: 0.5s; }
.metodologia-card:nth-child(6) { animation-delay: 0.6s; }

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    color: var(--primary-black);
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-secondary);
    border: 2px solid var(--primary-black);
    animation: tooltip-pulse 8s ease-in-out infinite;
}

.chat-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--white);
}

.chat-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes tooltip-pulse {
    0%, 10% { 
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }
    15%, 90% { 
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    100% { 
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
    }
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--primary-black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    border: 2px solid var(--white);
    animation: chat-glow-pulse 2s ease-in-out infinite;
    position: relative;
}

.chat-button:hover {
    animation: none;
    transform: scale(1.2);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 50px rgba(255, 255, 255, 0.8),
        0 0 70px rgba(255, 255, 255, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--white);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    display: none;
    flex-direction: column;
    border: 2px solid var(--primary-gold);
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: var(--primary-black);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-family: var(--font-primary);
    font-weight: 600;
}

.chat-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.close-chat,
.clear-history {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.3rem;
    border-radius: 4px;
}

.close-chat:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.clear-history:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    transform: scale(1.1);
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Chat Messages - Bubble Style */
.chat-message {
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    max-width: 85%;
    word-wrap: break-word;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.4;
}

/* Bot Messages - Ana */
.bot-message {
    background: var(--primary-black);
    color: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    margin-right: 40px;
}

.bot-message::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-bottom-color: var(--primary-black);
    border-left: 0;
    margin-bottom: -6px;
}

/* User Messages - Bubble Style */
.user-message {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e6b800 100%);
    color: var(--white);
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 6px;
    margin-left: 40px;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-message::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -6px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-bottom-color: var(--primary-gold);
    border-right: 0;
    margin-bottom: -6px;
}

.chat-footer {
    padding: 1rem;
    background: var(--white);
    border-radius: 0 0 15px 15px;
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid #eee;
}

.chat-footer input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-family: var(--font-secondary);
}

.chat-footer input:focus {
    border-color: var(--primary-gold);
}

.chat-footer button {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-footer button:hover {
    transform: scale(1.1);
}

/* Typing Indicator Styles */
.typing-indicator {
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.typing-dots {
    display: flex;
    gap: 3px;
    padding: 0;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Message Content Formatting */
.message-content {
    padding: 0;
    line-height: 1.5;
}

/* Garantir texto preto nas mensagens do usuário */
.user-message .message-content {
    color: #000000 !important;
    font-weight: 600 !important;
    text-shadow: none;
}

/* Formatação rica para mensagens da Ana */
.bot-message .message-content p {
    margin: 0 0 0.8rem 0;
}

.bot-message .message-content p:last-child {
    margin-bottom: 0;
}

.bot-message .message-content br {
    line-height: 1.8;
}

.bot-message .message-content strong {
    font-weight: 600;
    color: var(--primary-gold);
}

.bot-message .message-content em {
    font-style: italic;
    color: #ccc;
}

/* Listas nas mensagens */
.bot-message .message-content ul {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
}

.bot-message .message-content li {
    margin-bottom: 0.3rem;
    list-style-type: disc;
}

/* Links nas mensagens */
.bot-message .message-content a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.bot-message .message-content a:hover {
    color: #fff;
}

/* Destaques especiais */
.bot-message .message-content .highlight {
    background: rgba(212, 175, 55, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: var(--primary-gold);
    font-weight: 500;
}

/* Emojis maiores */
.message-content .emoji {
    font-size: 1.2em;
    vertical-align: middle;
}

/* Enhanced Chat Messages */
.chat-message {
    animation: slideIn 0.3s ease-out;
}

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

/* Loading state for chat input */
.chat-footer input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.chat-footer button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none !important;
}

/* Error message styling */
.error-message {
    background: #ffebee !important;
    color: #c62828 !important;
    border-left: 4px solid #c62828;
}

/* Success message styling */  
.success-message {
    background: #e8f5e8 !important;
    color: #2e7d32 !important;
    border-left: 4px solid #2e7d32;
}

/* Connection status indicator */
.connection-status {
    font-size: 0.75rem;
    text-align: center;
    padding: 0.25rem;
    color: #666;
}

.connection-status.connecting {
    color: #ff9800;
}

.connection-status.connected {
    color: #4caf50;
}

.connection-status.error {
    color: #f44336;
}

/* Destaque dourado para DEEUS - com especificidade maior */
.hero h1 .deeus-highlight,
.hero .deeus-highlight,
.deeus-highlight {
    color: #d4af37 !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(212, 175, 55, 0.3) !important;
    position: relative;
    display: inline-block;
    background: none !important;
}

.hero h1 .deeus-highlight::after,
.hero .deeus-highlight::after,
.deeus-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 20%, #d4af37 80%, transparent 100%);
    opacity: 0.6;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* ElevenLabs Widget - Página Principal */
elevenlabs-convai {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 10000 !important;
}

/* ===== DIAGNOSTIC PAGE STYLES ===== */
/* Dashboard-style variables for interview section */
.diagnostic-section {
    min-height: calc(100vh - 80px);
    padding-top: 90px;
    padding-bottom: 2rem;
    background: #0a0a0a;
    font-family: 'Inter', sans-serif;
    overflow-y: auto;
    box-sizing: border-box;
    margin-top: 0;
}

.diagnostic-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.diagnostic-screen {
    display: none;
    width: 100%;
    padding: 0;
    background: #0a0a0a;
}

.diagnostic-screen.active {
    display: block;
}

.diagnostic-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 2rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.diagnostic-header h1,
.diagnostic-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin: 0 0 0.25rem 0;
    color: #ffffff;
    text-transform: none;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.diagnostic-header .section-subtitle {
    font-size: 0.85rem;
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Bundle Selection */
.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bundle-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s;
    opacity: 0;
}

.bundle-card:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
    opacity: 1;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-tertiary);
}

.bundle-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.bundle-card h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: -0.3px;
    font-weight: 600;
}

.bundle-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    margin-bottom: 1rem;
}

.bundle-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--white);
    margin-top: 1rem;
}

/* Email Form */
.email-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.diagnostic-form {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--white);
}

.diagnostic-form .form-group {
    margin-bottom: 1.5rem;
}

.diagnostic-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.diagnostic-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

/* Progress Bar */
.progress-container {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.progress-text {
    text-align: center;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Question Screen */
.question-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--white);
}

.question-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.4;
    text-align: center;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.answer-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.answer-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.answer-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.answer-option input[type="radio"]:checked + .option-text {
    color: var(--white);
    font-weight: 600;
}

.answer-option:has(input[type="radio"]:checked) {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.option-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.question-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Results Screen */
.results-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--white);
    margin-bottom: 2rem;
}

.results-summary {
    color: var(--white);
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.results-header h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.results-date {
    opacity: 0.7;
    font-size: 0.9rem;
}

.deeus-profile {
    margin: 2rem 0;
}

.deeus-profile h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.deeus-scores {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.deeus-score-item {
    margin-bottom: 1rem;
}

.score-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.score-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.score-bar {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.8));
    border-radius: 15px;
    transition: width 0.5s ease;
}

.primary-type,
.secondary-type {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--white);
}

.primary-type h4,
.secondary-type h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.type-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    background: var(--white);
    color: var(--primary-black);
    font-weight: 700;
    margin-left: 0.5rem;
}

.type-description {
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.ai-insights {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.ai-insights h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.ai-insights h4 i {
    margin-right: 0.5rem;
    color: var(--white);
}

.insights-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Improved Insights Layout */
.insights-container {
    margin: 2rem 0;
    padding: 0;
}

.insights-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.insights-header-icon {
    font-size: 3rem;
    color: rgba(0, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.insights-header-text h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insights-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

.insights-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
}

.insight-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card-header i {
    font-size: 1.5rem;
    color: rgba(0, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
}

.insight-card-header h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin: 0;
    color: var(--white);
    font-weight: 600;
    flex: 1;
}

.insight-card-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

.insight-card-content p {
    margin-bottom: 1rem;
}

.insight-card-content ul,
.insight-card-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.insight-card-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.insight-card.insight-analysis {
    border-left: 4px solid rgba(59, 130, 246, 0.6);
}

.insight-card.insight-analysis .insight-card-header i {
    color: rgba(59, 130, 246, 0.8);
    background: rgba(59, 130, 246, 0.1);
}

.insight-card.insight-recommendations {
    border-left: 4px solid rgba(34, 197, 94, 0.6);
}

.insight-card.insight-recommendations .insight-card-header i {
    color: rgba(34, 197, 94, 0.8);
    background: rgba(34, 197, 94, 0.1);
}

.insight-card.insight-action {
    border-left: 4px solid rgba(168, 85, 247, 0.6);
}

.insight-card.insight-action .insight-card-header i {
    color: rgba(168, 85, 247, 0.8);
    background: rgba(168, 85, 247, 0.1);
}

.insight-card.insight-strengths {
    border-left: 4px solid rgba(251, 191, 36, 0.6);
}

.insight-card.insight-strengths .insight-card-header i {
    color: rgba(251, 191, 36, 0.8);
    background: rgba(251, 191, 36, 0.1);
}

.insight-card.insight-growth {
    border-left: 4px solid rgba(239, 68, 68, 0.6);
}

.insight-card.insight-growth .insight-card-header i {
    color: rgba(239, 68, 68, 0.8);
    background: rgba(239, 68, 68, 0.1);
}

.insight-card.insight-deeus {
    border-left: 4px solid rgba(0, 255, 255, 0.6);
}

.insight-card.insight-deeus .insight-card-header i {
    color: rgba(0, 255, 255, 0.8);
    background: rgba(0, 255, 255, 0.1);
}

.lucio-ai-insights-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .insights-header {
        flex-direction: column;
        text-align: center;
    }
    
    .insights-sections {
        grid-template-columns: 1fr;
    }
    
    .insight-card {
        padding: 1.2rem;
    }
}

.deeus-connection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.deeus-connection h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.deeus-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deeus-step {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    line-height: 1.6;
}

.deeus-step strong {
    color: var(--white);
    text-transform: uppercase;
    margin-right: 0.5rem;
}

.results-link {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.results-link p {
    margin-bottom: 1rem;
    font-weight: 500;
}

.link-container {
    display: flex;
    gap: 0.5rem;
}

.link-container input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
}

.btn-copy {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    color: var(--primary-black);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-copy:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.results-actions .btn {
    min-width: 200px;
}

/* Diagnostic Button in Hero */
.ana-brain-cta {
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.diagnostic-btn {
    margin-top: 0;
}

/* ===== MINIMALIST REDESIGN - NEW COMPONENTS ===== */

/* Mode Selection Screen */
#mode-selection-screen.diagnostic-screen {
    padding: 0;
}

.mode-selection-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

#mode-selection-screen .diagnostic-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 2rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    text-align: center;
}

.mode-selection-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.mode-selection-content h2 {
    display: none; /* Hidden because we use diagnostic-header h2 instead */
}

.mode-selection-subtitle {
    display: none; /* Hidden because we use section-subtitle instead */
}

.mode-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

.mode-option {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.mode-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00f2ea, #ff00ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mode-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 242, 234, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 242, 234, 0.1);
}

.mode-option:hover::before {
    opacity: 1;
}

.mode-option[data-mode="individual"] {
    border-left: 4px solid #00f2ea;
}

.mode-option[data-mode="individual"]:hover {
    border-left-color: #00f2ea;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 242, 234, 0.2);
}

.mode-option[data-mode="couple"] {
    border-left: 4px solid #ff00ff;
}

.mode-option[data-mode="couple"]:hover {
    border-left-color: #ff00ff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 255, 0.2);
}

.mode-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #00f2ea;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.mode-option[data-mode="couple"] .mode-icon {
    color: #ff00ff;
}

.mode-option:hover .mode-icon {
    background: rgba(0, 242, 234, 0.15);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 242, 234, 0.2);
}

.mode-option[data-mode="couple"]:hover .mode-icon {
    background: rgba(255, 0, 255, 0.15);
    box-shadow: 0 4px 12px rgba(255, 0, 255, 0.2);
}

.mode-option h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.mode-option > p {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: auto;
}

.mode-features li {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 2px solid transparent;
    color: #ffffff;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.mode-features li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(0, 242, 234, 0.5);
    transform: translateX(4px);
}

.mode-option[data-mode="couple"] .mode-features li:hover {
    border-left-color: rgba(255, 0, 255, 0.5);
}

.mode-features li i {
    color: #00f2ea;
    font-size: 0.875rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.mode-option[data-mode="couple"] .mode-features li i {
    color: #ff00ff;
}

/* Partner Indicator Card */
.partner-indicator-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.partner-indicator-card.partner1-active {
    border-color: rgba(75, 192, 192, 0.5);
    background: rgba(75, 192, 192, 0.05);
}

.partner-indicator-card.partner2-active {
    border-color: rgba(255, 99, 132, 0.5);
    background: rgba(255, 99, 132, 0.05);
}

.partner-indicator-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.partner-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.partner-avatar.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.partner-avatar i {
    font-size: 2rem;
    color: var(--white);
}

.partner-avatar .partner-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.partner-switch-indicator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
}

.current-partner-badge {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.current-partner-badge i {
    color: rgba(75, 192, 192, 1);
}

/* Module Checklist */
.module-checklist {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.checklist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.checklist-header h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    margin: 0;
}

.checklist-progress-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.checklist-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.checklist-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.checklist-item.completed {
    background: rgba(75, 192, 192, 0.2);
    border-color: rgba(75, 192, 192, 0.5);
}

.checklist-item.current {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.checklist-item i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.checklist-item.completed i {
    color: rgba(75, 192, 192, 1);
}

/* Minimalist Form Styles */
.interview-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.interview-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.interview-section-form .form-group {
    margin-bottom: 1.5rem;
}

.interview-section-form .radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.75rem;
}

.interview-section-form .radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.interview-section-form .radio-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 242, 234, 0.3);
}

.interview-section-form .radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #00f2ea;
}

.interview-section-form .radio-option input[type="radio"]:checked + label {
    color: #00f2ea;
    font-weight: 600;
}

.interview-section-form .radio-option:has(input[type="radio"]:checked) {
    background: rgba(0, 242, 234, 0.1);
    border-color: #00f2ea;
}

.interview-section-form .radio-option label {
    flex: 1;
    margin: 0;
    cursor: pointer;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.interview-section-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Interview Actions (Navigation Buttons) */
.interview-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 2rem 2rem;
    margin-top: 2rem;
}

.interview-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
}

.interview-actions .btn-primary {
    background: #ffffff;
    color: #000000;
}

.interview-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.interview-actions .btn-secondary {
    background: transparent;
    color: #a0a0a0;
    border: 1px solid #2a2a2a;
}

.interview-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.interview-section-form input,
.interview-section-form textarea,
.interview-section-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.interview-section-form input:focus,
.interview-section-form textarea:focus,
.interview-section-form select:focus {
    outline: none;
    border-color: #00f2ea;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 242, 234, 0.1);
}

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

.interview-section-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.required {
    color: #ff3b30;
    margin-left: 0.25rem;
}

/* Minimalist Module Cards */
.module-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.module-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.module-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.module-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.module-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.module-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Minimalist Progress Bars */
.global-progress-container {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.global-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.global-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00f2ea 0%, rgba(0, 242, 234, 0.8) 100%);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 242, 234, 0.5);
    position: relative;
}

.global-progress-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%); }
}

.global-progress-text {
    text-align: center;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
    flex-wrap: wrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.progress-steps::-webkit-scrollbar {
    display: none;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    position: relative;
    padding: 0.5rem 0.4rem;
    border-radius: 8px;
    flex: 1;
    min-width: 60px;
    max-width: 100px;
}

.progress-step:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

.progress-step.active {
    color: #00f2ea;
    font-weight: 600;
}

.progress-step.active i {
    color: #00f2ea;
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.5);
}

.progress-step i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.progress-step span {
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
    font-size: 0.7rem;
}

/* Responsive adjustments for many steps */
@media (max-width: 1200px) {
    .progress-step {
        font-size: 0.7rem;
        min-width: 50px;
        max-width: 80px;
        padding: 0.4rem 0.3rem;
    }
    
    .progress-step i {
        font-size: 0.9rem;
    }
    
    .progress-step span {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .progress-steps {
        gap: 0.3rem;
        padding-top: 0.3rem;
    }
    
    .progress-step {
        font-size: 0.65rem;
        min-width: 45px;
        max-width: 70px;
        padding: 0.3rem 0.2rem;
        gap: 0.3rem;
    }
    
    .progress-step i {
        font-size: 0.8rem;
    }
    
    .progress-step span {
        font-size: 0.6rem;
    }
}

.interview-progress {
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.interview-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    position: relative;
}

.interview-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00f2ea 0%, rgba(0, 242, 234, 0.8) 100%);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 242, 234, 0.5);
    position: relative;
}

.interview-progress-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;
}

.interview-progress-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-primary);
    letter-spacing: 0.3px;
}

/* Interview Content Container */
.interview-content {
    padding: 0;
    background: #0a0a0a;
}

/* Melhorias para navegação de volta na entrevista */
.interview-section {
    position: relative;
}

.interview-section-card {
    background: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2rem;
    margin: 0 2rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
}

.interview-section-card:hover {
    border-color: rgba(0, 242, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Sidebar de navegação da entrevista */
.interview-navigation {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    background: #111111;
    backdrop-filter: blur(10px);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.interview-navigation.show {
    display: block;
}

.interview-navigation h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #2a2a2a;
}

.interview-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #a0a0a0;
    border: 1px solid transparent;
}

.interview-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.interview-nav-item.active {
    background: rgba(0, 242, 234, 0.15);
    border-color: #00f2ea;
    color: #ffffff;
    font-weight: 600;
}

.interview-nav-item.completed .nav-status-icon {
    color: #10b981;
}

.interview-nav-item.pending .nav-status-icon {
    color: rgba(255, 255, 255, 0.4);
}

.nav-status-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.nav-section-number {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.nav-section-title {
    flex: 1;
    line-height: 1.4;
}

/* Botão para mostrar/ocultar navegação */
.interview-nav-toggle {
    position: fixed;
    left: 20px;
    top: 120px;
    width: 48px;
    height: 48px;
    background: #111111;
    backdrop-filter: blur(10px);
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.interview-nav-toggle:hover {
    background: #161616;
    border-color: #00f2ea;
    transform: scale(1.1);
}

/* Menu de ferramentas flutuante */
.tools-navigation-menu {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 280px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 999;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.tools-navigation-menu.show {
    display: block;
}

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

.tools-nav-header h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.tools-nav-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.tools-nav-close:hover {
    color: var(--white);
}

.tools-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid transparent;
}

.tools-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
}

.tools-nav-item.active {
    background: rgba(0, 242, 234, 0.15);
    border-color: var(--accent-cyan);
    color: var(--white);
    font-weight: 600;
}

.tools-nav-item.completed .tool-status-icon {
    color: #10b981;
}

.tools-nav-item.pending .tool-status-icon {
    color: rgba(255, 255, 255, 0.4);
}

.tool-status-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.tool-name {
    flex: 1;
    line-height: 1.4;
}

/* Botão flutuante para menu de ferramentas */
.floating-menu-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-cyan), rgba(139, 92, 246, 0.8));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-menu-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 242, 234, 0.4);
}

.floating-menu-btn.active {
    background: var(--accent-purple);
}

/* Botão voltar para entrevista */
.back-to-interview-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    z-index: 997;
    display: none;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-interview-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--accent-cyan);
    transform: translateX(-2px);
}

.back-to-interview-btn.show {
    display: flex;
}

/* Indicador de salvamento */
.save-indicator {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--white);
    z-index: 1000;
    display: none;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.save-indicator.show {
    display: flex;
}

.save-indicator.saving {
    color: var(--accent-cyan);
}

.save-indicator.saved {
    color: #10b981;
}

/* Responsividade */
@media (max-width: 1024px) {
    .interview-navigation {
        left: 10px;
        width: 220px;
    }
    
    .tools-navigation-menu {
        right: 10px;
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    .interview-navigation {
        width: calc(100% - 20px);
        left: 10px;
        top: 100px;
        transform: none;
        max-height: calc(100vh - 120px);
    }
    
    .interview-nav-toggle {
        left: 10px;
        top: 80px;
    }
    
    .floating-menu-btn {
        bottom: 80px;
    }
    
    .back-to-interview-btn {
        top: 10px;
        left: 10px;
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Minimalist Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

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

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

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

/* Values Method Styles */
.values-method-container {
    max-width: 700px;
    margin: 0 auto;
}

.values-instruction {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

.values-progress {
    margin-bottom: 2rem;
}

.values-progress p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.progress-bar-small {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill-small {
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.values-input-section {
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    gap: 0.75rem;
}

.values-input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
}

.values-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.values-items-list {
    margin-bottom: 2rem;
    min-height: 200px;
}

.values-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    position: relative;
    transition: all 0.2s ease;
}

.values-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.item-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.item-priority-badge {
    background: linear-gradient(135deg, rgba(75, 192, 192, 0.2), rgba(75, 192, 192, 0.1));
    border: 1px solid rgba(75, 192, 192, 0.4);
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(75, 192, 192, 1);
    white-space: nowrap;
}

.item-order-controls {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.move-up-btn,
.move-down-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    width: 32px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.move-up-btn:hover:not(:disabled),
.move-down-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.move-up-btn:disabled,
.move-down-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.item-text {
    color: var(--white);
    font-size: 1rem;
    flex: 1;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.remove-item-btn:hover {
    color: rgba(255, 99, 132, 0.8);
    background: rgba(255, 99, 132, 0.1);
}

.item-reason {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    margin-top: 0.5rem;
}

.item-reason strong {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.item-reason {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.item-details {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.item-feeling {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    margin-top: 0.5rem;
}

.item-feeling strong {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.item-feeling {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.item-inputs {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.item-reason-input,
.item-feeling-input {
    margin-bottom: 1rem;
}

.item-reason-input label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.reason-textarea,
.feeling-textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-secondary);
    resize: vertical;
    min-height: 80px;
    margin-bottom: 0.5rem;
}

.reason-textarea:focus,
.feeling-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.item-feeling-input label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.save-reason-btn,
.save-item-details-btn {
    padding: 0.5rem 1rem;
    background: rgba(75, 192, 192, 0.2);
    border: 1px solid rgba(75, 192, 192, 0.4);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.save-reason-btn:hover,
.save-item-details-btn:hover {
    background: rgba(75, 192, 192, 0.3);
    border-color: rgba(75, 192, 192, 0.6);
}

.empty-state {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem 1rem;
    font-style: italic;
}

.values-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Values Method Results Styles */
.value-item-header {
    margin-bottom: 0.75rem;
}

.value-item-header strong {
    color: rgba(75, 192, 192, 1);
    font-size: 1rem;
}

.value-feeling {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.value-feeling em {
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    font-weight: 600;
}

/* Module Question Container */
.module-question-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.module-question-text {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--white);
    margin: 2rem 0;
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
}

.answer-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.answer-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.answer-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.answer-option input[type="radio"] {
    margin-right: 1rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: rgba(75, 192, 192, 0.8);
}

.answer-option:has(input[type="radio"]:checked) {
    background: rgba(75, 192, 192, 0.1);
    border-color: rgba(75, 192, 192, 0.4);
}

.question-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

/* Results Styles - Minimalist */
.module-results-container {
    max-width: 900px;
    margin: 0 auto;
}

.results-visual {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.results-visual h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.results-textual {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.partner-profile {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-profile:last-child {
    border-bottom: none;
}

.partner-profile h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Responsive - Diagnostic Page */
@media (max-width: 768px) {
    .diagnostic-section {
        padding: 80px 0 40px;
    }
    
    .diagnostic-header h1,
    .diagnostic-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .diagnostic-header .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .bundle-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .bundle-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .bundle-icon {
        font-size: 2.5rem;
    }
    
    .bundle-card h3 {
        font-size: 1.1rem;
    }
    
    .bundle-card p {
        font-size: 0.9rem;
    }
    
    .email-form-container {
        padding: 0 1rem;
    }
    
    .diagnostic-form {
        padding: 1.5rem;
    }
    
    .diagnostic-form input {
        min-height: 44px;
        font-size: 16px; /* Previne zoom no iOS */
    }
    
    .question-container {
        padding: 1.5rem 1rem;
    }
    
    .question-text {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .answer-option {
        padding: 1rem;
        min-height: 44px;
    }
    
    .answer-option input[type="radio"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
    
    .option-text {
        font-size: 0.95rem;
    }
    
    .question-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .question-actions .btn {
        width: 100%;
        min-height: 44px;
    }
    
    .progress-container {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .results-content {
        padding: 1.5rem 1rem;
    }
    
    .results-header h3 {
        font-size: 1.5rem;
    }
    
    .deeus-score-item {
        margin-bottom: 1.5rem;
    }
    
    .score-bar {
        height: 25px;
    }
    
    .primary-type, .secondary-type {
        padding: 1.2rem;
    }
    
    .primary-type h4, .secondary-type h4 {
        font-size: 1.1rem;
    }
    
    .ai-insights {
        padding: 1.2rem;
    }
    
    .ai-insights h4 {
        font-size: 1.1rem;
    }
    
    .deeus-connection {
        padding: 1.2rem;
    }
    
    .results-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .results-actions .btn {
        width: 100%;
        min-height: 44px;
    }
    
    .link-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .link-container input {
        min-height: 44px;
        font-size: 16px;
    }
    
    .btn-copy {
        min-height: 44px;
        width: 100%;
    }
    
    .welcome-content {
        padding: 2rem 1rem;
    }
    
    .welcome-icon {
        font-size: 4rem;
    }
    
    .welcome-subtitle {
        font-size: 1.1rem;
    }
    
    .welcome-description {
        padding: 1.5rem;
    }
    
    .deeus-pillars-list li {
        font-size: 1rem;
        padding: 0.6rem 0;
    }
    
    .btn-start-diagnostic {
        width: 100%;
        min-height: 44px;
        padding: 1rem 2rem;
    }
    
    .ana-brain-cta {
        flex-direction: column;
    }
    
    .diagnostic-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .diagnostic-header h1,
    .diagnostic-header h2 {
        font-size: 1.4rem;
    }
    
    .bundle-card {
        padding: 1.2rem;
    }
    
    .bundle-icon {
        font-size: 2rem;
    }
    
    .question-container {
        padding: 1.2rem 0.75rem;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .answer-option {
        padding: 0.85rem;
    }
    
    .results-content {
        padding: 1.2rem 0.75rem;
    }
    
    .results-header h3 {
        font-size: 1.3rem;
    }
}

/* ===== WELCOME SCREEN STYLES ===== */
#welcome-screen.diagnostic-screen {
    padding: 0;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 1.5rem 2rem;
    text-align: center;
}

#welcome-screen .welcome-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
}

.welcome-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 16px;
    border: 1px solid rgba(0, 242, 234, 0.3);
    font-size: 2.25rem;
    color: #00f2ea;
    animation: pulse 2s ease-in-out infinite;
}

.welcome-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.welcome-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #a0a0a0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.welcome-description {
    text-align: left;
    background: #161616;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid #2a2a2a;
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
}

.welcome-description > p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.deeus-pillars-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    display: grid;
    gap: 0.625rem;
}

.deeus-pillars-list li {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #00f2ea;
    border-radius: 8px;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.deeus-pillars-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #ff00ff;
    transform: translateX(4px);
}

.deeus-pillars-list li i {
    color: #00f2ea;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.deeus-pillars-list strong {
    color: #ffffff;
    font-weight: 600;
    margin-right: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.deeus-pillars-list li {
    color: #a0a0a0;
}

.welcome-time {
    margin-top: 1.25rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(0, 242, 234, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.welcome-time i {
    color: #00f2ea;
    font-size: 0.9rem;
}

.welcome-benefit {
    margin-top: 1.25rem;
    padding: 1.125rem 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.btn-start-diagnostic {
    margin-top: 2rem;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.btn-start-diagnostic:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-start-diagnostic i {
    margin-left: 0;
    transition: transform 0.3s ease;
}

.btn-start-diagnostic:hover i {
    transform: translateX(4px);
}

/* ===== MOTIVATIONAL MESSAGE STYLES ===== */
.motivational-message {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    animation: slideInDown 0.5s ease-out;
    display: none;
}

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

/* ===== CELEBRATION ANIMATION STYLES ===== */
.celebration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease-out;
}

.celebration-overlay.fade-out {
    animation: fadeOut 0.5s ease-out;
}

.celebration-content {
    text-align: center;
    color: var(--white);
}

.celebration-icon {
    font-size: 6rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out infinite;
}

.celebration-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.celebration-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}


.profile-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* ===== PRICING PAGE STYLES ===== */
.slogan-badge {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.slogan-badge i.fa-quote-left {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 1.5rem;
    color: rgba(0, 255, 255, 0.6);
}

.slogan-badge i.fa-quote-right {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-size: 1.5rem;
    color: rgba(0, 255, 255, 0.6);
}

.slogan-text {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    padding: 0 3rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 768px) {
    .slogan-text {
        font-size: 1.1rem;
        padding: 0 2rem;
    }
    
    .slogan-badge {
        padding: 1.2rem;
    }
}

.pricing-hero {
    min-height: 70vh;
    padding: 120px 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero-content-pricing {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title-pricing {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-transform: none;
    letter-spacing: -0.5px;
    line-height: 1.2;
    font-weight: 700;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle-pricing {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-size: 0.9rem;
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--white);
}

/* Value Proposition Section */
.value-proposition {
    padding: 50px 0;
    background: var(--primary-black);
}

.section-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-3xl);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    text-transform: none;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.scientific-backing {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--white);
}

.scientific-backing p {
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.scientific-backing i {
    font-size: 1.5rem;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: var(--secondary-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-card .stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

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

.stat-item h3 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Pricing Packages Section */
.pricing-packages {
    padding: 50px 0;
    background: var(--primary-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    background: var(--bg-tertiary);
}

.featured-package {
    border: 2px solid rgba(0, 255, 255, 0.3);
    background: rgba(0, 255, 255, 0.05);
}

.featured-package:hover {
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-3px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-black);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header-compact {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header-compact h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.3px;
}

.price-tag-compact {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-tag-compact .currency {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.price-tag-compact .amount {
    font-family: var(--font-primary);
    font-size: var(--font-size-4xl);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1;
}

.price-note-compact {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
}

.value-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.package-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2rem;
}

.package-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.6;
}

.package-features li i {
    color: var(--white);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.package-features-compact {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-grow: 1;
}

.package-features-compact li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.4;
}

.package-features-compact li i {
    color: rgba(0, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.package-footer-compact {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.savings-info {
    text-align: center;
    margin-bottom: 0.75rem;
}

.savings-text {
    font-size: 0.85rem;
    color: rgba(76, 175, 80, 0.9);
    font-weight: 600;
}

.btn-purchase {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.btn-purchase:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

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

.featured-package .btn-purchase {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.3);
    color: var(--white);
}

.guarantee-badge {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1rem;
}

.guarantee-badge i {
    font-size: 1.5rem;
    color: #10B981;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--secondary-black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-question i {
    color: var(--white);
    font-size: 1.3rem;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-size: 1rem;
}

.badge-item i {
    font-size: 1.3rem;
    color: #10B981;
}

.btn-cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-black);
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-spinner {
    text-align: center;
    color: var(--white);
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

.loading-spinner p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* Package Notice */
.package-notice {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.package-notice p {
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0;
}

.package-notice i {
    font-size: 1.2rem;
}

.premium-notice {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10B981;
}

.premium-notice i {
    color: #10B981;
}

/* Responsive Pricing Page */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content-pricing {
        padding: 0 1rem;
    }
    
    .hero-title-pricing {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-pricing {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
    
    .value-proposition {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .scientific-backing {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .social-proof {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .pricing-packages {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .package-header h3 {
        font-size: 1.5rem;
    }
    
    .price-tag .amount {
        font-size: 3rem;
    }
    
    .package-features li {
        padding: 0.7rem 0;
        font-size: 0.95rem;
    }
    
    .btn-purchase {
        min-height: 44px;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .featured-package {
        transform: scale(1);
    }
    
    .featured-package:hover {
        transform: translateY(-10px);
    }
    
    .guarantee-badge {
        padding: 1.2rem;
        margin: 0 1rem;
        font-size: 0.9rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .faq-item {
        padding: 1.2rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .badge-item {
        font-size: 0.9rem;
    }
    
    .btn-cta-primary {
        width: 100%;
        min-height: 44px;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title-pricing {
        font-size: 1.5rem;
    }
    
    .hero-subtitle-pricing {
        font-size: 0.95rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1.2rem;
    }
    
    .package-header h3 {
        font-size: 1.3rem;
    }
    
    .price-tag .amount {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* Module Selection Styles */
.module-selection-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.module-selection-option {
    background: var(--tertiary-black);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.module-selection-option:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.module-selection-option.selected {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.selection-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selection-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.selection-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.selection-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.selection-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.selection-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.selection-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.selection-features li:last-child {
    border-bottom: none;
}

.selection-features li i {
    color: var(--white);
    font-size: 0.9rem;
}

.individual-modules-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modules-section-title {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 500;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.module-selection-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    user-select: none;
    box-shadow: var(--shadow-md);
}

.module-selection-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-tertiary);
}

.module-selection-card.selected {
    border-color: var(--accent-cyan);
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.module-checkbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.module-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.module-checkbox label {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.module-checkbox label:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.module-checkbox input[type="checkbox"]:checked + label {
    background: rgba(75, 192, 192, 0.8);
    border-color: rgba(75, 192, 192, 1);
    box-shadow: 0 0 10px rgba(75, 192, 192, 0.5);
}

.module-checkbox input[type="checkbox"]:checked + label::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.module-selection-card .module-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Module Pricing Cards (Individual Modules Section) */
.module-pricing-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-fast);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.module-pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-tertiary);
    box-shadow: var(--shadow-xl);
}

.module-pricing-card .module-icon {
    font-size: 2rem;
    color: rgba(0, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.module-pricing-card h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    line-height: 1.3;
}

.module-pricing-card .module-price {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    color: var(--text-primary);
    font-weight: 700;
    margin: var(--spacing-sm) 0;
    line-height: 1;
}

.module-pricing-card .module-desc {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    font-family: var(--font-primary);
    line-height: 1.5;
}

.module-pricing-card .btn-module-purchase {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.module-pricing-card .btn-module-purchase:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.module-selection-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Life Scanner Pricing Section */
.life-scanner-pricing {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--tertiary-black) 100%);
    margin-top: 2rem;
}

.life-scanner-pricing .pricing-header-soft {
    text-align: center;
    margin-bottom: 2.5rem;
}

.life-scanner-pricing .individual-modules-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.life-scanner-pricing .modules-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.life-scanner-pricing .module-pricing-card {
    min-height: 220px;
}

.life-scanner-pricing .individual-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid rgba(0, 255, 255, 0.3);
}

.life-scanner-pricing .individual-note i {
    color: rgba(0, 255, 255, 0.7);
    margin-right: 0.5rem;
}

/* Financial Calculator Styles */
.financial-calculator-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--tertiary-black) 0%, var(--secondary-black) 100%);
    margin: 2rem 0;
}

.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.calculator-input-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.calculator-input-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.calculator-input-group label i {
    color: rgba(0, 255, 255, 0.8);
    font-size: 1.1rem;
}

.calculator-input-group input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calculator-input-group input:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.input-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}

.calculator-results .result-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .calculator-results {
        grid-template-columns: 1fr;
    }
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    transition: all 0.3s ease;
    text-align: left;
}

.calculator-results .result-card .result-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
}

.calculator-results .result-card .result-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
}

.result-card .result-hint {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin-top: 0.2rem;
    line-height: 1.3;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
}

.result-card.featured {
    border: 2px solid rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.05);
}

.result-icon {
    font-size: 2.5rem;
    color: rgba(0, 255, 255, 0.8);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.result-card.monthly .result-icon {
    color: rgba(239, 68, 68, 0.8);
    background: rgba(239, 68, 68, 0.1);
}

.result-card.yearly .result-icon {
    color: rgba(251, 191, 36, 0.8);
    background: rgba(251, 191, 36, 0.1);
}

.result-card.deeus .result-icon {
    color: rgba(34, 197, 94, 0.8);
    background: rgba(34, 197, 94, 0.1);
}

.result-card.savings .result-icon {
    color: rgba(0, 255, 255, 0.8);
    background: rgba(0, 255, 255, 0.1);
}

.result-content {
    flex: 1;
}

.result-content h4 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    font-family: var(--font-primary);
}

.result-value.savings-value {
    color: rgba(0, 255, 255, 1);
    font-size: 2rem;
}

.result-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.25rem 0 0 0;
}

.calculator-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    min-height: 300px;
}

.calculator-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
}

.calculator-message {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.calculator-message strong {
    color: rgba(0, 255, 255, 1);
    font-weight: 700;
}

@media (max-width: 768px) {
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .result-card {
        flex-direction: column;
        text-align: center;
    }
}

.module-selection-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ===== DASHBOARD STYLES - COMPACTO E ORGANIZADO ===== */

/* Interview Banner (Discreto) */
.interview-banner {
    background: rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding: 0.75rem 0;
    margin-top: 80px;
}

.interview-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.interview-banner-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 14px;
    flex-shrink: 0;
}

.interview-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.interview-banner-text strong {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.interview-banner-text span {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.interview-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.interview-banner-btn:hover {
    background: rgba(0, 255, 255, 0.9);
    transform: translateY(-1px);
}

.interview-banner-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.interview-banner-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Dashboard Header Compacto */
.dashboard-header-compact {
    padding: 2rem 0 1.5rem;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.dashboard-title-section {
    flex: 1;
}

.dashboard-title-compact {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.5px;
}

.dashboard-subtitle-compact {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.dashboard-user-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar-compact {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-black);
    flex-shrink: 0;
}

.user-info-compact {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.user-name-compact {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.user-email-compact {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

.btn-logout-compact {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.btn-logout-compact:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.dashboard-stats-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item-compact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number-compact {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label-compact {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

.dashboard-section {
    padding: 3rem 0;
    background: var(--primary-black);
    position: relative;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.section-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.section-title-compact {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-transform: none;
    position: relative;
    z-index: 1;
}

.section-subtitle-compact {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 1;
}

.btn-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-primary-compact {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
}

.btn-primary-compact:hover {
    background: rgba(0, 255, 255, 0.9);
    transform: translateY(-1px);
}

/* Tabs */
.checkups-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
}

.tab-btn i {
    font-size: 0.875rem;
}

.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.tab-btn.active .tab-badge {
    background: rgba(0, 255, 255, 0.2);
    color: var(--accent-cyan);
}

.tab-content {
    display: none;
}

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

/* Check-ups Grid */
.checkups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

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

.checkup-card {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.checkup-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-tertiary);
}

.checkup-card.in-progress {
    border-left: 4px solid #fbbf24;
}

.checkup-card.completed {
    border-left: 4px solid #22c55e;
}

.checkup-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkup-status,
.checkup-mode {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: var(--font-primary);
}

.checkup-status i {
    color: #fbbf24;
}

.checkup-card.completed .checkup-status i {
    color: #22c55e;
}

.checkup-mode i {
    color: var(--accent-cyan);
}

.checkup-card-body {
    flex: 1;
}

.checkup-card-body h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: -0.2px;
    font-weight: 600;
    line-height: 1.3;
}

.checkup-date,
.checkup-last-saved {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    margin: 0.375rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
}

.progress-section {
    margin: 1.5rem 0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-family: var(--font-primary);
}

.progress-percent {
    font-weight: 600;
    color: var(--accent-cyan);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--accent-cyan);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-detail {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    font-family: var(--font-primary);
}

.completed-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #22c55e;
    margin: 1rem 0;
    font-family: var(--font-primary);
}

.completed-badge i {
    font-size: 1.5rem;
}

.checkup-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkup-card-actions .btn-hero {
    flex: 1;
    justify-content: center;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

.empty-state,
.loading-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.empty-state i,
.loading-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.empty-state p,
.loading-state p {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    margin: 0;
    color: var(--text-secondary);
}

.empty-state-subtitle {
    font-size: var(--font-size-sm);
    margin-top: 0.5rem;
    opacity: 0.7;
}

.actions-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.action-card-simple {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.action-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-tertiary);
}

.action-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    transition: var(--transition-fast);
}

.action-card-simple:hover .action-icon {
    background: var(--cyan-accent);
    border-color: var(--cyan-accent);
}

.action-card-simple h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: -0.3px;
    font-weight: 600;
}

.action-card-simple p {
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Available Modules Section */
.modules-available-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.module-available-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.module-available-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.6) 0%, rgba(255, 0, 255, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-available-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2), 0 0 40px rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
}

.module-available-card:hover::before {
    opacity: 1;
}

.module-available-card.purchased {
    border-left: 4px solid rgba(34, 197, 94, 0.8);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.module-available-card.purchased::before {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.8) 0%, rgba(0, 255, 255, 0.6) 100%);
}

.module-available-card.available {
    border-left: 4px solid rgba(251, 191, 36, 0.8);
}

.module-available-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.module-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon {
    font-size: 3rem;
    color: rgba(0, 255, 255, 0.9);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 16px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.module-available-card:hover .module-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.purchased-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    color: rgba(34, 197, 94, 1);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.2);
}

.purchased-badge i {
    font-size: 1rem;
}

.purchased-badge span {
    font-family: var(--font-secondary);
}

.price-badge {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 2px solid rgba(251, 191, 36, 0.5);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    color: rgba(251, 191, 36, 1);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.2);
}

.price-currency {
    font-size: 0.75rem;
    opacity: 0.8;
}

.price-value {
    font-size: 1.1rem;
}

.module-available-body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.module-available-body h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin: 0 0 0.75rem 0;
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

.module-available-body p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-secondary);
}

.module-available-actions {
    margin-top: auto;
}

.module-available-actions .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.module-available-actions .btn-primary {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 255, 255, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.5);
    color: rgba(0, 255, 255, 1);
}

.module-available-actions .btn-primary:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3) 0%, rgba(0, 255, 255, 0.2) 100%);
    border-color: rgba(0, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.module-available-actions .btn-secondary {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 2px solid rgba(251, 191, 36, 0.5);
    color: rgba(251, 191, 36, 1);
}

.module-available-actions .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(251, 191, 36, 0.2) 100%);
    border-color: rgba(251, 191, 36, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.package-badge {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: rgba(0, 255, 255, 1);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.report-card {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-tertiary);
}

.report-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.report-card-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.report-card-date {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-family: var(--font-primary);
}

.report-card-body {
    margin-bottom: var(--spacing-md);
}

.report-card-preview {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--spacing-sm) 0;
    font-family: var(--font-primary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.report-card-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.report-card-actions .btn-hero {
    flex: 1;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

.report-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-primary);
}

.report-badge.available {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.report-badge.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

.modal-large {
    max-width: 900px;
}

.modal-medium {
    max-width: 700px;
}

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

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

.modal-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.3px;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.modal-body {
    padding: var(--spacing-lg);
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-end;
}

.modal-footer .btn-hero {
    min-width: 160px;
}

/* Upsell Styles */
.upsell-content {
    padding: var(--spacing-sm) 0;
}

.upsell-intro {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 var(--spacing-xl) 0;
    font-family: var(--font-primary);
    text-align: center;
}

.upsell-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.upsell-option {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.upsell-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-tertiary);
}

.upsell-option-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.upsell-option-header h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.3px;
}

.upsell-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.upsell-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.upsell-features li:last-child {
    border-bottom: none;
}

.upsell-features li i {
    color: var(--white);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.upsell-cta {
    width: 100%;
    margin-top: var(--spacing-md);
}

/* Report Content Styles */
.report-content {
    color: var(--text-primary);
}

.report-section {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.report-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.report-section h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    margin: 0 0 var(--spacing-md) 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.report-section h3 i {
    color: var(--accent-cyan);
}

.deeus-scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.deeus-score-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.score-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-value {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--accent-cyan);
    font-family: var(--font-primary);
}

.insight-content {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--text-secondary);
    font-family: var(--font-primary);
}

.insight-content p {
    margin: 0 0 var(--spacing-md) 0;
}

.insight-content p:last-child {
    margin-bottom: 0;
}

/* Checkup Card Enhancements */
.insights-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--accent-cyan);
    margin: 1rem 0;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
}

.insights-badge i {
    font-size: 1.2rem;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .interview-banner-content {
        flex-wrap: wrap;
    }
    
    .interview-banner-btn {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-header-compact {
        padding: 1.5rem 0 1rem;
    }
    
    .dashboard-header-top {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dashboard-stats-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-section {
        padding: 2rem 0;
    }
    
    .section-title-compact {
        font-size: 1.25rem;
    }
    
    .section-header-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .checkups-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .checkups-grid,
    .reports-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        max-width: 100%;
        margin: 10px;
    }
    
    .upsell-options {
        grid-template-columns: 1fr;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn-hero {
        width: 100%;
    }
}

.individual-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.individual-note i {
    color: var(--white);
}

.module-selection-actions {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.module-selection-actions .btn {
    min-width: 280px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.module-selection-actions .btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.module-selection-actions .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Premium Results Styles */
.premium-results {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.results-header-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.results-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.charts-section-premium {
    margin-bottom: 3rem;
}

.chart-container-premium {
    background: var(--tertiary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.chart-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.chart-wrapper-premium {
    position: relative;
    height: 400px;
}

.bar-charts-container {
    margin-top: 2rem;
}

.bar-charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.bar-chart-card {
    background: var(--tertiary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.bar-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bar-chart-header h4 {
    font-size: 1rem;
    margin: 0;
}

.dimension-letter {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.bar-chart-wrapper {
    height: 200px;
    margin-bottom: 1rem;
}

.bar-chart-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

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

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.detailed-analysis-section {
    margin-top: 3rem;
}

.profile-card-premium {
    background: var(--tertiary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.profile-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.profile-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.profile-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.type-label {
    color: rgba(255, 255, 255, 0.7);
}

.type-value {
    font-weight: 700;
    color: var(--white);
}

.dimensions-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.dimension-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.dimension-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dimension-card-premium.primary-dimension {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.dimension-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dimension-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dimension-letter-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.dimension-info {
    flex: 1;
}

.dimension-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.dimension-percentage-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.dimension-progress-premium {
    margin: 1rem 0;
}

.dimension-progress-bar {
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.dimension-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
}

.dimension-description-premium {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dimension-manifestation {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--white);
}

.dimension-manifestation p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.comparative-analysis-premium {
    background: var(--tertiary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.section-title-premium {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.convergence-card,
.divergence-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.convergence-header,
.divergence-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.convergence-header i {
    color: #22c55e;
}

.divergence-header i {
    color: #ef4444;
}

.convergence-header h4,
.divergence-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.convergence-items,
.divergence-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.convergence-item,
.divergence-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.convergence-dimension,
.divergence-dimension {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.convergence-scores,
.divergence-scores {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.convergence-item p,
.divergence-item p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.recommendations-section-premium {
    background: var(--tertiary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.recommendation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: var(--transition);
}

.recommendation-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.recommendation-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.recommendation-content {
    flex: 1;
}

.recommendation-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.recommendation-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .module-selection-container {
        padding: 1rem;
    }
    
    .module-selection-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-results {
        padding: 1rem;
    }
    
    .results-main-title {
        font-size: 1.8rem;
    }
    
    .dimensions-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .bar-charts-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid,
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
}

/* AI Recommendations Styles */
.loading-recommendations {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.loading-recommendations i {
    margin-right: 0.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(75, 192, 192, 0.2), rgba(75, 192, 192, 0.1));
    border: 1px solid rgba(75, 192, 192, 0.4);
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: rgba(75, 192, 192, 1);
    margin-top: 0.5rem;
    font-weight: 600;
}

.ai-badge i {
    margin-right: 0.25rem;
}

.ai-badge-small {
    display: inline-block;
    background: linear-gradient(135deg, rgba(75, 192, 192, 0.15), rgba(75, 192, 192, 0.05));
    border: 1px solid rgba(75, 192, 192, 0.3);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    color: rgba(75, 192, 192, 0.9);
    margin-top: 0.25rem;
    font-weight: 500;
}

.ai-badge-small i {
    margin-right: 0.2rem;
    font-size: 0.65rem;
}

.values-recommendations-section,
.representational-recommendations-section,
.love-languages-recommendations-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.values-recommendations-section h4,
.representational-recommendations-section h4,
.love-languages-recommendations-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recommendations-loading {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recommendation-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.recommendation-number-small {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(75, 192, 192, 0.2), rgba(75, 192, 192, 0.1));
    border: 1px solid rgba(75, 192, 192, 0.4);
    border-radius: 50%;
    color: rgba(75, 192, 192, 1);
    font-weight: 700;
    font-size: 0.9rem;
}

.recommendation-text {
    flex: 1;
}

.recommendation-text h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.recommendation-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Subscription Management Page Styles */
.subscription-page {
    min-height: 100vh;
    padding: 2rem 0;
    background: var(--primary-black);
}

.subscription-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subscription-header h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.subscription-header .subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.subscription-email-section {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.email-input-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.email-input-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.email-input-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.email-input-group {
    display: flex;
    gap: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
}

.email-input:focus {
    outline: none;
    border-color: rgba(75, 192, 192, 0.5);
    box-shadow: 0 0 10px rgba(75, 192, 192, 0.2);
}

.subscription-loading,
.subscription-error,
.subscription-success {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
}

.subscription-loading {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.subscription-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

.subscription-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgba(239, 68, 68, 1);
}

.subscription-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: rgba(34, 197, 94, 1);
}

.subscription-details {
    max-width: 900px;
    margin: 0 auto;
}

.customer-info-card,
.subscription-status-card,
.subscription-actions-card,
.subscription-history-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.customer-info-card h3,
.subscription-status-card h3,
.subscription-actions-card h3,
.subscription-history-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.customer-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.status-badge.status-trialing {
    background: rgba(59, 130, 246, 0.2);
    color: rgba(59, 130, 246, 1);
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.status-badge.status-canceled,
.status-badge.status-past_due {
    background: rgba(239, 68, 68, 0.2);
    color: rgba(239, 68, 68, 1);
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.subscription-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.info-item span:last-child {
    color: var(--white);
    font-weight: 600;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-btn {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn.btn-primary {
    background: linear-gradient(135deg, rgba(75, 192, 192, 0.2), rgba(75, 192, 192, 0.1));
    border: 1px solid rgba(75, 192, 192, 0.4);
    color: rgba(75, 192, 192, 1);
}

.action-btn.btn-primary:hover {
    background: linear-gradient(135deg, rgba(75, 192, 192, 0.3), rgba(75, 192, 192, 0.2));
    transform: translateY(-2px);
}

.action-btn.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgba(239, 68, 68, 1);
}

.action-btn.btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

.action-btn.btn-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: rgba(34, 197, 94, 1);
}

.action-btn.btn-success:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
}

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

.history-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1rem;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.history-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.history-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.history-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.no-history {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 2rem;
}

/* Subscription Pricing Options */
.subscription-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(75, 192, 192, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.subscription-option:hover {
    border-color: rgba(75, 192, 192, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(75, 192, 192, 0.2);
}

.subscription-option.recommended {
    border-color: rgba(75, 192, 192, 0.8);
    background: rgba(75, 192, 192, 0.05);
    position: relative;
}

.subscription-option.recommended::before {
    content: 'Recomendado';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(75, 192, 192, 1);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.subscription-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 1rem 0;
}

.subscription-price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.subscription-savings {
    color: rgba(34, 197, 94, 1);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .subscription-header h1 {
        font-size: 2rem;
    }
    
    .email-input-group {
        flex-direction: column;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-price {
        font-size: 2rem;
    }
}

/* ===== ONBOARDING SECTION ===== */
.onboarding-section {
    margin: 3rem 0;
    padding: 0;
}

.onboarding-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.onboarding-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.onboarding-icon {
    font-size: 4rem;
    color: rgba(0, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    margin: 0 auto 1.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(0, 255, 255, 0.6);
    }
}

.onboarding-card h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.onboarding-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.onboarding-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.onboarding-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.onboarding-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
}

.onboarding-feature i {
    font-size: 2.5rem;
    color: rgba(0, 255, 255, 0.8);
    flex-shrink: 0;
}

.onboarding-feature h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--white);
    margin: 0 0 0.5rem 0;
}

.onboarding-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.onboarding-actions {
    position: relative;
    z-index: 1;
}

.onboarding-actions .btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 0, 255, 0.2) 100%);
    border: 2px solid rgba(0, 255, 255, 0.5);
    color: rgba(0, 255, 255, 1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.onboarding-actions .btn-large:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3) 0%, rgba(255, 0, 255, 0.3) 100%);
    border-color: rgba(0, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 255, 255, 0.5);
}

.onboarding-actions .btn-large i {
    font-size: 1.5rem;
}

.onboarding-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.onboarding-note i {
    color: rgba(0, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .onboarding-card {
        padding: 2rem 1.5rem;
    }
    
    .onboarding-card h2 {
        font-size: 1.8rem;
    }
    
    .onboarding-description {
        font-size: 1rem;
    }
    
    .onboarding-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .onboarding-actions .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Pricing Grid Responsive */
.pricing-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
}

@media (max-width: 1024px) {
    .pricing-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid-container {
        grid-template-columns: 1fr;
    }
}

/* Lucio AI Floating Card */
@keyframes pulse-card {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.18);
    }
}

.lucio-ai-card {
    position: fixed;
    bottom: 20px;
    right: 40px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
    animation: pulse-card 2s ease-in-out infinite;
}

.lucio-ai-card:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    animation: none;
}

.lucio-ai-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lucio-ai-icon {
    width: 36px;
    height: 36px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    border-radius: 50%;
    overflow: visible;
    border: 2px solid #ffffff;
    position: relative;
}

.lucio-ai-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 5px;
    height: 5px;
    background: #00ff00;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 255, 0, 0.6);
    z-index: 10;
}

.lucio-ai-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
    transform: scale(1.1);
}

.lucio-ai-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.lucio-ai-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.lucio-ai-subtitle {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .lucio-ai-card {
        bottom: 15px;
        right: 30px;
        padding: 0.6rem 0.8rem;
    }
    
    .lucio-ai-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .lucio-ai-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .lucio-ai-label {
        font-size: 0.8rem;
    }
    
    .lucio-ai-subtitle {
        font-size: 0.65rem;
    }
}

/* ===== MELHORIAS DE LAYOUT PARA FERRAMENTAS DEEUS ===== */
/* Estilos unificados para módulos e ferramentas */

/* Module Header - Cabeçalho das ferramentas */
.module-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.module-header h2 {
    font-family: var(--font-primary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.5px;
}

.module-subtitle {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Module Progress Bar - Barra de progresso das ferramentas */
.module-progress {
    margin-bottom: var(--spacing-lg);
}

.module-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--spacing-xs);
}

.module-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-full);
    box-shadow: 0 0 10px rgba(12, 56, 100, 0.5);
}

.module-progress-text {
    text-align: center;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Module Content - Área de conteúdo das ferramentas */
.module-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    min-height: 300px;
}

/* Module Actions - Botões de navegação */
.module-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== ESTILOS ESPECÍFICOS PARA TRÍADE DO TEMPO ===== */
.triade-tempo-question-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.triade-tempo-question-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.category-header {
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.category-header h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.category-header p {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.5;
}

.triade-tempo-question-card h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.triade-tempo-percentage-container {
    margin-top: var(--spacing-lg);
}

.percentage-display {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.percentage-display span {
    font-family: var(--font-secondary);
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--text-primary);
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Slider melhorado para Tríade do Tempo */
.triade-tempo-percentage-container input[type="range"],
.triade-tempo-slider {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: var(--spacing-md) 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.triade-tempo-percentage-container input[type="range"]:hover,
.triade-tempo-slider:hover {
    background: rgba(255, 255, 255, 0.15);
}

.triade-tempo-percentage-container input[type="range"]::-webkit-slider-thumb,
.triade-tempo-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(12, 56, 100, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.triade-tempo-percentage-container input[type="range"]::-webkit-slider-thumb:hover,
.triade-tempo-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(12, 56, 100, 0.6);
}

.triade-tempo-percentage-container input[type="range"]::-moz-range-thumb,
.triade-tempo-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(12, 56, 100, 0.4);
}

.triade-tempo-percentage-container input[type="range"]::-moz-range-thumb:hover,
.triade-tempo-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(12, 56, 100, 0.6);
}

.percentage-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

.percentage-info span:first-child,
.percentage-info span:last-child {
    color: var(--text-muted);
}

.percentage-info span:nth-child(2) {
    font-weight: 600;
    color: var(--text-primary);
}

.validation-message {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: var(--radius-md);
    color: #ff6b6b;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    text-align: center;
}

/* Opções de seleção para Tríade do Tempo */
.triade-tempo-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.triade-tempo-option {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.triade-tempo-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.triade-tempo-option input[type="radio"] {
    margin-right: var(--spacing-sm);
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-cyan);
}

.triade-tempo-option input[type="radio"]:checked + label,
.triade-tempo-option:has(input[type="radio"]:checked) {
    border-color: var(--accent-cyan);
    background: rgba(12, 56, 100, 0.2);
    box-shadow: 0 0 0 3px rgba(12, 56, 100, 0.1);
}

.triade-tempo-option label {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    cursor: pointer;
    flex: 1;
}

/* ===== ESTILOS PARA RODA DA VIDA E OUTRAS FERRAMENTAS COM SLIDERS ===== */
.roda-vida-area-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.area-icon-large {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.roda-vida-area-card h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.area-question {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.roda-vida-scale {
    margin: var(--spacing-lg) 0;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.roda-vida-scale input[type="range"] {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: var(--spacing-md) 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.roda-vida-scale input[type="range"]:hover {
    background: rgba(255, 255, 255, 0.15);
}

.roda-vida-scale input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(12, 56, 100, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.roda-vida-scale input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(12, 56, 100, 0.6);
}

.roda-vida-scale input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(12, 56, 100, 0.4);
}

.roda-vida-scale input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(12, 56, 100, 0.6);
}

.scale-value-display {
    text-align: center;
    margin-top: var(--spacing-md);
}

.scale-value-display span:first-child {
    font-family: var(--font-secondary);
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scale-max {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-left: var(--spacing-xs);
}

.scale-description {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--accent-cyan);
    border-radius: var(--radius-md);
}

.scale-description p {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.roda-vida-slider-container,
.roda-competencias-slider-container {
    margin-bottom: var(--spacing-lg);
}

.slider-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.slider-category:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-sm);
}

.slider-category-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.slider-category-label h4 {
    font-family: var(--font-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
}

.slider-category-value {
    font-family: var(--font-secondary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--accent-cyan);
}

/* ===== RESPONSIVIDADE PARA FERRAMENTAS ===== */
@media (max-width: 768px) {
    .module-header h2 {
        font-size: var(--font-size-2xl);
    }
    
    .module-content {
        padding: var(--spacing-md);
    }
    
    .triade-tempo-options {
        grid-template-columns: 1fr;
    }
    
    .percentage-display span {
        font-size: var(--font-size-4xl);
    }
    
    .module-actions {
        flex-direction: column;
    }
    
    .module-actions .btn {
        width: 100%;
    }
}

/* ===== ESTILOS PARA FERRAMENTAS COM PERGUNTAS (SOMBRAS, BEHAVIORAL PROFILE, ETC.) ===== */
.sombras-question-card,
.module-question-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.sombras-question-card:hover,
.module-question-container:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.sombras-question-card h3,
.module-question-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.sombras-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.sombras-option {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sombras-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.sombras-option input[type="radio"] {
    margin-right: var(--spacing-sm);
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-cyan);
    flex-shrink: 0;
}

.sombras-option:has(input[type="radio"]:checked) {
    border-color: var(--accent-cyan);
    background: rgba(12, 56, 100, 0.2);
    box-shadow: 0 0 0 3px rgba(12, 56, 100, 0.1);
}

.sombras-option span {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    cursor: pointer;
    flex: 1;
    line-height: 1.5;
}

/* Melhorias para opções de resposta existentes - usando especificidade maior */
.module-content .answer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.module-content .answer-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.module-content .answer-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.module-content .answer-option input[type="radio"] {
    margin-bottom: var(--spacing-xs);
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--accent-cyan);
}

.module-content .answer-option:has(input[type="radio"]:checked) {
    border-color: var(--accent-cyan);
    background: rgba(12, 56, 100, 0.2);
    box-shadow: 0 0 0 3px rgba(12, 56, 100, 0.1);
}

.module-content .answer-option label,
.module-content .answer-option .option-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 500;
}

.answer-value {
    font-family: var(--font-secondary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-xs);
}

/* ===== ESTILOS PARA FERRAMENTAS COM FORMULÁRIOS (AUTOIMAGEM, PLANO TRABALHO & VIDA) ===== */
.form-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.form-section h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="number"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(12, 56, 100, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: var(--font-primary);
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.character-count {
    font-family: var(--font-primary);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-align: right;
    margin-top: var(--spacing-xs);
}

/* ===== ESTILOS PARA FERRAMENTAS DE EXERCÍCIOS (CARTAS, MURAL, AUTOBIOGRAFIA) ===== */
.exercise-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.exercise-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.exercise-header h3 {
    font-family: var(--font-primary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.exercise-instructions {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.exercise-editor {
    margin-top: var(--spacing-lg);
}

.exercise-editor textarea {
    width: 100%;
    min-height: 400px;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.8;
    resize: vertical;
    transition: all 0.3s ease;
}

.exercise-editor textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(12, 56, 100, 0.1);
}

.exercise-editor textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.exercise-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.exercise-stat {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.exercise-stat strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Mural de Sonhos - Cards de sonhos */
.dream-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dream-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.dream-card.selected {
    border-color: var(--accent-cyan);
    background: rgba(12, 56, 100, 0.2);
    box-shadow: 0 0 0 3px rgba(12, 56, 100, 0.1);
}

.dream-category-tabs {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.dream-category-tab {
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dream-category-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.dream-category-tab.active {
    background: rgba(12, 56, 100, 0.3);
    border-color: var(--accent-cyan);
    color: var(--text-primary);
}

/* ===== MELHORIAS PARA CHECKLIST E INDICADORES DE PROGRESSO ===== */
.module-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.checklist-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.checklist-item.completed {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(12, 56, 100, 0.5);
}

.checklist-item.current {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
    transform: scale(1.3);
}

.partner-indicator {
    background: rgba(12, 56, 100, 0.2);
    border: 1px solid var(--accent-cyan);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.partner-indicator span {
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== MELHORIAS PARA BOTÕES DAS FERRAMENTAS ===== */
/* Usando especificidade maior para não conflitar com estilos existentes */
.module-actions .btn,
.module-content .btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
}

.module-actions .btn-primary,
.module-content .btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(12, 56, 100, 0.3);
    border: none;
}

.module-actions .btn-primary:hover,
.module-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 56, 100, 0.4);
}

.module-actions .btn-secondary,
.module-content .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.module-actions .btn-secondary:hover,
.module-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===== RESPONSIVIDADE ADICIONAL ===== */
@media (max-width: 768px) {
    .sombras-options,
    .answer-options {
        grid-template-columns: 1fr;
    }
    
    .exercise-editor textarea {
        min-height: 300px;
    }
    
    .dream-category-tabs {
        flex-direction: column;
    }
    
    .dream-category-tab {
        width: 100%;
        text-align: center;
    }
    
    .module-checklist {
        gap: 6px;
    }
    
    .checklist-item {
        width: 10px;
        height: 10px;
    }
}

/* ===== DASHBOARD USER - TOOLS SECTION STYLES ===== */
/* These styles are ONLY for dashboard.html, NOT mentor-dashboard.html */

.dashboard-view #tools-section .tools-controls {
    margin-bottom: 2rem;
}

.dashboard-view #tools-section .tools-search input:focus {
    outline: none;
    border-color: rgba(0, 242, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 242, 234, 0.1);
}

.dashboard-view #tools-section .filter-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
}

.dashboard-view #tools-section .filter-btn.active:hover {
    background: rgba(0, 242, 234, 0.15) !important;
    border-color: rgba(0, 242, 234, 0.4) !important;
}

.dashboard-view #tools-section .stat-card {
    transition: all 0.3s ease;
}

.dashboard-view #tools-section .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Tools Section Container - Override any grid styles */
.dashboard-view #tools-section {
    position: relative;
    width: 100%;
    overflow: visible;
}

.dashboard-view #tools-section #tools-modules-section.tools-modules-container {
    display: block !important;
    width: 100%;
    grid-template-columns: none !important;
    gap: 0 !important;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
    clear: both;
}

.dashboard-view #tools-section .module-category-section {
    width: 100%;
    clear: both;
    margin-bottom: 3rem;
    position: relative;
    display: block;
}

.dashboard-view #tools-section .module-category-section.module-category-core {
    margin-bottom: 3rem;
}

.dashboard-view #tools-section .module-category-section.module-category-couple {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.dashboard-view #tools-section .module-category-section:last-child {
    margin-bottom: 0;
}

.dashboard-view #tools-section .module-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 40px;
    margin-bottom: 1.5rem;
    width: 100%;
    position: relative;
}

.dashboard-view #tools-section .module-section-header .section-indicator {
    width: 4px;
    height: 32px;
    border-radius: 2px;
    flex-shrink: 0;
}

.dashboard-view #tools-section .module-section-header .section-indicator-core {
    background: linear-gradient(180deg, #00f2ea, #8b5cf6);
}

.dashboard-view #tools-section .module-section-header .section-indicator-couple {
    background: linear-gradient(180deg, #8b5cf6, #ec4899);
}

.dashboard-view #tools-section .module-section-header h3 {
    margin: 0;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dashboard-view #tools-section .module-section-header .section-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    height: fit-content;
}

.dashboard-view #tools-section .module-section-header .section-badge-core {
    background: rgba(0, 242, 234, 0.1);
    color: var(--accent-cyan);
}

.dashboard-view #tools-section .module-section-header .section-badge-couple {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.dashboard-view #tools-section .module-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)) !important;
    gap: 2rem !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    z-index: 1;
    grid-auto-rows: 1fr;
}

.dashboard-view #tools-section .module-cards-grid::before,
.dashboard-view #tools-section .module-cards-grid::after {
    content: none;
}

.dashboard-view #tools-section .module-cards-grid .module-card-modern {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
    min-height: 300px;
    position: relative;
    margin: 0 !important;
    z-index: 1;
    isolation: isolate;
}

.dashboard-view #tools-section .module-card-modern {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
    min-height: 320px;
    position: relative;
    z-index: 1;
    isolation: isolate;
    contain: layout style paint;
}

.dashboard-view #tools-section .module-card-modern .module-card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    min-height: 0;
    overflow: visible;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.dashboard-view #tools-section .module-card-modern .module-card-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* Badge positioning - ensure they don't overlap content */
.dashboard-view #tools-section .module-card-modern .module-badge-available,
.dashboard-view #tools-section .module-card-modern .module-badge-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    pointer-events: none;
    max-width: calc(100% - 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ensure content doesn't overlap with badge */
.dashboard-view #tools-section .module-card-modern .module-card-content {
    padding-right: 0;
    margin-right: 0;
}

.dashboard-view #tools-section .module-card-modern .module-card-content > div:last-child {
    padding-right: 0;
    max-width: calc(100% - 88px);
}

.dashboard-view #tools-section .module-card-modern:hover {
    transform: translateY(-4px);
}

.dashboard-view #tools-section .module-card-modern .start-module-btn:hover,
.dashboard-view #tools-section .module-card-modern .purchase-module-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dashboard-view #tools-section .module-card-modern .purchase-module-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Interview Block Modal Styles */
#interview-block-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

#interview-block-modal .modal-content {
    background: var(--bg-card, #161616);
    border: 1px solid var(--border-color, #2a2a2a);
    border-radius: 24px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

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

#interview-block-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color, #2a2a2a);
}

#interview-block-modal .modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    line-height: 1;
}

#interview-block-modal .modal-close:hover {
    color: var(--text-primary);
}

/* Tools Controls Alignment */
.dashboard-view #tools-section .tools-controls > div {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dashboard-view #tools-section .tools-search {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.dashboard-view #tools-section .tools-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Tools Stats Alignment */
.dashboard-view #tools-section .tools-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dashboard-view #tools-section .stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}

/* Responsive adjustments for tools section */
@media (max-width: 1024px) {
    .dashboard-view #tools-section .tools-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .dashboard-view #tools-section .module-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .dashboard-view #tools-section .tools-controls > div {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-view #tools-section .tools-search {
        min-width: 100%;
        max-width: 100%;
    }

    .dashboard-view #tools-section .tools-filters {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .dashboard-view #tools-section .tools-filters .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .dashboard-view #tools-section .tools-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-view #tools-section .module-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .dashboard-view #tools-section .module-card-modern {
        min-height: auto;
    }
}

/* ===== DASHBOARD USER - REPORTS SECTION STYLES ===== */
.dashboard-view #reports-section .reports-controls {
    margin-bottom: 2rem;
}

.dashboard-view #reports-section .reports-search input:focus {
    outline: none;
    border-color: rgba(0, 242, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 242, 234, 0.1);
}

.dashboard-view #reports-section .report-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
}

.dashboard-view #reports-section .report-filter-btn.active:hover {
    background: rgba(0, 242, 234, 0.15) !important;
    border-color: rgba(0, 242, 234, 0.4) !important;
}

.dashboard-view #reports-section .metric-card {
    transition: all 0.3s ease;
}

.dashboard-view #reports-section .metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dashboard-view #reports-section .report-card-modern {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-view #reports-section .report-card-modern:hover {
    transform: translateY(-4px);
}

/* Responsive adjustments for reports section */
@media (max-width: 768px) {
    .dashboard-view #reports-section .reports-controls {
        flex-direction: column;
    }

    .dashboard-view #reports-section .reports-search {
        min-width: 100%;
    }

    .dashboard-view #reports-section .reports-filters {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .dashboard-view #reports-section .reports-filters .report-filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .dashboard-view #reports-section .reports-metrics {
        grid-template-columns: 1fr;
    }

    .dashboard-view #reports-section #reports-list-section {
        grid-template-columns: 1fr !important;
    }
} 