.container-plans {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    color: white;
}

.card_header {
    flex-basis: 100%;
    text-align: center;
}

.card_header h1 {
    padding-top: 60px;
    color: #212121;
    padding-bottom: 20px;
    font-size: 2em;
    font-weight: var(--weight-normal);
}

.card_header p {
    color: #212121;
    margin-top: -10px;
    font-size: 1em;
    font-weight: var(--weight-normal);
}

/* Estilo para a badge */
.badge {
    position: absolute;
    top: 20px;
    right: 10px;
    background-color: #C4FF00;
    color: #000;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Ajustar a posição dos cards para permitir o uso de position: absolute */
.container-plans .card {
    position: relative;
    width: calc(33.33% - 40px);
    padding: 10px 0;
    margin: 20px 0;
    text-align: center;
    background: linear-gradient(135deg, #ee20d6 0%, #0a2fb6 100%);
    border-radius: 15px;
    box-shadow: 2px 5px 15px black;
    transition: transform 0.3s;
}

.container-plans .card:hover {
    transform: scale(1.05);
}

.card-title {
    margin-top: 20px;
    padding: 30px 20px;
    border-bottom: 2px solid gray;
}

.card-title h2 {
    font-size: 35px;
    padding-bottom: 15px;
    color: yellow;
}

.card-title p span {
    font-size: 40px;
    padding: 0 5px;
}

.card-content ul {
    padding: 10px 30px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-content ul li {
    list-style: none;
    padding: 10px 0;
}

.card-content ul li i {
    margin-right: 4px;
}

.card-content button {
    width: 180px;
    padding: 10px 20px;
    background: #25D366;
    color: #ffffff;
    border-radius: 20px;
    margin-bottom: 10px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.card-content button:hover {
    letter-spacing: 1.2px;
}

.card-content button a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
}

.card-content p {
    font-size: 0.775em;
}

@media (max-width: 52em) {
    .container-plans {
        flex-direction: column;
        padding: 0 20px;
        padding-bottom: 40px;
    }

    .container-plans .card {
        width: 100%;
        margin-bottom: 20px;
    }

    .card-content ul {
        align-items: center;
        text-align: center;
    }
}