/* ===================================
   Planos Novo Design - v5.2
   =================================== */
.plans-novo {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: var(--section-padding);
}

.plans-grid-novo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card-novo {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-card-novo:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.plan-card-novo.featured-novo {
    border: 3px solid #ec5713;
    transform: scale(1.05);
}

.plan-card-novo.featured-novo:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge-novo {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ec5713;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
}

.plan-header-novo {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon-novo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1081c1 0%, #073955 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
}

.plan-name-novo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #071a2a;
    margin-bottom: 0.5rem;
}

.plan-subtitle-novo {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.plan-price-novo {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f1f5f9;
    border-radius: 12px;
}

.price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1081c1;
    display: block;
}

.price-period {
    color: #64748b;
    font-size: 1rem;
}

.price-installment {
    display: block;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.plan-benefits-novo {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.plan-benefits-novo li {
    padding: 0.75rem 0;
    color: #071a2a;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.plan-benefits-novo i {
    color: #ec5713;
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.commission-detail {
    padding-left: 2rem;
    font-size: 0.95rem;
    color: #64748b;
}

.btn-plan-novo {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: #1081c1;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-plan-novo:hover {
    background: #073955;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 129, 193, 0.4);
}

.btn-featured-novo {
    background: #ec5713;
}

.btn-featured-novo:hover {
    background: #d14610;
    box-shadow: 0 8px 20px rgba(236, 87, 19, 0.4);
}

@media (max-width: 768px) {
    .plans-grid-novo {
        grid-template-columns: 1fr;
    }
    
    .plan-card-novo.featured-novo {
        transform: scale(1);
    }
    
    .plan-card-novo.featured-novo:hover {
        transform: translateY(-10px);
    }
    
    .plan-name-novo {
        font-size: 1.75rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
}

/* Plans Note */
.plans-note {
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
}

.plans-note i {
    color: #10b981;
    font-size: 1.5rem;
}

.plans-note p {
    color: #064e3b;
    margin: 0;
    font-weight: 500;
}
