.pricing-card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    background: #fff;
    margin-bottom: 32px;
 }

 .pricing-card.popular {
    border: 2px solid #ffb300;
    box-shadow: 0 8px 32px rgba(255, 179, 0, 0.15);
    background: #fffbe6;
    position: relative;
    z-index: 2;
    transform: scale(1.04);
 }

 .pricing-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
 }

 .pricing-header h3 {
    color: #1e88e5;
    font-size: 2rem;
 }

 .pricing-header .badge {
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 12px;
    margin-bottom: 10px;
 }

 .list-unstyled li {
    margin-bottom: 10px;
    font-size: 1.05rem;
 }

 .btn-anim-light,
 .btn-primary {
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 18px;
    min-width: 0;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.08);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
 }

 .btn-anim-light i,
 .btn-primary i {
    font-size: 1.1em;
    margin-left: 4px;
 }

 .btn-anim-light:hover,
 .btn-primary:hover {
    background: #1565c0;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
 }

 .btn-escolher-plano {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1e88e5;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 7px 18px;
    font-size: 0.98rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.08);
    transition: background 0.18s, transform 0.15s;
    cursor: pointer;
    outline: none;
    text-decoration: none;
 }

 .btn-escolher-plano i {
    font-size: 1em;
    margin-left: 2px;
 }

 .btn-escolher-plano:hover,
 .btn-escolher-plano:focus {
    background: #1565c0;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
 }

 .toggle-preco {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.08rem;
    font-weight: 500;
 }

 .toggle-preco .ativo {
    color: #1e88e5;
    font-weight: 700;
 }

 .toggle-preco span {
    transition: color 0.2s;
 }

 .switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
 }

 .switch input {
    display: none;
 }

 .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
 }

 .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
 }

 input:checked+.slider {
    background-color: #1e88e5;
 }

 input:checked+.slider:before {
    transform: translateX(20px);
 }

 .faq-accordion .accordion-item {
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30, 136, 229, 0.07);
    border: none;
 }

 .faq-accordion .accordion-button {
    font-size: 1.13rem;
    font-weight: 600;
    color: #1e88e5;
    background: #f8f9fa;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 1.1rem 1.5rem;
    transition: background 0.2s, color 0.2s;
 }

 .faq-accordion .accordion-button:not(.collapsed) {
    background: #e3f0fc;
    color: #1565c0;
 }

 .faq-accordion .accordion-body {
    background: #fff;
    font-size: 1.05rem;
    color: #444;
    padding: 1.2rem 1.5rem;
 }

 .faq-accordion .accordion-button:after {
    font-family: "Font Awesome 6 Free";
    content: "\f078";
    font-weight: 900;
    float: right;
    margin-left: auto;
    color: #1e88e5;
    background: none;
    border: none;
 }

 .faq-accordion .accordion-button.collapsed:after {
    content: "\f054";
    color: #b0b0b0;
 }