.js-home-slider-section .slider-slide {
    max-height: 390px;
    overflow: hidden;
}

.natiene-banner-logo {
    display: none !important;
}

.logo-img,
.natiene-fallback-logo {
    background: transparent !important;
}

.natiene-fallback-logo {
    display: inline-block;
    width: min(640px, 86vw);
    height: auto;
}

.js-home-slider-section .slider-image {
    width: 100%;
    height: min(32vw, 390px);
    object-fit: cover;
    object-position: center;
}

@media (min-width: 992px) {
    .js-item-product.col-md-4 {
        flex: 0 0 25%;
        max-width: 25%;
        margin-bottom: 28px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .js-item-product .item,
    .js-item-product .item-image,
    .js-item-product .js-product-item-image-link-private {
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1200px) {
    .js-item-product .item,
    .js-item-product .item-image,
    .js-item-product .js-product-item-image-link-private {
        max-width: 232px;
    }
}

.js-item-product .item-description {
    padding: 10px 4px 0;
}

.js-item-product .item-description .item-link {
    color: inherit !important;
    text-decoration: none !important;
}

.js-item-product .item-name {
    min-height: 34px;
    margin-bottom: 6px !important;
    color: #5a4635 !important;
    font-size: 12px !important;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
}

.js-item-product .item-price-container {
    min-height: 22px;
    margin-top: 2px;
    margin-bottom: 0;
}

.js-item-product .item-price {
    color: #4f392b !important;
    font-size: 13px !important;
    font-weight: 700;
    line-height: 1.2;
}

.js-item-product .item-actions {
    margin-top: 8px !important;
    padding-top: 0 !important;
}

.js-item-product .item-submit-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.js-item-product .natiene-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 150px);
    min-height: 32px;
    margin: 9px auto 0;
    padding: 7px 12px;
    border: 0;
    border-radius: 4px;
    background: #8f0d2c;
    box-shadow: none;
    color: #fff !important;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    appearance: none;
}

.js-item-product .natiene-buy-btn:hover,
.js-item-product .natiene-buy-btn:focus {
    background: #731025;
    color: #fff !important;
    text-decoration: none;
}

.js-item-product .item-quickshop-icon,
.js-item-product .natiene-buy-original-hidden {
    display: none !important;
}

.natiene-flipbook-section {
    width: min(1120px, calc(100% - 32px));
    margin: 28px auto 38px;
    padding: 28px;
    border: 1px solid #eaded2;
    border-radius: 8px;
    background: #fffaf5;
    color: #4f392b;
}

.natiene-flipbook-copy {
    margin: 0 auto 18px;
    text-align: center;
}

.natiene-flipbook-copy span {
    display: inline-block;
    margin-bottom: 6px;
    color: #8f0d2c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.natiene-flipbook-copy h2 {
    margin: 0 0 6px;
    color: #3f2a1d;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: 0;
}

.natiene-flipbook-copy p {
    margin: 0;
    color: #725946;
    font-size: 15px;
}

.natiene-flipbook-stage {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 14px;
    align-items: center;
}

.natiene-flipbook {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: min(760px, 100%);
    margin: 0 auto;
    perspective: 1600px;
    filter: drop-shadow(0 16px 28px rgba(58, 36, 22, .18));
}

.natiene-flipbook::after {
    content: "";
    position: absolute;
    inset: 0 50% 0 auto;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(79, 57, 43, .28), transparent);
    z-index: 3;
}

.natiene-flipbook-page {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.22;
    background: #fff;
    border: 1px solid #e5d7c8;
    transform-style: preserve-3d;
    transition: transform .42s ease, box-shadow .42s ease;
}

.natiene-flipbook-left {
    border-radius: 7px 0 0 7px;
    transform-origin: right center;
}

.natiene-flipbook-right {
    border-radius: 0 7px 7px 0;
    transform-origin: left center;
}

.natiene-flipbook-page img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f7efe7;
}

.natiene-flipbook.is-turning-next .natiene-flipbook-right {
    animation: natiene-page-next .52s ease both;
}

.natiene-flipbook.is-turning-prev .natiene-flipbook-left {
    animation: natiene-page-prev .52s ease both;
}

@keyframes natiene-page-next {
    0% { transform: rotateY(0); box-shadow: 0 0 0 rgba(0,0,0,0); }
    50% { transform: rotateY(-62deg); box-shadow: -22px 10px 28px rgba(45,28,18,.18); }
    100% { transform: rotateY(0); box-shadow: 0 0 0 rgba(0,0,0,0); }
}

