/* CARDS DE SERVIÇOS */
.service-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.service-card.highlighted {
    border: 1px solid var(--accent);
    background: rgba(30, 30, 30, 0.9);
}

.service-card.highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 30px;
    height: 30px;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style-type: none;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

/* CARDS DE PLANOS */
.plan-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
    position: relative;
}

.plan-card.recommended {
    border-color: var(--accent);
    transform: scale(1.05);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary);
    margin-top: 0.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.plan-features {
    margin: 2rem 0;
}

.plan-features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.plan-cta {
    text-align: center;
}

.btn-plan {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-plan:hover {
    background: var(--accent);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.5);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}