/* Cards de Texto Component Styles */

.cards-de-texto {
    background: var(--primarias-principal-175) center center / cover no-repeat;
    padding: 64px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cards-de-texto .container {
    max-width: 1260px;
}

.cards-de-texto .pre-titulo {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.16;
    text-align: center;
    color: var(--secundarias-secundaria-100);
    margin: 0 0;
}
.cards-de-texto__intro {
    margin: 0 0 64px;
}
.cards-de-texto__intro p,
.cards-de-texto__intro ul {
    text-align: center;
    color: var(--secundarias-secundaria-75);
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.05px;
}
.cards-de-texto__intro p:first-child,
.cards-de-texto__intro ul:first-child {
    margin-top: 0;
}
.cards-de-texto__intro p:last-child,
.cards-de-texto__intro ul:last-child {
    margin-bottom: 0;
}
.cards-de-texto .titulo-secao {
    color: var(--branco);
    margin-top: 8px;
    margin-bottom: 64px;
    padding-top: 0;
    padding-bottom: 0;
}

.cards-de-texto__items {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 64px;
}

.cards-de-texto__item {
    position: relative;
    padding: 64px 64px 104px;
    width: 50%;
    background: var(--primarias-principal-150);
    border: 1px solid var(--primarias-principal-100);
    border-radius: var(--radius-g);
    color: var(--branco);
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.cards-de-texto__item:hover {
    background-color: var(--primarias-principal-175);
}
.cards-de-texto__titulo {
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.05px;
    margin: 0 0 16px;
    color: var(--branco);
}
.cards-de-texto__descricao {
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.05px;
    color: var(--primarias-principal-10);
    margin: 0 0;
}
.cards-de-texto__descricao p,
.cards-de-texto__descricao ul {
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: 0.05px;
    color: var(--primarias-principal-10);
}
.cards-de-texto__descricao p:last-child,
.cards-de-texto__descricao ul:last-child {
    margin-bottom: 0;
}

.cards-de-texto__link-text {
    position: absolute;
    bottom: 32px;
    left: 64px;
    width: calc(100% - 128px);
    cursor: pointer;
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
    color: var(--branco) !important;
    font-weight: 600;
    border-width: 1px;
}

.cards-de-texto__cta {
    display: flex;
    margin: auto;
}

@media (max-width: 991px) {
    .cards-de-texto__item {
        padding: 32px 32px 104px;
    }
    .cards-de-texto__titulo {
        font-size: 1.5rem;
    }
    .cards-de-texto__descricao,
    .cards-de-texto__descricao p,
    .cards-de-texto__descricao ul {
            font-size: 1rem;
    }
    .cards-de-texto__link-text {
        width: calc(100% - 64px);
        left: 32px;
    }
}
@media (max-width: 767px) {
    .cards-de-texto {
        padding: 32px 0;
    }
    .cards-de-texto .pre-titulo {
        font-size: 1.25rem;
    }
    .cards-de-texto .titulo-secao {
        margin-bottom: 28px;
    }
    .cards-de-texto__intro {
        margin: 0 0 32px;
    }
    .cards-de-texto__items {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }
    .cards-de-texto__item {
        border-radius: var(--radius-m);
        width: 100%;
    }
}
@media (max-width: 480px) {
    .cards-de-texto__item {
        padding-bottom: 71px;
    }
    .cards-de-texto__link-text {
        width: calc(100% - 64px);
        height: 32px;
        bottom: 16px;
        left: 32px;
        font-size: var(--font-m);
    }
}