/* ==================== CARDS DE PLUGINS SELECIONÁVEIS ==================== */

.btn-cta-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary);
}

.plugin-selector-section {
    background: #F8F9FA;
    padding: 60px 0;
}

.plugin-card-select {
    background: white;
    border: 3px solid #E2E8F0;
    border-radius: 20px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    height: 100%;
    text-align: center;
}

.plugin-card-select:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,84,226,0.15);
    border-color: var(--primary);
}

.plugin-card-select.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0,84,226,0.05) 0%, rgba(0,102,255,0.05) 100%);
    box-shadow: 0 10px 30px rgba(0,84,226,0.2);
}

.plugin-card-select.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.plugin-checkbox {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: 3px solid #E2E8F0;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.plugin-card-select.selected .plugin-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.plugin-checkbox i {
    color: white;
    font-size: 1.2rem;
    display: none;
}

.plugin-card-select.selected .plugin-checkbox i {
    display: block;
}

.plugin-badge-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255,107,107,0.3);
}

.plugin-card-select h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.plugin-original-price {
    font-size: 1.1rem;
    color: #94A3B8;
    text-decoration: line-through;
    margin-right: 8px;
}

.plugin-current-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
}

.plugin-discount-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--success);
}

.plugin-discount-badge {
    background: var(--success);
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
}

.plugin-description {
    color: #64748B;
    font-size: 0.95rem;
    margin-top: 10px;
    line-height: 1.5;
}

.tooltip-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #94A3B8;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    line-height: 18px;
    text-align: center;
    cursor: help;
    margin-left: 5px;
}

.order-summary {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.order-summary h3 i {
    margin-right: 10px;
    color: var(--success);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-name {
    font-size: 0.95rem;
    color: #64748B;
}

.order-item-price {
    font-weight: 600;
    color: var(--text-dark);
}

.order-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1.1rem;
}

.order-discount {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--success);
    font-weight: 600;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    margin-top: 15px;
    border-top: 2px solid #E2E8F0;
}

.order-total-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.order-total-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.order-empty {
    text-align: center;
    padding: 40px 20px;
    color: #94A3B8;
}

.order-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Responsivo */
@media (max-width: 992px) {
    .order-summary {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .plugin-card-select {
        margin-bottom: 15px;
    }
    
    .order-summary {
        margin-top: 30px;
    }
}
