.plano-card-recorrencia {
    background: linear-gradient(160deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plano-card-recorrencia:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.plano-card-recorrencia h6 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plano-card-recorrencia p.fs-3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.plano-card-recorrencia ul {
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
}

.plano-card-recorrencia ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.plano-card-recorrencia ul li i {
    color: #00e676;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.plano-card-recorrencia .btn {
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 12px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
}

.plano-card-recorrencia .btn:hover {
    background: #ffd700;
    color: #1d1d4f;
    transform: scale(1.05);
}
/* Estilo moderno para as tabs de tipos de plano */
.nav-pills .nav-link {
    background: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-pills .nav-link:hover:not(.active) {
    background: var(--accent-color);
    color: #ffffff;
    transform: scale(1.05);
    border: 1px solid var(--accent-color);
}

/* Espaçamento bonito entre os botões */
.nav-pills .nav-item {
    margin: 0 0.5rem;
}

/* Efeito Ripple */
.nav-pills .nav-link:focus {
    position: relative;
    overflow: hidden;
}

.nav-pills .nav-link:focus::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

