/* SECTION TITLE */

body {
    background-color: var(--black-spc);
}

#sec-title {
    display: flex;
    justify-content: center;
}

.title-view {
    padding-top: 56px;
    padding-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

@media only screen and (max-width: 992px) {
    .title-view {
        align-items: center;
        text-align: center;
    }
}

.img-bg-title {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: -1;
}

.tag {
    font-weight: 300;
    color: var(--red-spc);
}

.titletext {
    color: var(--white-spc);
    font-weight: 900;
}

.line-divider {
    border: 3px solid var(--red-spc);
    width: 160px;
}

.subtext {
    color: var(--gray-spc);
}

main {
    background-color: var(--white-spc);
    padding: 0;
}

/* SECTION INFO */

.info {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info h3 {
    line-height: 24px;
    text-align:left;
}

.info span {
    line-height: 24px;
    text-align:left;
}

.line-divider-sec {
    color: var(--gray-spc);
}

/* SECTION SAC24 */

#sec-sac24 {
    padding-bottom: 24px;
    padding-top: 24px;
}

.sac24-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.sac24-title img {
    max-width: 160px;
}

.sac24-title span {
    font-size: 1.2em;
    color: var(--dark-gray-light-spc);
}

@media only screen and (max-width: 992px) {
    .sac24-title img {
        max-width: 120px;
    }

    .sac24-title span {
        font-size: 0.8em;
    }
}

.sac24 {
    background-color: var(--light-gray-spc);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}

.img-sac24 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-sac24 img {
    min-width: 280px;
    max-width: 1200px;
}

.funcionalidades-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: -220px;
}

@media only screen and (max-width: 1199px) {

    .funcionalidades-list {
        margin-top: -140px;
    }
}

@media only screen and (max-width: 992px) {

    .funcionalidades-list {
        margin-top: -50px;
    }
}

.funcionalidade {
    text-align: left;
    padding: 12px;
    gap: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: var(--white-spc);
}

.func-icon {
    color: var(--red-spc);
    font-size: 1.4em;
}

.func-text {
    font-size: 1.1em;
    line-height: normal;
    text-align: left;
}

@media only screen and (max-width: 992px) {
    .func-text {
        font-size: 0.9em;
    }
}

/* SECTION VANTAGENS */

#sec-vantagens {
    background-color: var(--light-gray-spc);
    padding-top: 24px;
    padding-bottom: 24px;
}

.vantagens-title {
    padding-top: 8px;
    padding-bottom: 8px;
}

.vantagens-card-list{
    padding: 16px;
    gap: 16px;
}

.vantagens-card {
    background-color: var(--white-spc);
    border-radius: 8px;
    padding: 16px;
}

@media only screen and (max-width: 992px) {
    .func-text {
        font-size: 0.9em;
    }
}

.title-card {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 12px;
}

.icon-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    background-color: var(--black-spc);
    color: var(--white-spc);
    border-radius: 4px;
    font-size: 1.2em;
}

.text-card {
    font-size: 1.1em;
    text-align: left;
    color: var(--dark-gray-light-spc);
}