/* ============= STANDARD SETTINGS ============= */
* {
    margin: 0;
    padding: 0;
}

body {
    scroll-behavior: smooth;
    background-color: #27355C;
    padding-top: 3.75rem;
}

a {
    text-decoration: none;
    background-color: transparent
}

/* ============= /STANDARD SETTINGS ============= */

/* =============== CONTAINERS ================== */
.w_896 {
    max-width: 896px;
    margin: 0 auto;
}

/* =============== CONTAINERS ================== */

/* ========= LOGO ======== */
.logo {
    width: 9.375rem;
    height: 3rem;
    margin-bottom: var(--vox-spacing-large);
}

.logo img {
    width: 100%;
    height: 100%;
}
/* ========= LOGO ======== */

/* ========= LIMITATION OF LINES ============= */
.text-truncate-1,
.text-truncate-2,
.text-truncate-3,
.text-truncate-4,
.text-truncate-5,
.text-truncate-6,
.text-truncate-9 {
    overflow: hidden;
    text-overflow: ellipsis;
    text-overflow: -o-ellipsis-lastline;
    display: -webkit-box;
    display: box;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -moz-box-orient: vertical;
}

.text-truncate-1 {
    -webkit-line-clamp: 1
}

.text-truncate-2 {
    -webkit-line-clamp: 2
}

.text-truncate-3 {
    -webkit-line-clamp: 3
}

.text-truncate-4 {
    -webkit-line-clamp: 4
}

.text-truncate-5 {
    -webkit-line-clamp: 5
}

.text-truncate-6 {
    -webkit-line-clamp: 6;
}

.text-truncate-9 {
    -webkit-line-clamp: 9;
}

/* ========= /LIMITATION OF LINES ============= */

/* ============ BUTTONS ============== */
.btn {
    color: var(--vox-color-fdr-neutral-lighter);
    background-color: var(--vox-color-fdr-primary-dark);
    border-radius: var(--vox-border-radius-pill);
    font-size: var(--vox-font-size-xs);
    font-family: var(--vox-font-family-body-sans);
    font-weight: var(--vox-font-weight-bold);
    line-height: var(--vox-font-height-small);
    padding: var(--vox-spacing-xs) var(--vox-spacing-medium);
}

.btn:hover {
    color: var(--vox-color-fdr-neutral-darker);
    background-color: var(--vox-color-fdr-primary-medium);
}

.btn__secundary {
    color: var(--vox-color-fdr-primary-dark);
    background-color: transparent;
    border: 1px solid var(--vox-color-fdr-primary-dark);
}

.btn__secundary:hover {
    background-color: var(--vox-color-fdr-primary-dark);
    color: var(--vox-color-fdr-primary-medium);
}

.btn:focus {
    color: var(--vox-color-fdr-secondary-medium);
    background-color: var(--vox-color-fdr-primary-light);
}

.btn:target {
    border: 2px solid var(--vox-color-fdr-primary-dark);
    color: var(--vox-color-fdr-primary-dark);
    background-color: transparent;
}


/* ============ /BUTTONS ============== */

/* ======== TEXT AND PARAGRAPHS ========= */
h1 {
    font-size: var(--vox-font-size-large);
    line-height: var(--vox-font-height-medium);
}

h2 {
    font-size: var(--vox-font-size-medium);
    line-height: var(--vox-font-height-medium);
}

h3 {
    font-size: var(--vox-font-size-small);
    line-height: var(--vox-font-height-medium);
}

h5 {
    font-size: var(--vox-font-size-xxs);
    line-height: var(--vox-font-height-small);
}

h6 {
    font-size: var(--vox-font-size-xxxs);
    line-height: var(--vox-font-height-small);
}

p {
    font-size: var(--vox-font-size-xs);
    line-height: var(--vox-font-height-medium);
}

/* ======== /TEXT AND PARAGRAPHS ========= */

