.toggle-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: #fff;
    cursor: pointer;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #666;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-btn.active {
    background: #fff;
    color: #000;
    font-weight: 500;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right,
            rgba(255, 255, 255, 0.1),
            transparent);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card.featured {
    /* background: linear-gradient(135deg,
            rgba(29, 38, 113, 0.8) 0%,
            rgba(195, 55, 100, 0.8) 100%); */
    background: linear-gradient(135deg, rgb(0 59 126 / 80%) 0%, rgb(11 162 96 / 80%) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.card-icon i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.card.featured .card-icon {
    background: rgba(255, 255, 255, 0.15);
}

.card.featured .card-icon i {
    color: #fff;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
}

.description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Anek Latin', sans-serif;
}

.price {
    margin-bottom: 2rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.free-trial {
    display: block;
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.6);
}

.get-started {
    width: 100%;
    padding: 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    margin: 1rem 0 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    font-family: 'Anek Latin', sans-serif;
}

.get-started:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.features {
    margin-top: auto;
}

.features h3 {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.features ul {
    list-style: none;
}

.features li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
}

.card::after {
    content: "i";
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .card {
        max-width: 100%;
        padding: 2rem;
    }
}


/** estilos cards **/
.section .card {
    position: relative;
    z-index: 555;
    max-width: 38rem;
    min-height: 20rem;
    width: 90%;
    display: grid;
    place-content: center;
    place-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0.063em 0.75em 1.563em #000;
    border-radius: 1rem;
}

@media screen and (min-width: 33.75rem) {
    .section .card {
        min-height: 15rem;
    }
}

.section .card-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.8em 0.8em 0em 1.5em;
}

.section .card-header .close {
    color: #d9d9d9;
    width: 1.5rem;
    cursor: pointer;
}

.section .card-body {
    width: 100%;
    padding: 0.7em 2em 0.5em 2em;
    text-align: left;
}

@media screen and (min-width: 33.75rem) {
    .section .card-body {
        display: flex;
        text-align: unset;
    }
}

.section .card-body .icon {
    width: 3rem;
}

@media screen and (min-width: 33.75rem) {
    .section .card-body .icon {
        width: 4rem;
    }
}

@media screen and (min-width: 33.75rem) {
    .section .card-body>div {
        margin-left: 2em;
    }
}

.section .card-body h3 {
    text-align: left;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.035em;
    margin-top: 0.625em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.section .card-body p {
    text-align: left;
    color: #ccc;
    font-size: 1rem;
    letter-spacing: 0.031rem;
}

.section .card .progress {
    width: 100%;
    margin-top: 0.938rem;
}

@media screen and (min-width: 33.75rem) {
    .section .card .progress {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.section .card .progress>div {
    width: 100%;
}

.section .card .progress .progress-bar {
    position: relative;
    width: 100%;
    background: #363636;
    height: 0.35rem;
    display: block;
    border-radius: 3.125rem;
}

.section .card .progress .progress-bar:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    display: block;
    border-radius: 3.125rem;
}

.section .card .progress span:first-of-type {
    color: #ccc;
    text-align: right;
    font-weight: 600;
    width: 100%;
    display: block;
    margin-bottom: 0.313rem;
    font-size: 0.9rem;
}

.section .card .btn-first,
.section .card .btn-second {
    background: #222127;
    color: #fff;
    border-radius: 0.25em;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    font-size: 0.9rem;
}

@media screen and (min-width: 33.75rem) {

    .section .card .btn-first,
    .section .card .btn-second {
        padding: 0.625rem 2.2rem;
    }
}

.section .card .btn-second {
    margin-left: 2em;
}

.section .blue {
    background: radial-gradient(ellipse at right top, #00458f 8f 0%, #151419 45%, #151419 100%);
    opacity: 0.95;
    transition: opacity 0.25s ease-in;
}

.section .blue:hover {
    opacity: 1;
}

.section .blue .icon {
    color: #5a81ff;
}

.section .blue:before {
    background: linear-gradient(45deg, #232228, #232228, #232228, #232228, #1890ff) border-box;
}

.section .blue .progress-bar:after {
    width: 68%;
    background: #5a81ff;
    background: linear-gradient(90deg, #1d1da3 0%, #4242cf 60%, #5a81ff 100%);
}

.section .blue .btn-first {
    margin-top: 1.5em;
    margin-bottom: 1em;
}

@media screen and (min-width: 33.75rem) {
    .section .blue .btn-first {
        margin-left: 2.5em;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.section .blue .btn-first:hover {
    background: #5a81ff;
}

.section .green {
    background: radial-gradient(ellipse at right top, #107667 ed 0%, #151419 47%, #151419 100%);
    opacity: 0.95;
    transition: opacity 0.25s ease-in;
}

.section .green:hover {
    opacity: 1;
}

.section .green .icon {
    color: #2eea9d;
}

.section .green .card-body {
    align-items: flex-end;
}

.section .green:before {
    background: linear-gradient(45deg, #232228, #232228, #232228, #232228, #01c3a8) border-box;
}

.section .green .progress-bar:after {
    width: 90%;
    background: #2eea9d;
}

.section .green .btn-first {
    margin-left: 0;
}

.section .green .btn-first:hover {
    background: #cf0;
    color: #111;
}

.section .green .btn-second:hover {
    background: #2eea9d;
}

.section .red {
    background: radial-gradient(ellipse at right top, #a63d2a 82 0%, #151419 47%, #151419 100%);
    opacity: 0.95;
    transition: opacity 0.25s ease-in;
}

.section .red:hover {
    opacity: 1;
}

.section .red .icon {
    color: #fe6c9b;
}

.section .red .card-body {
    align-items: flex-end;
}

.section .red:before {
    background: linear-gradient(45deg, #232228, #232228, #232228, #232228, #a63d2a) border-box;
}

.section .red .btn-first {
    margin-left: 0;
}

.section .red .btn-first:hover {
    background: #ff6d57;
    color: #111;
}

.section .red .btn-second:hover {
    background: #fe6c9b;
}