.vertical-center{
    display: flex!important;
    justify-content: center!important; /* justifica texto horizontalmente */
    align-items: center!important; /* alinha verticalmente */
}

/* responsive images without display:block */
.one-image-responsive{
    max-width: 100% !important;
    height: auto!important;
}

/* tables */
.table-holder {
    width: 100%;
    padding: 20px;
    margin: 0px;
    float: left;
    background-color:#f1f1f1;
}

/* active link on page */
li a.active {
    color: #ff6600;
}

/* h1 style - page title*/
.pagenation-holder h1 {
    font-size: 27px;
    line-height: 30px;
    margin-bottom: 18px;
    font-style: normal;
}

/* home page highlights listing */
.blog-listing h2,
.blog-holder1 h2 {
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 18px;
    font-style: normal;
}

/* read more buttons */
.sh-btn.sh-btn-red {
    color: #fff;
    background-color: #ff6600;
}

ul.iconlist li::before{
    font-family: FontAwesome;
    content: "\f00c";
    color: #ff6600;
    padding-right: 10px;
}


/* Checkbox */
.smart-forms .checkbox{
    position:relative;
    margin-right:2px;
    background: #fff;
    display: inline-block;
    border: 1px solid #CFCFCF;
    margin-bottom:0;
    margin-top:0;
    height: 21px;
    width: 21px;
    top:4px;

}
.smart-forms .checkbox:checked:after{
    content: '\2714';    /* '✓' or '\2713', or '\2714' */
    text-align: center;
    vertical-align: middle;
    position: absolute;
    height: 1em;
    width: 1em;
    line-height: 1;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.terms span{
    line-height: 30px;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.vertical-center2{
    display: flex!important;
    justify-content: center!important; /* justifica texto horizontalmente */
    align-items: center!important; /* alinha verticalmente */
}

/*
.integrations {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}
.integration-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}
.integration-item:hover {
    transform: translateY(-10px);
}
.integration-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}
.integration-item a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}
.integration-item a:hover {
    text-decoration: underline;
}
*/

/* Container para todas as integrações */
.integrations-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 40px;
}

/* Card de Integração */
.integration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    /*cursor: pointer;*/
}

/* Efeito hover */
.integration-card:hover {
    /*transform: translateY(-8px);*/
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Cabeçalho do Card */
.integration-header img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

/* Título e Descrição */
.integration-content h3 {

    margin-bottom: 10px;

}

.integration-content p {

    text-align: center;
}