@keyframes natiene-page-prev {
    0% { transform: rotateY(0); box-shadow: 0 0 0 rgba(0,0,0,0); }
    50% { transform: rotateY(62deg); box-shadow: 22px 10px 28px rgba(45,28,18,.18); }
    100% { transform: rotateY(0); box-shadow: 0 0 0 rgba(0,0,0,0); }
}

.natiene-flipbook-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #ddcabc;
    border-radius: 999px;
    background: #fff;
    color: #6a442a;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.natiene-flipbook-nav:disabled {
    cursor: default;
    opacity: .35;
}

.natiene-flipbook-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.natiene-flipbook-counter {
    min-width: 54px;
    font-weight: 800;
    text-align: center;
}

.natiene-flipbook-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 4px;
    background: #8f0d2c;
    color: #fff !important;
    font-weight: 800;
    text-decoration: none !important;
}

.natiene-flipbook-thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.natiene-flipbook-thumbs button {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    padding: 2px;
    border: 1px solid #ddcabc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    opacity: .72;
}

.natiene-flipbook-thumbs button.is-active {
    border-color: #8f0d2c;
    opacity: 1;
}

.natiene-flipbook-thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .js-home-slider-section .slider-slide {
        max-height: 280px;
    }

    .js-home-slider-section .slider-image {
        height: min(52vw, 280px);
    }

    .natiene-flipbook-section {
        width: calc(100% - 20px);
        padding: 18px 12px;
    }

    .natiene-flipbook-stage {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 8px;
    }

    .natiene-flipbook {
        grid-template-columns: 1fr;
        width: min(360px, 100%);
    }

    .natiene-flipbook::after,
    .natiene-flipbook-left {
        display: none;
    }

    .natiene-flipbook-right {
        border-radius: 7px;
    }

    .natiene-flipbook-nav {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .natiene-flipbook-footer {
        flex-wrap: wrap;
    }

}

/* Flipbook do livro de colorir: visual de revista, com paginas lado a lado. */
.natiene-flipbook {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(860px, 100%) !important;
    overflow: visible;
    isolation: isolate;
    perspective: 2200px;
}

.natiene-flipbook::before {
    content: "";
    position: absolute;
    inset: 12px 50% 12px auto;
    width: 20px;
    transform: translateX(50%);
    background: linear-gradient(90deg, rgba(45, 28, 18, .16), rgba(255, 255, 255, .3), rgba(45, 28, 18, .14));
    pointer-events: none;
    z-index: 4;
}

.natiene-flipbook::after {
    display: block !important;
    z-index: 5;
}

.natiene-flipbook-page {
    display: block !important;
    aspect-ratio: 1 / 1.34;
    box-shadow: inset 0 0 18px rgba(74, 48, 30, .08);
}

.natiene-flipbook-page img {
    object-fit: contain !important;
    background: #fff;
}

.natiene-flipbook-left {
    border-radius: 8px 0 0 8px !important;
}

.natiene-flipbook-right {
    border-radius: 0 8px 8px 0 !important;
}

.natiene-flipbook-page.is-blank {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 239, 230, .82)),
        repeating-linear-gradient(0deg, transparent 0 22px, rgba(114, 89, 70, .08) 23px 24px);
}

.natiene-flipbook-page.is-blank img {
    display: none;
}

.natiene-flipbook.is-turning-next .natiene-flipbook-right,
.natiene-flipbook.is-turning-prev .natiene-flipbook-left {
    animation: none !important;
    transform: none !important;
}

.natiene-flipbook-turn {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transform-style: preserve-3d;
}

.natiene-flipbook-turn.is-next {
    left: 50%;
    transform-origin: left center;
}

.natiene-flipbook-turn.is-prev {
    left: 0;
    transform-origin: right center;
}

.natiene-flipbook-turn-face {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5d7c8;
    backface-visibility: hidden;
    box-shadow: inset 0 0 24px rgba(74, 48, 30, .08);
}

.natiene-flipbook-turn-front {
    transform: rotateY(0deg);
}

.natiene-flipbook-turn-back {
    transform: rotateY(180deg);
}

.natiene-flipbook-turn-face img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.natiene-flipbook.is-turning-next .natiene-flipbook-turn.is-next {
    opacity: 1;
    animation: natiene-magazine-next .72s cubic-bezier(.2, .72, .18, 1) both;
}

.natiene-flipbook.is-turning-prev .natiene-flipbook-turn.is-prev {
    opacity: 1;
    animation: natiene-magazine-prev .72s cubic-bezier(.2, .72, .18, 1) both;
}

