/* Extracted from views/index.ejs */

        .pricing-interactive-section {
            padding: 4rem 2rem;
            background-color: var(--bg-primary, #f8f9fa);
            transition: background-color 0.3s ease;
        }
        .text-center { text-align: center; }
        .section-title {
            margin-bottom: 1rem;
            color: var(--text-primary, #333);
        }
        .identity-selector {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        .identity-btn {
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--primary-purple, #0284c7);
            background: transparent;
            color: var(--primary-purple, #0284c7);
            border-radius: 2rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .identity-btn.active, .identity-btn:hover {
            background: var(--primary-purple, #0284c7);
            color: #fff;
        }
        .plan-content-wrapper {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            min-height: 380px;
        }
        .plan-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            background: var(--bg-secondary, #fff);
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }
        .plan-content.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            position: relative;
        }
        .plan-header {
            text-align: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--card-border, #eee);
            padding-bottom: 1.5rem;
        }
        .plan-header h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--text-primary, #333);
        }
        .plan-header p {
            color: var(--text-secondary, #666);
        }
        .pricing-card-price {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            color: var(--text-primary, #333);
            margin: 1rem 0;
            gap: 0.35rem;
        }
        .pricing-card-price .currency {
            font-size: 1.1rem;
            font-weight: 700;
            padding-bottom: 0.2rem;
            color: inherit;
        }
        .pricing-card-price .amount {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1;
            color: inherit;
        }
        .pricing-card-price .period {
            font-size: 0.8rem;
            padding-bottom: 0.3rem;
            opacity: 0.7;
            color: inherit;
        }
        .plan-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        @media (min-width: 768px) {
            .plan-features {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .feature-item {
            text-align: center;
            padding: 1rem;
            background: var(--bg-light, #f8f9fa);
            border-radius: 0.5rem;
            transition: background-color 0.3s ease;
        }
        .feature-item svg {
            width: 40px;
            height: 40px;
            color: var(--primary-purple, #0284c7);
            margin-bottom: 1rem;
        }
        .feature-item span {
            display: block;
            font-size: 0.95rem;
            color: var(--text-secondary, #666);
        }
        .plan-action {
            text-align: center;
            margin-top: auto;
        }
        
        /* Tema Escuro usando data-theme */
        [data-theme="dark"] .plan-content {
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.05);
        }
        [data-theme="dark"] .plan-header h3,
        [data-theme="dark"] .section-title,
        [data-theme="dark"] .pricing-card-price {
            color: var(--white);
        }
        [data-theme="dark"] .plan-header p,
        [data-theme="dark"] .feature-item span {
            color: var(--text-gray);
        }
    


/* Botão principal de acesso do painel */
.btn-cta-primary {
    display: inline-block;
    background-color: var(--primary-purple, #0284c7);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
    margin-top: 1rem;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
    background-color: transparent;
    color: var(--primary-purple, #0284c7);
    border-color: var(--primary-purple, #0284c7);
}

[data-theme='dark'] .btn-cta-primary {
    color: #ffffff;
}

[data-theme='dark'] .btn-cta-primary:hover {
    color: #ffffff;
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}
