    .planos {
        border-radius: 12px;
        padding: 100px 0;
        background: linear-gradient(180deg, var(--pc-card, #ffffff) 0%, var(--pc-bg, #F9FAFB) 100%);
    }
    .planos-title {
        text-align: center;
        font-size: 2rem;
        font-weight: 800;
        color: var(--pc-text, #111827);
        margin-bottom: 16px;
    }
    .planos-sub {
        text-align: center;
        color: var(--pc-text-soft, #6b7280);
        font-size: 1.05rem;
        line-height: 1.7;
        max-width: 560px;
        margin: 0 auto 56px;
    }
    .planos-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        align-items: stretch;
    }
    .plano-card {
        background: var(--pc-card, #ffffff);
        border-radius: 20px;
        padding: 36px 30px 32px;
        display: flex;
        flex-direction: column;
        position: relative;
        border: 1px solid var(--pc-border, rgba(0, 0, 0, 0.04));
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.4s;
    }
    .plano-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(79, 70, 229, 0.12);
    }
    .plano-destaque {
        border: 2px solid var(--pc-blue, #4F46E5);
        box-shadow: 0 12px 40px rgba(79, 70, 229, 0.18);
    }
    .plano-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--pc-blue, #4F46E5), #7C3AED);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 6px 16px;
        border-radius: 100px;
        white-space: nowrap;
    }
    .plano-emoji {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        background: var(--pc-grey, #EEF2FF);
        margin: 0 auto 18px;
    }
    .plano-card h3 {
        text-align: center;
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--pc-text, #111827);
        margin-bottom: 6px;
    }
    .plano-preco {
        text-align: center;
        margin-bottom: 8px;
    }
    .plano-preco strong {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--pc-text, #111827);
    }
    .plano-preco span {
        color: var(--pc-text-soft, #6b7280);
        font-size: 0.95rem;
        font-weight: 500;
    }
    .plano-tag {
        text-align: center;
        color: var(--pc-text-soft, #6b7280);
        font-size: 0.9rem;
        margin-bottom: 22px;
        line-height: 1.6;
    }
    .plano-lista {
        list-style: none;
        margin: 0 0 26px;
        padding: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .plano-lista li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: var(--pc-text, #374151);
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .plano-lista li::before {
        content: "✓";
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #F0FDF4;
        color: #16A34A;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 800;
        margin-top: 1px;
    }
    .plano-lista li.plano-tudo {
        color: var(--pc-blue, #4F46E5);
        font-weight: 700;
    }
    .plano-lista li.plano-tudo::before {
        background: var(--pc-grey, #EEF2FF);
        color: var(--pc-blue, #4F46E5);
    }
    .plano-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: auto;
        box-sizing: border-box;
    }
    .plano-btn-dev {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: auto;
        box-sizing: border-box;
        padding: 12px 32px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        background: var(--pc-black, #111827);
        color: #fff;
        transition: all 0.3s;
    }
    .plano-btn-dev:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 24px rgba(17, 24, 39, 0.25);
    }
    @media (max-width: 1024px) {
        .planos-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
        .planos { padding: 70px 0; }
        .planos-title { font-size: 1.5rem; }
        .planos-sub { font-size: 0.95rem; margin-bottom: 40px; }
        .planos-grid { grid-template-columns: 1fr; }
    }
