
.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.tabela-tone{
    color: #0F7ADE;
}

.pricing-header{
    text-align: center;
    padding: 50px;
    h2{
        font-size: 35.2px;
    }
}

.toggle-label {
    font-weight: 600;
    color: #666;
}

.toggle-label.active {
    color: var(--primary-color);
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}



.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #0F7ADE;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background-color: #e7f5ff;
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: none;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    width: 350px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover {
    transform: translateY(-5px);

}

.card-header {
    text-align: center;
    color: white;
    margin-top: 50px;
}

.pro-header {
    background: linear-gradient(135deg, var(--pro-color), #5a619e);
}

.ultimate-header {
    background: linear-gradient(135deg, var(--ultimate-color), #00b2ff);
    position: relative;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
}

.popular-badge {
    position: absolute;
    top: 40px;
    background-color: #0F7ADE;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.price-container {
    text-align: center;
    margin-bottom: 25px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.price sup {
    font-size: 24px;
    position: relative;
    top: -20px;
}

.price-decimals {
    font-size: 20px;
}

.price-period {
    color: #0F7ADE;
    margin-top: 5px;
    font-weight: 600;
}

.users-info {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.feature-item .icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-check {
    color: #0F7ADE;
}

.icon-x {
    color: #ef4444;
}

.highlight {
    font-weight: 600;
    color: #000;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pro-button {
    background: linear-gradient(135deg, var(--pro-color), #5a619e);
}

.pro-button:hover {
    background: linear-gradient(135deg, #3d447e, #4e5591);
}

.ultimate-button {
    background: linear-gradient(135deg, var(--ultimate-color), #00b2ff);
}

.ultimate-button:hover {
    background: linear-gradient(135deg, #0088e0, #00a3eb);
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        margin-bottom: 20px;
        width: 100%;
        max-width: 400px;
    }
}
