/* Estilos personalizados para a página de planos */
.pricing-card {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card .h1 {
    font-weight: 700;
    color: #3a86ff;
}

.pricing-card:nth-child(2) .h1 {
    color: #ff006e;
}

.btn-primary {
    background-color: #ff006e;
    border-color: #ff006e;
}

.btn-outline-primary {
    color: #3a86ff;
    border-color: #3a86ff;
}

.btn-outline-primary:hover {
    background-color: #3a86ff;
    border-color: #3a86ff;
    color: white;
}

.text-success {
    color: #00b4d8 !important;
}
