.produtos-primeiro {
    padding-top: 120px;
    width: 100%;
    min-height: 620px;
    overflow-y: hidden;
}

.produtos-primeiro .produtos-primeiro-cab {
    width: 100%;
    font-size: 25px;
    font-family: 'tech';
    text-align: center;
    margin-top: 10px;
}

.produtos-primeiro .produtos-primeiro-texto {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.produtos-primeiro .produtos-primeiro-planos {
    width: 100%;
    overflow-x: hidden;
    background-image: linear-gradient(white, #e1e5eb, white);
}

.produtos-primeiro .planos {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    padding: 10px;
}

.produtos-primeiro .planos .produto {
    min-width: 295px;
    max-width: 300px;
    flex: 1;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 2px 2px 2px #212c434d;
    cursor: default;
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: white;
}

.produtos-primeiro .planos .produto:hover {
    box-shadow: 0px 4px 4px 4px #212c434d;
}

.planos hr {
    margin: 0 0;
    border-top: 2px solid #00000020;
}

.planos .produto .cabecalho {
    min-width: 295px;
    max-width: 300px;
    flex: 1;
    font-family: 'tech';
    font-size: 20px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 20px;
    text-align: center;
}

.planos .produto .rodape {
    flex: 1;
    font-size: 14px;
    padding: 10px;
    min-height: 90px;
    text-align: center;
}

.planos .produto .funcionalidades {
    min-width: 295px;
    max-width: 300px;
    flex: 1;
}

.funcionalidades .item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
}

.funcionalidades .item .item-name {
    flex: 2;
    text-align: left;
    font-size: 15px;
}

.funcionalidades .item .item-name.descr {
    cursor: pointer;
}

.funcionalidades .item .item-val {
    flex: 1;
    font-size: 16px;
}

@keyframes an-item-open {
    0% {
        max-height: 0px;
    }

    90% {
        max-height: 80px;
    }

    100% {
        max-height: none;
    }
}

@keyframes an-item-close {
    0% {
        max-height: auto;
    }

    10% {
        max-height: 80px;
    }

    100% {
        max-height: 0px;
    }
}

.funcionalidades .item .item-dsc {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 13px;
    /*font-style: italic;*/
    text-align: left;
    padding-left: 5px;
    line-height: 20px;
    overflow-y: hidden;
    max-height: none;
    animation-name: an-item-open;
    animation-duration: 0.2s;
    max-width: 250px;
}

.funcionalidades .item .item-dsc.escondido {
    animation-name: an-item-close;
    animation-duration: 0.2s;
    max-height: 0px;
}

.icone-ok {
    font-weight: bold;
    color: #2E8B57;
}

.icone-x {
    font-weight: bold;
    color: #837e7e;
}

.produtos-primeiro .produtos-primeiro-rodape {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
    margin-bottom: 15px;
    min-height: 220px;
}

.produtos-primeiro .produtos-primeiro-rodape .texto-rodape {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 16px;
    padding: 7px;
}