﻿body {
            background-color: var(--bg-color);
            color: var(--text-primary);
        }

        .planos-layout {
            max-width: 800px;
            margin: 0 auto;
            padding: 120px 2rem 4rem 2rem;
            min-height: calc(100vh - 80px);
        }

        .secret-alert {
            background: rgba(245, 158, 11, 0.05);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
            color: #fbbf24;
            font-size: 0.95rem;
        }

        .plan-content {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
        }

        .plan-header {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .plan-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }

        .plan-desc {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .plan-price-large {
            font-size: 3rem;
            font-weight: 800;
            color: #fbbf24;
            /* yellow/gold-ish for secret plan */
        }

        .plan-price-large span {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
        }

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

        .feature-block {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.25rem;
        }

        .feature-block h4 {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .feature-block p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .upgrade-section {
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 12px;
            padding: 2rem;
            margin-top: 3rem;
            text-align: center;
        }

        .upgrade-section h3 {
            font-size: 1.2rem;
            color: white;
            margin-bottom: 0.5rem;
        }

        .upgrade-section p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .upgrade-section .btn {
            display: inline-block;
        }

        @media (max-width: 600px) {
            .plan-content {
                padding: 1.5rem;
            }
        }


/* OVERRIDE TO FIX OVERFLOW ON MOBILE */
.features-list {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)) !important;
}

.plan-content {
    /* Responsive padding so it doesn't overflow mobile viewports */
    padding: clamp(1.5rem, 5vw, 3rem) !important;
}

