section.planos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 100px 0;
    width: 100%;
    background: linear-gradient(0deg, #556b23, #080D19);
    overflow: hidden;
    position: relative;
}

section.planos .divisor {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

section.planos .itens {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 60px 0 80px;
    width: 100%;
}

section.planos .itens .item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff15;
    border: 2px solid #ffffff20;
    padding: 60px 25px 25px 25px;
    border-radius: 10px;
    width: 340px;
    min-width: 340px;
    margin: 0 10px 60px 10px;
    position: relative;
    transition: all 0.3s;
}

section.planos .itens .item:hover {
    background-color: #ffffff25;
    border: 2px solid #ffffff50;
}

section.planos .itens .item .nome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    background-color: #ffffff25;
    backdrop-filter: blur(20px);
    padding: 18px 0;
    border-radius: 10px;
    width: 100%;
    max-width: 280px;
}

section.planos .itens .item .nome p {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
}

section.planos .itens .item .preco {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

section.planos .itens .item .preco h3 {
    font-family: 'Alexandria';
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
}

section.planos .itens .item .preco h2 {
    font-family: 'Alexandria';
    font-weight: 600;
    font-size: 40px;
    color: #ffffff;
    margin: 5px 0 5px 0;
}

section.planos .itens .item .preco p {
    font-family: 'Alexandria';
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
}

section.planos .itens .item .preco .parte {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

section.planos .itens .item .botao {
    width: 100%;
    margin: 20px 0 0 0;
}

section.planos .itens .item.destaque .botao a {
    background-color: #ffffff;
    color: #0000ff;
}

section.planos .itens .item.destaque .botao a:hover {
    background-color: #ffffff80;
}

section.planos .itens .item .botao a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #1CA05E;
    background: linear-gradient(0deg, var(--botao), var(--botao));
    padding: 20px 0;
    border-radius: 50px;
    font-family: 'Alexandria';
    font-weight: 600;
    font-size: 16px;
    color: var(--texto-botao);
    transition: all 0.3s;
}

section.planos .itens .item .botao a:hover {
    filter: brightness(120%);
}

section.planos .itens .item .botao a p {
    font-family: 'Alexandria';
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
}

section.planos .itens .item .beneficios {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

section.planos .itens .item .beneficios p {
    font-family: 'Figtree';
    font-size: 14px;
    color: #ffffff90;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #ffffff30;
    width: 100%;
    text-align: center;
}

section.planos .itens .item .beneficios .parte {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #ffffff30;
}

section.planos .itens .item .beneficios .parte.off h3 {
    font-weight: 300;
    opacity: 0.7;
}

section.planos .itens .item .beneficios .parte.off img {
    opacity: 0.5;
}

section.planos .itens .item .beneficios .parte h3 {
    font-family: 'Figtree';
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

section.planos .itens .item .beneficios .parte img {
    width: 25px;
}

section.planos .itens .item .plugins {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 30px 0 0 0;
}

section.planos .itens .item .plugins .quadrinho {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    border-radius: 10px;
    background-color: #ffffff10;
    position: relative;
    width: calc(33.33% - 5px);
}

section.planos .itens .item .plugins .quadrinho img {
    width: 25px;
    min-width: 25px;
    max-height: 25px;
    margin: 0 0 10px 0;
}

section.planos .itens .item .plugins .quadrinho p {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 12px;
    color: #ffffff;
    margin: 5px 0 0 0;
}

@media (max-width: 768px){
    section.planos .itens {
        padding: 50px 10px 0 5px;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
}