@keyframes natiene-magazine-next {
    0% { transform: rotateY(0deg); box-shadow: -3px 0 10px rgba(55, 34, 22, .10); }
    45% { box-shadow: -24px 10px 34px rgba(55, 34, 22, .24); }
    100% { transform: rotateY(-180deg); box-shadow: -4px 0 12px rgba(55, 34, 22, .08); }
}

@keyframes natiene-magazine-prev {
    0% { transform: rotateY(0deg); box-shadow: 3px 0 10px rgba(55, 34, 22, .10); }
    45% { box-shadow: 24px 10px 34px rgba(55, 34, 22, .24); }
    100% { transform: rotateY(180deg); box-shadow: 4px 0 12px rgba(55, 34, 22, .08); }
}

@media (max-width: 767px) {
    .natiene-flipbook {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        width: min(560px, 100%) !important;
    }

    .natiene-flipbook::after,
    .natiene-flipbook-left {
        display: block !important;
    }

    .natiene-flipbook-page {
        aspect-ratio: 1 / 1.42;
    }
}

.natiene-view-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(180px, 100%);
    min-height: 36px;
    margin: 10px auto 0;
    padding: 0 14px;
    border: 1px solid #8f0d2c;
    border-radius: 4px;
    background: #fff;
    color: #8f0d2c;
    font: inherit;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}

.natiene-view-book-btn:hover,
.natiene-view-book-btn:focus {
    background: #8f0d2c;
    color: #fff;
}

.natiene-book-preview-card {
    width: min(240px, calc(100% - 32px));
    margin: 24px auto 34px;
    text-align: center;
    color: #4f392b;
}

.natiene-book-preview-thumb {
    aspect-ratio: 1;
    background: #efe7de;
    overflow: hidden;
}

.natiene-book-preview-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.natiene-book-preview-info h2 {
    margin: 12px 0 6px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.natiene-book-preview-info p {
    margin: 0;
    font-size: 13px;
    color: #725946;
}

body.natiene-book-reader-open {
    overflow: hidden;
}

.natiene-book-modal[hidden] {
    display: none !important;
}

.natiene-book-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 18px;
}

.natiene-book-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(35, 24, 18, .62);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.natiene-book-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    width: min(920px, 100%);
    height: min(92vh, 820px);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: #f8f1e9;
    color: #402a1d;
    box-shadow: 0 26px 70px rgba(20, 12, 8, .36);
}

.natiene-book-head,
.natiene-book-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.natiene-book-head span {
    display: block;
    margin-bottom: 2px;
    color: #8f0d2c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.natiene-book-head strong {
    display: block;
    font-size: clamp(18px, 2vw, 25px);
    line-height: 1.1;
}

.natiene-book-close,
.natiene-book-toolbar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddcabc;
    background: #fff;
    color: #6a442a;
    cursor: pointer;
}

.natiene-book-close {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-size: 26px;
    line-height: 1;
}

.natiene-book-toolbar {
    justify-content: center;
    margin: 8px 0 12px;
}

.natiene-book-toolbar button {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    font-size: 27px;
    line-height: 1;
}

.natiene-book-toolbar button:disabled {
    opacity: .35;
    cursor: default;
}

.natiene-book-counter {
    min-width: 70px;
    font-weight: 800;
    text-align: center;
}

.natiene-book-stage {
    display: grid;
    place-items: center;
    min-height: 0;
    padding: 12px;
    border-radius: 8px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, .62), transparent 62%),
        linear-gradient(180deg, #efe4da, #e8dbcf);
    perspective: 2400px;
    overflow: hidden;
}

.natiene-book-page {
    --book-turn-rotate: 0deg;
    --book-turn-skew: 0deg;
    --book-turn-lift: 8px;
    --book-turn-shadow: .12;
    --book-turn-sheen: 0;
    position: relative;
    width: min(520px, 86vw);
    max-height: 100%;
    aspect-ratio: 1 / 1.34;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 48px rgba(42, 25, 16, .22);
    transform-style: preserve-3d;
    cursor: grab;
    touch-action: none;
    overflow: visible;
}

.natiene-book-page.is-dragging {
    cursor: grabbing;
}

.natiene-book-page > img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: contain;
    background: #fff;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.natiene-book-corner {
    position: absolute;
    bottom: 0;
    width: 28%;
    height: 28%;
    z-index: 5;
    pointer-events: none;
}

.natiene-book-corner-left {
    left: 0;
    background: linear-gradient(45deg, rgba(143, 13, 44, .11), transparent 46%);
}