/* ========= SUBTITULOS COM "VER MAIS" ============*/
.category__subtitle--seeall a {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.category__subtitle--seeall a:after {
    width: 12px;
    height: 19px;
    margin-left: 10px;
    background-repeat: no-repeat;
    background-image: url(../assets/imgs/icons/arrows-seall.png);
}

.category__subtitle--seeall a:after {
    content: 'Ver mais';
    font-family: var(--vox-font-family-body-sans);
    display: flex;
    align-items: center;
    font-size: 0;
    transition: all .3s ease-in-out;
}

.category__subtitle--seeall a:hover:after {
    width: 105px;
    font-size: 20px;
    color: var(--vox-color-fdr-primary-dark);
    background-position: center right;
}

.line__vertical--stroke:before {
    width: 6px;
    content: "";
    height: 35px;
    flex-shrink: 0;
    background-color: var(--vox-color-fdr-primary-dark);
    display: flex;
    margin-right: 8px;
}

/* ========= SUBTITULOS COM "VER MAIS" ============*/

/* ============ OWL-CAROUSEL ============ */
.c-nav--carousel .owl-dots {
    display: flex;
    width: 100%;
    height: 25px;
    align-items: center;
    justify-content: center;
    margin-top: var(--vox-spacing-medium);
}

.c-nav--carousel .owl-dots button.owl-dot {
    width: 24px;
    height: 8px;
    background-color: var(--vox-color-fdr-neutral-medium);
    border-radius: 24px;
    margin-right: 8px;
}

.c-nav--carousel .owl-dots button.owl-dot.active {
    background-color: var(--vox-color-fdr-primary-dark);
}

.c-nav--carousel .owl-nav button {
    position: absolute;
    z-index: 2;
    bottom: 50%;
    width: 40px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--vox-border-radius-medium) !important;
    background-color: var(--vox-color-fdr-primary-light) !important;
    background-image: url(../assets/imgs/icons/arrows-carousel.svg) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    opacity: 50%;
    margin: 0 5px;
    transition: .3s;
}

.c-nav--carousel .owl-nav button:hover {
    background-color: var(--vox-color-fdr-primary-medium) !important;
    opacity: 1;
}

.c-nav--carousel .owl-nav button:focus {
    background-color: var(--vox-color-fdr-primary-dark) !important;
    background-image: url(../assets/imgs/icons/arrows-carousel-focus.svg) !important;


}

.c-nav--carousel .owl-nav button span {
    display: none;
}

.c-nav--carousel .owl-nav button.owl-next {
    right: 0;
    transform: rotate(0.5turn);
}

.c-nav--carousel .owl-nav .owl-next.disabled {
    opacity: 0;
}

/* ============ OWL-CAROUSEL ============ */

/* ========== SUBTITULO DAS CATEGORIAS ========== */
.category__subtitle,
.category__subtitle a {
    font-family: var(--vox-font-family-body-sans);
    font-weight: var(--vox-font-weight-bold);
}

.category__subtitle {
    color: var(--vox-color-fdr-neutral-darker);
}

.category__subtitle a {
    color: var(--vox-color-fdr-secondary-dark);
}

/* ========== /SUBTITULO DAS CATEGORIAS ========== */

/* ========== CATEGORIAS DE FILTRO ========== */
.list-filter {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    flex-wrap: wrap;
}

.list-filter__item {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.list-filter__item input {
    opacity: 0;
    position: absolute;
}

.list-filter__item label {
    border-radius: var(--vox-border-radius-pill);
    color: var(--vox-color-fdr-secondary-dark);
    border: 2px solid var(--vox-color-fdr-neutral-medium);
    line-height: var(--vox-font-height-small);
    margin: 0;
    height: 30px;
    transition: .3s;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: var(--vox-font-size-xxs);
    font-weight: var(--vox-font-weight-bold);
    font-family: var(--vox-font-family-body-sans);
    width: 226px;
    height: 45px;
    justify-content: center;
}

.list-filter__item input:checked+label {
    background-color: var(--vox-color-fdr-secondary-dark);
    border-color: var(--vox-color-fdr-secondary-dark);
    color: var(--vox-color-fdr-neutral-lighter);
}

.list-filter__item input:checked+label:hover {
    background-color: var(--vox-color-fdr-secondary-light);
    border-color: var(--vox-color-fdr-secondary-light);
    color: var(--vox-color-fdr-neutral-darker);
}

.fieldset-filter {
    font-family: var(--vox-font-family-body-sans);
    font-size: var(--vox-font-size-xxs);
}

.fieldset-filter__category span {
    font-weight: var(--vox-font-weight-bold);
}

.filter__item__btn.active {
    border: 2px solid var(--vox-color-fdr-secondary-dark);
    background: var(--vox-color-fdr-secondary-dark);
    color: var(--vox-color-fdr-neutral-lighter);
}

.filter__item__btn.active:hover {
    background-color: var(--vox-color-fdr-secondary-light);
    border-color: var(--vox-color-fdr-secondary-light);
    color: var(--vox-color-fdr-neutral-darker);
}

/* ========== /CATEGORIAS DE FILTRO ========== */

/* ==================== CARTOLA DAS TAGS ============== */
.box__item__tags {
    display: flex;
    gap: var(--vox-spacing-xxxs);
}

.box__item__tags span {
    font-family: var(--vox-font-family-body-sans);
    font-weight: var(--vox-font-weight-semibold);
    border: 2px solid var(--vox-color-fdr-primary-light);
    line-height: var(--vox-font-height-small);
    font-size: var(--vox-font-size-xxxs);
    color: var(--vox-color-fdr-primary-light) !important;
    padding: var(--vox-spacing-xxxs);
}

/* ==================== CARTOLA DAS TAGS ============== */

/* =================== BREADCRUMB ==================== */
.breadcrumb-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: end !important;
    height: 38px;
}

.breadcrumb {
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
    background-color: transparent;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    max-width: 150px;
}

.breadcrumb-item a {
    font-family: var(--vox-font-family-body-sans);
    font-size: var(--vox-font-size-xxs);
    font-weight: var(--vox-font-weight-bold);
    color: var(--vox-color-fdr-primary-dark);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .5s;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active a {
    color: var(--vox-color-fdr-neutral-medium);
    font-weight: var(--vox-font-weight-regular);
    pointer-events: none;
}

.breadcrumb-item:not(:last-of-type):after {
    content: "";
    width: 2px;
    height: 10px;
    flex-shrink: 0;
    background-color: #6A8BB4;
    display: flex;
    margin-left: 10px;
}

/* =================== BREADCRUMB ==================== */

/* ============== PRICE =========== */
 .price {
    color: var(--vox-color-fdr-neutral-darker);
}
 .price span {
    color: #098260;
}
/* ============== PRICE =========== */

/* =========== SUPORTE =========== */
.c-support__info h3 {
    font-family: var(--vox-font-family-body-sans);
    font-size: var(--vox-font-size-medium);
    line-height: var(--vox-font-height-medium);
}

.c-support__info p {
    font-family: var(--vox-font-family-body-serif);
    font-size: var(--vox-font-size-xs);
    line-height: var(--vox-font-height-large);
}

.u-card-padding {
    padding: var(--vox-spacing-small) var(--vox-spacing-xs);
}

.c-support__btn {
    gap: 16px;
}

/* =========== SUPORTE =========== */

/* =================== MEDIA QUERY =================== */
@media screen and (max-width: 768px) {
    h1 {
        font-size: var(--vox-font-size-medium);
    }

    h2 {
        font-size: var(--vox-font-size-medium);
        line-height: var(--vox-font-height-medium);
    }

    h3 {
        font-size: var(--vox-font-size-xs);
    }

    p {
        font-size: var(--vox-font-size-xxs);
    }
}

@media screen and (max-width: 575px) {
    .c-support__info h3 {
        font-size: var(--vox-font-size-small);
        line-height: var(--vox-font-size-medium);
    }

    .c-support__info p {
        font-size: var(--vox-font-size-xxs);
        line-height: var(--vox-font-height-medium);
    }

    .c-support__btn {
        flex-direction: column;
        width: max-content;
        margin: 0 auto;
    }

}

/* =================== MEDIA QUERY =================== */