.natiene-book-corner-right {
    right: 0;
    background: linear-gradient(315deg, rgba(143, 13, 44, .11), transparent 46%);
}

.natiene-book-turn {
    position: absolute;
    inset: 0;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform-style: preserve-3d;
}

.natiene-book-turn.is-next {
    transform-origin: left center;
}

.natiene-book-turn.is-prev {
    transform-origin: right center;
}

.natiene-book-turn.is-active {
    transform:
        translate3d(0, 0, var(--book-turn-lift))
        rotateY(var(--book-turn-rotate))
        skewY(var(--book-turn-skew));
}

.natiene-book-turn-face {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    backface-visibility: hidden;
    box-shadow: 0 24px 52px rgba(40, 24, 16, calc(var(--book-turn-shadow) * .82));
}

.natiene-book-turn-front {
    transform: translateZ(1px);
}

.natiene-book-turn-front::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, calc(var(--book-turn-sheen) * .9)), transparent 36%, rgba(20, 12, 8, calc(var(--book-turn-shadow) * .38)));
    mix-blend-mode: screen;
}

.natiene-book-turn-back {
    transform: rotateY(180deg) translateZ(1px);
}

.natiene-book-turn-back::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 12, 8, calc(var(--book-turn-shadow) * .22)), rgba(255, 255, 255, .18) 16%, transparent 48%);
    z-index: 1;
    pointer-events: none;
}

.natiene-book-turn-face img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.natiene-book-turn-edge {
    position: absolute;
    top: 3%;
    bottom: 3%;
    width: 22px;
    filter: blur(8px);
    opacity: calc(var(--book-turn-shadow) + .12);
    background: linear-gradient(90deg, rgba(20, 12, 8, .42), transparent);
}

.natiene-book-turn.is-next .natiene-book-turn-edge {
    right: -8px;
}

.natiene-book-turn.is-prev .natiene-book-turn-edge {
    left: -8px;
    transform: scaleX(-1);
}

.natiene-book-thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.natiene-book-thumbs button {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 2px;
    border: 1px solid #ddcabc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    opacity: .68;
}

.natiene-book-thumbs button.is-active {
    border-color: #8f0d2c;
    opacity: 1;
}

.natiene-book-thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.natiene-thumb-crop {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 200%;
    background-position: center top;
    background-color: #8b7c6b;
}

.natiene-thumb-crop.is-crop-bottom {
    background-position: center bottom;
}

@media (max-width: 767px) {
    .natiene-book-modal {
        padding: 8px;
    }

    .natiene-book-dialog {
        height: min(94vh, 760px);
        padding: 12px;
    }

    .natiene-book-stage {
        padding: 8px;
    }

    .natiene-book-page {
        width: min(420px, 88vw);
    }
}

.natiene-pageflip-dialog {
    width: min(1180px, 100%);
    height: min(94vh, 820px);
    grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.natiene-pageflip-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 14px;
    border-radius: 8px;
    background: #8b7c6b;
    overflow: hidden;
}

.natiene-pageflip-book {
    width: min(1080px, 92vw);
    height: min(68vh, 620px);
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.natiene-pageflip-book .stf__parent,
.natiene-pageflip-book .stf__wrapper,
.natiene-pageflip-book .stf__block {
    margin-left: auto !important;
    margin-right: auto !important;
}

.natiene-pageflip-page {
    background: #8b7c6b;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(40, 24, 16, .22);
}

.natiene-pageflip-paper {
    width: 100%;
    height: 100%;
    background: #8b7c6b;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.natiene-pageflip-paper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #8b7c6b;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.natiene-pageflip-paper.is-crop {
    padding: 0;
    background: #8b7c6b;
}

.natiene-page-crop-window {
    width: 100%;
    aspect-ratio: 2 / 1;
    background-repeat: no-repeat;
    background-size: 100% 200%;
    background-position: center top;
    background-color: #8b7c6b;
}

.natiene-page-crop-window.is-crop-bottom {
    background-position: center bottom;
}

.natiene-pageflip-book.is-fallback {
    display: grid;
    place-items: center;
}

.natiene-pageflip-page.is-fallback-page {
    width: min(760px, 90vw);
    height: min(58vh, 537px);
}

@media (max-width: 767px) {
    .natiene-pageflip-dialog {
        height: min(94vh, 760px);
    }

    .natiene-pageflip-stage {
        padding: 8px;
    }

    .natiene-pageflip-book {
        width: min(620px, 90vw);
        height: min(62vh, 438px);
    }
}
