﻿/* ===== Hero custom (miecovaso) — header diferente da criacopo ===== */

.page-home {
    padding-top: calc(var(--header-h) + 20px);
    margin-top: 0 !important;
    min-height: 100vh;
}

.hero-grid {
    box-sizing: border-box;
    width: 1240px;
    max-width: calc(100% - 40px);
    margin: 0 auto 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px;
}

.hero-main {
    position: relative;
    box-sizing: border-box;
    flex: 0 0 610px;
    width: 610px;
    max-width: 610px;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background: #1f6b4a;
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.hero-main__img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-main__img.is-missing {
    display: none !important;
}

.hero-main__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgb(0 0 0 / 58%) 78%, rgb(0 0 0 / 72%) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-main__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
}

.hero-main__title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: bold;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0 0 10px;
    text-shadow: 0 2px 16px rgb(0 0 0 / 35%);
}

.hero-main__title em {
    font-style: normal;
}

.hero-main__cta {
    display: none;
}

.hero-main__perks {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 12px 0 0;
}

.hero-main__perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.hero-main__perks li:nth-child(1) {
    max-width: 180px;
}

.hero-main__perks li:nth-child(2) {
    max-width: 160px;
}

.hero-main__perks li .hero-main__perk-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
}

.hero-main__perk-icon {
    width: 50px;
    height: 50px;
}

.hero-side {
    box-sizing: border-box;
    flex: 0 0 610px;
    width: 610px;
    max-width: 610px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-card {
    box-sizing: border-box;
    width: 610px;
    max-width: 610px;
    height: 240px;
    border-radius: 24px;
    padding: 15px 30px 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.hero-card h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 12px;
    line-height: 1.15;
}

.hero-card--steps {
    background: var(--color-primary);
}

.hero-card--features {
    background: var(--color-accent);
}

.hero-steps {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 4px;
}

.hero-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-steps__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #f3efe4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-steps p {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    color: #fff;
}

.hero-steps strong {
    font-weight: bold;
}

.hero-steps em {
    font-style: italic;
    font-weight: 400;
}

.hero-card--features h2 {
    margin-bottom: 30px;
    line-height: 130%;
    margin-top: 20px;
}

.hero-features {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
}

.hero-features__icon {
    width: 50px;
    height: 50px;
}

.hero-features__text {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
}

@media (max-width: 1260px) {
    .hero-grid {
        width: 610px;
        max-width: calc(100% - 32px);
        flex-direction: column;
        align-items: center;
    }

    .hero-main,
    .hero-side,
    .hero-card {
        flex-basis: auto;
        width: 100%;
        max-width: 610px;
    }

    .hero-main {
        height: auto;
        aspect-ratio: 610 / 500;
    }

    .hero-card {
        height: 240px;
    }
}

@media (max-width: 640px) {
    .page-home {
        padding-top: var(--header-h);
    }

    .hero-grid {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0 0 40px;
        padding: 0;
    }

    .hero-main {
        width: 100%;
        max-width: none;
        height: calc(100svh - var(--header-h));
        aspect-ratio: auto;
        border-radius: 0;
        box-shadow: none;
        cursor: pointer;
    }

    .hero-main:focus-visible {
        outline: 3px solid var(--mid-green);
        outline-offset: -3px;
    }

    .hero-main__img {
        object-position: center top;
    }

    .hero-main__shade {
        background: linear-gradient(180deg, rgb(0 0 0 / 52%) 0%, transparent 30%);
    }

    .hero-main__content {
        inset: 0;
        padding: 0;
    }

    .hero-main__title {
        font-size: 36px;
        line-height: 1.25;
        max-width: 280px;
        margin: 0;
        padding: 18px 10px;
        text-shadow: 0 2px 10px rgb(0 0 0 / 55%);
    }

    .hero-main__title span {
        display: block;
    }

    .hero-main__cta {
        position: absolute;
        left: 50%;
        bottom: 128px;
        transform: translateX(-50%);
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 166px;
        white-space: nowrap;
    }

    .hero-main__perks {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: var(--color-accent);
    }

    .hero-main__perks li,
    .hero-main__perks li:nth-child(1),
    .hero-main__perks li:nth-child(2) {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 1 auto;
        width: auto;
        max-width: none;
        height: 100%;
        padding: 0 20px;
        gap: 14px;
    }

    .hero-main__perks:not(.is-slider-ready) li:not(:first-child),
    .hero-main__perks.is-slider-ready li:not(.is-active) {
        display: none;
    }

    .hero-main__perks.is-slider-ready li.is-active {
        animation: hero-perk-in 0.35s ease both;
    }

    .hero-main__perks li .hero-main__perk-text {
        flex: 0 1 auto;
        font-size: 16px;
        line-height: 1.25;
    }

    .hero-main__perk-icon,
    .hero-main__perk-icon img {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
    }

    .hero-side {
        display: none;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-card {
        height: auto;
        min-height: 240px;
    }

    .hero-card--features h2 {
        margin-bottom: 16px;
    }

    .cr-img-hover {
        opacity: 1 !important;
    }
}

@keyframes hero-perk-in {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Home espelhada da criacopo (abaixo do hero) ===== */
.text,
.title,
h1,
h2,
h3 {
    font-weight: 400;
}

.aviso-feriado {
    background-color: #9293F8;
}

.avaliacoes .card {
    transition: 0.3s ease-in-out;
}

.avaliacoes .card {
    box-shadow: 3px 5px 19px rgb(0 0 0 / 15%);
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slick-prev {
    left: 30px !important;
}

.slick-next {
    right: 30px !important;
}

.slick-next:after,
.slick-prev:after {
    display: none !important;
}

h1,
h2,
h3 {
    font-family: "Open Sans" !important;
}

.title {
    color: #000;
    font-size: 20px !important;
}

.a-padrao,
.text {
    font-size: 14px !important;
    color: #000;
}

.text {
    line-height: 20px;
}

div.title h3,
div.titulo h3 {
    font-size: 20px;
    font-weight: 400;
}

.a-padrao {
    text-decoration: underline !important;
}

.page-home {
    margin-top: 75px;
}

.aviso-feriado {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.aviso-feriado p {
    color: #fff;
    font-size: 14px;
    max-width: 950px;
    text-align: center;
}

.page-home div.banner-full {
    min-height: 200px;
    overflow: hidden;
    position: relative;
}

.page-home div.banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.banner-personalize {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 320;
    overflow: hidden;
    background: #e8e8e8;
}

/* Banner: altura fixa pelo aspect-ratio — sk-ui e sk-body ocupam o mesmo box */
.banner-personalize.sk-wrap:not(.is-ready)>.sk-ui,
.banner-personalize.sk-wrap.is-ready>.sk-ui,
.banner-personalize.sk-wrap:not(.is-ready)>.sk-body,
.banner-personalize.sk-wrap.is-ready>.sk-body {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.banner-personalize.sk-wrap:not(.is-ready)>.sk-body {
    opacity: 0;
    pointer-events: none;
}

.banner-personalize.sk-wrap.is-ready>.sk-body {
    opacity: 1;
    pointer-events: auto;
}

.banner-personalize.sk-wrap.is-ready>.sk-ui {
    opacity: 0;
    visibility: hidden;
}

.banner-personalize-link {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
}

.banner-personalize-img.desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    margin-bottom: 0;
}

.banner-personalize-img.mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    inset: 0;
}

.banner-personalize-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.banner-personalize-inner {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 80px;
}

.banner-personalize-title {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(36px, 4.2vw, 70px);
    font-weight: bold;
    line-height: 110%;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0 0 24px;
    max-width: 52%;
}

h1.banner-personalize-title {
    margin: 0 0 24px;
}

.banner-personalize-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: bold;
    height: auto;
    min-height: 48px;
    padding: 12px 28px 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

/* Faixa de benefícios abaixo do banner */
.banner-benefits {
    background-color: #9293F8;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    min-height: 90px;
    /* padding 20+20 + ícone 50 — evita CLS */
}

.banner-benefits-track {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.banner-benefits-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 1 auto;
}

.banner-benefits-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-benefits-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-benefits-text {
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 130%;
    text-align: left;
}

.banner-benefits-title {
    font-weight: bold;
    font-size: 16px;
}

.banner-benefits-desc {
    font-weight: 400;
    font-size: 16px;
}

.page-home div.banner .mobile {
    display: none;
}

@media only screen and (min-width: 1440px) {
    .desktop.banner-personalize-img {
        width: 100%;
    }
}

body {
    background-color: #fff;
}

.container {
    padding: 40px;
}

body {
    font-family: "Open Sans";
    margin: 0;
}

.grid {
    display: flex;
    justify-content: space-between;
}

.container {
    min-height: auto;
}

.container-title {
    font-size: 32px;
    color: #000000e1;
}

.scroll-container {
    display: flex;
    gap: 20px;
    min-height: auto;
}

.scrollable {
    user-select: none;
    cursor: grab;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollable::-webkit-scrollbar {
    display: none;
}

.avaliacoes {
    padding: 10px 40px 50px;
}

.avaliacoes .card {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    height: 220px;
    border-radius: 20px;
    padding: 15px;
    color: #fff;
}

.avaliacoes .card:hover {
    transform: scale(1.05);
}

.avaliacoes .card .name_avaliation {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    line-height: 24px;
    margin: 15px 0;
}

.avaliacoes .card .avaliation {
    font-size: 14px;
    color: #000000e3;
    line-height: 18px;
    margin-bottom: 10px;
    min-height: 110px;
}

.avaliacoes .card .card-img {
    display: flex;
    gap: 5px;
    justify-content: end;
}

.btn {
    height: 44px !important;
}

@media only screen and (max-width: 1050px) {
    .container.infos {
        flex-direction: column-reverse;
    }

    .container.infos .banner {
        width: 100%;
        height: auto;
    }

    .container.infos .btn {
        display: none;
    }
}

@media only screen and (max-width: 750px) {



    .container {
        padding: 40px 20px;
    }

















    .avaliacoes {
        padding: 10px 20px 50px;
    }


}

@media only screen and (max-width: 650px) {
    .page-home {
        margin-top: 75px;
    }

    .banner-personalize-content {
        display: flex;
        align-items: flex-end;
        padding-bottom: 24px;
        pointer-events: none;
    }

    .banner-personalize-inner {
        padding: 0 20px;
        width: 100%;
    }

    .banner-personalize-title {
        font-size: 32px;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .banner-benefits {
        padding: 16px 20px;
        min-height: 76px;
        /* padding 16+16 + ícone 44 */
    }

    .banner-benefits-track:not(.slick-initialized) .banner-benefits-item:not(:first-child) {
        display: none;
    }

    .banner-benefits-track .slick-slide {
        display: flex !important;
        justify-content: center;
    }

    .banner-benefits-item {
        justify-content: center;
        width: 100%;
    }

    .banner-benefits-icon {
        width: 44px;
        height: 44px;
    }

    .banner-personalize-btn {
        width: 100%;
        max-width: 220px;
        min-height: 44px;
        font-size: 16px;
    }

    .banner-personalize-img.mobile {
        display: block;
    }

    .banner-personalize-img.desktop {
        display: none;
    }

    .banner-personalize {
        aspect-ratio: 390 / 571;
    }



    .page-home div.banner .mobile {
        display: block;
        width: 100%;
        height: 100%;
    }

    .page-home div.banner .desktop {
        display: none;
    }
}

.modal-ferramenta .container {
    max-width: 1920px;
    padding: 40px 0px;
}

.modal-ferramenta .container .content {
    position: relative;
    min-height: 650px;
    height: 650px;
    /* border-radius: 20px; */
    background-image: url('/assets/site/images/paginas/home/ferramenta-personalizacao.png');
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}

.modal-ferramenta.ferramenta-viewport-active .container {
    padding-top: 0;
    padding-bottom: 0;
}

.modal-ferramenta.ferramenta-viewport-active .container .content {
    height: var(--ferramenta-viewport-h, 100vh) !important;
    min-height: var(--ferramenta-viewport-h, 100vh) !important;
}

.modal-ferramenta .container .content .modal-wait-tool {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-ferramenta .container .content .texts {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    border-radius: 20px;
    padding: 50px 30px;
}

.modal-ferramenta .container .content p {
    font-weight: 400;
    max-width: 400px;
    text-align: center;

    color: #000;
    font-size: 20px;
}

#ferramenta-personalizacao {
    width: 100%;
    height: 100%;
    border: none;
}

/* Container Principal */
.compra-rapida-container {
    max-width: 1280px;
    margin: 40px auto;
    font-family: "Open Sans", sans-serif;
    color: #333;
    padding: 0 20px;
    scroll-margin-top: calc(var(--header-h) + 16px);
}

.cr-timeline {
    position: relative;
}

/* Linha tracejada vertical ligando os passos 1/2/3 */
.cr-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    bottom: -82px;
    width: 0;
    border-left: 3px dashed var(--mid-green);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

/* Cabeçalhos dos Passos */
.cr-step {
    margin-bottom: 40px;
    position: relative;
}

.cr-step--personalize {
    margin-bottom: 0;
}

.cr-step--personalize .cr-step-header {
    margin-bottom: 0;
}

.cr-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}

.cr-step-number {
    background-color: var(--mid-green);
    color: #000;
    min-width: 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.cr-step-header h2,
.cr-step-header h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.cr-section-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 40px;
    color: #000;
}

@media only screen and (max-width: 650px) {
    .cr-section-title {
        font-size: 22px;
        margin-bottom: 28px;
        text-align: left;
    }
}

/* Espaço à esquerda para a linha tracejada ficar visível no desktop */
.cr-sizes-grid,
.cr-qty-grid,
.cr-summary-banner,
.sk-wrap--sizes {
    margin-left: 48px;
}

/* Grid de Tamanhos */
.cr-sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Cards de Tamanho */
.cr-size-card {
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.cr-size-card:hover,
.cr-size-card.active {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(145, 147, 248, 0.2);
}

.cr-size-card.active {
    outline: 2px solid var(--color-dark-emerald);
}

/* Container de Imagens */
.cr-img-wrapper {
    position: relative;
    width: 100%;
    height: 212px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container do Copo + Sombra */
.cr-img-default-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Sombra Cinza */
.cr-fundo-cinza {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Vetor do Copo */
.cr-copo-vetor {
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: 20px;
}

/* Imagem da Foto (Escondida por padrão) */
.cr-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* Lógica do Hover e Estado Ativo */
.cr-size-card:hover .cr-img-hover,
.cr-size-card.active .cr-img-hover {
    opacity: 1;
}

.cr-size-card:hover .cr-img-default-container,
.cr-size-card.active .cr-img-default-container {
    opacity: 0;
}

/* Tag "MAIS VENDIDO" */
.cr-badge {
    position: absolute;
    top: 0;
    right: 12px;
    transform: translateY(-50%);
    background-color: #9293F8;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(146, 147, 248, 0.35);
    z-index: 3;
    white-space: nowrap;
}

/* Textos do Card */
.cr-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #fff;
    border-radius: 0 0 16px 16px;
}

.cr-card-info h4 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.cr-card-info h5 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: var(--color-text);
    font-weight: bold;
    text-transform: uppercase;
}

.cr-card-info p {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #000000;
    line-height: 1.4;
    flex-grow: 1;
}

/* Responsividade */
@media (max-width: 768px) {

    /* No mobile a linha passa por trás dos cards (sem recuo lateral) */
    .cr-sizes-grid,
    .cr-qty-grid,
    .cr-summary-banner,
    .sk-wrap--sizes {
        margin-left: 0;
    }

    .cr-sizes-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        overflow: visible;
    }

    .cr-size-card {
        flex: unset;
        width: 100%;
        min-width: 0;
    }

    .cr-img-wrapper {
        height: 140px;
    }

    .cr-card-info {
        padding: 12px;
    }

    .cr-card-info h4 {
        font-size: 14px;
    }

    .cr-card-info h5 {
        font-size: 11px;
    }

    .cr-card-info p {
        font-size: 12px;
    }

    .cr-price {
        font-size: 13px;
    }

    /* Ajustes do Banner de Resumo */
    .cr-summary-banner {
        flex-direction: column;
        padding: 20px;
        align-items: center;
        padding-bottom: 30px;
    }

    .cr-summary-details {
        width: 100%;
    }

    .cr-btn-personalizar {
        width: 90%;
        bottom: -20px;
    }

    .cr-summary-banner .cr-final-row h3,
    .cr-summary-banner .cr-final-row h2 {
        font-size: 22px;
    }

    .cr-summary-banner .cr-summary-row {
        align-items: flex-start;
        gap: 12px;
    }

    .cr-summary-banner .cr-frete-row .cr-frete-left,
    .cr-summary-banner .cr-frete-row.has-quote .cr-frete-quoted {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        flex: 1;
        min-width: 0;
    }

    .cr-summary-banner .cr-frete-row .cr-frete-end {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
        gap: 6px;
        flex-shrink: 0;
    }

    .cr-summary-banner .cr-frete-link {
        margin-left: 0;
    }

    .modal-ferramenta .container .content {
        min-height: 550px !important;
        height: 550px !important;
    }

    .modal-ferramenta .container .content .texts {
        max-width: 90%;
    }

    .cr-timeline::before {
        bottom: 58px;
    }
}

.cr-price {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

/* Grid de Quantidades */
.cr-qty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.cr-qty-btn {
    background: #fff;
    border: 1px solid #b2bba6;
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
    font-family: "Open Sans", sans-serif;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.cr-qty-btn:hover {
    background: #f1f3ee;
}

.cr-qty-btn.active {
    background: #9293F8;
    border-color: #9293F8;
    color: #fff;
}

.cr-qty-btn.active .cr-qty-price,
.cr-qty-btn.active .cr-qty-val {
    color: #fff;
}

.cr-qty-val {
    font-weight: bold;
    font-size: 16px;
    color: var(--color-text);
}

.cr-qty-price {
    font-size: 16px;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .cr-qty-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
}

/* Barra de Resumo (Banner Roxo) */
.cr-summary-banner {
    background-color: var(--color-french-blue);
    border-radius: 16px;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.cr-summary-details {
    flex-grow: 1;
}

.cr-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 16px;
}

.cr-frete-row {
    margin-bottom: 24px;
}

.cr-frete-left,
.cr-frete-end {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cr-frete-quoted {
    display: none;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cr-frete-row.has-quote .cr-frete-default {
    display: none;
}

.cr-frete-row.has-quote .cr-frete-quoted {
    display: flex;
}

.cr-frete-quoted-prazo {
    color: #fff;
}

.cr-frete-link {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 700;
    margin-left: 8px;
    cursor: pointer;
}

.cr-frete-row.has-quote .cr-frete-link {
    margin-left: 0;
    text-transform: uppercase;
    font-size: 14px;
}

.cr-frete-gratis,
.cr-summary-total-small {
    font-weight: bold;
}

.cr-final-row {
    margin-bottom: 0;
}

.cr-final-row h3 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
}

.cr-final-row h2 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
    .cr-summary-banner {
        flex-direction: column;
        padding: 20px;
        align-items: center;
        padding-bottom: 50px;
    }

    .cr-summary-details {
        width: 100%;
    }

    .cr-btn-personalizar {
        width: 90%;
        bottom: -20px;
    }
}

/* FAQ - Perguntas Frequentes */
.faq-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 60px;
    margin-top: 50px;
}

.faq-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #000;
}

.faq-item {
    background-color: #f3f4f6;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: bold;
    color: #111;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-header:hover {
    background-color: #eef0f2;
}

.faq-icon-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
}

/* Seta (Chevron) */
.chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: translateY(-3px) rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-header.active .chevron {
    transform: translateY(3px) rotate(-135deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-content-inner {
    padding: 0 24px 24px 24px;
}

.faq-question {
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 16px;
    color: #000;
}

.faq-answer {
    font-weight: 400;
    font-size: 15px;
    color: #333;
    margin-bottom: 16px;
}

.faq-answer:last-child {
    margin-bottom: 0;
}

/* =========================================
   ESTILOS DO POP-UP (MODAL) DE ORÇAMENTO
   ========================================= */

/* Fundo escuro (Overlay) */
.cr-modal-overlay {
    display: none;
    /* Oculto por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

/* Container do Formulario */
.cr-modal-content {
    background-color: #e6f0eb;
    /* Fundo verde clarinho do print original */
    padding: 30px;
    border-radius: 16px;
    max-width: boldpx;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: "Open Sans", sans-serif;
}

/* Botão de Fechar (X) */
.cr-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.cr-modal-close:hover {
    color: #000;
}

/* Estilos internos do Form (Herdando a lógica do seu arquivo antigo) */
.cr-modal-content .block-title {
    margin-bottom: 20px;
    text-align: center;
}

.cr-modal-content .title-step {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.cr-modal-content .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cr-modal-content input,
.cr-modal-content select {
    flex: 1;
    height: 45px;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.cr-modal-content input:focus,
.cr-modal-content select:focus {
    border-color: #9193f8;
}

/* Botão Enviar */
.cr-mid-green-btn {
    background-color: #dafe83;
    /* Verde limão */
    color: #1d4c43;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    margin-top: 20px;
    transition: transform 0.2s;
}

.cr-mid-green-btn:hover {
    transform: scale(1.05);
}

/* Responsividade do Form */
@media (max-width: 600px) {
    .cr-modal-content .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .cr-modal-content input,
    .cr-modal-content select {
        max-width: 100% !important;
        /* Força inputs a usarem 100% no celular */
    }
}

/* =========================================
   ESTILOS DO POP-UP (MODAL) DE FRETE
   ========================================= */

.frete-modal-box {
    max-width: 380px;
    width: calc(100% - 32px);
    background-color: #fff;
    padding: 28px 24px 24px;
    border-radius: 20px;
    overflow: visible;
    box-sizing: border-box;
}

.cr-modal-content.frete-modal-box {
    background-color: #fff;
}

.frete-modal-box .cr-modal-close {
    top: 14px;
    right: 16px;
    color: var(--color-text);
}

.cr-frete-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
    margin: 0 28px 20px 0;
    font-family: "Open Sans", sans-serif;
}

.frete-modal-box .cr-frete-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-sizing: border-box;
}

.frete-modal-box .cart-shipping__fields input,
.frete-modal-box .cart-shipping__fields select {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 44px;
    padding: 0 18px;
    border: 1.5px solid var(--color-accent);
    font-size: 15px;
    text-align: center;
    box-sizing: border-box;
}

.frete-modal-box .cart-shipping__fields select {
    padding-right: 36px;
    background-position: right 16px center;
}

.cr-frete-locality-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.frete-modal-box .cr-frete-fields .cr-frete-locality-row select {
    flex: 1 1 0%;
    width: auto;
    min-width: 0;
    max-width: none;
}

.frete-modal-box .cart-shipping__search {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
}

.frete-modal-box .cart-shipping__search svg {
    width: 20px;
    height: 20px;
}

.cr-frete-new-search {
    position: relative;
    margin-bottom: 12px;
}

.cr-frete-nueva {
    width: 100%;
    height: 44px;
    padding: 0 52px 0 18px;
    border: 1.5px solid var(--color-accent);
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    font: inherit;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

.cr-frete-new-search .cart-shipping__search {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

.cr-frete-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.cr-frete-quote-card {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-accent);
    border-radius: 16px;
    background: #fff;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
}

.cr-frete-quote-card[hidden] {
    display: none;
}

.cr-frete-quote-card:hover,
.cr-frete-quote-card:focus-visible {
    background: color-mix(in srgb, var(--color-accent) 8%, white);
}

.cr-frete-quote-title {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
}

.cr-frete-quote-address {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.cr-frete-quote-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
}

.cr-frete-prazo,
.cr-frete-valor {
    margin: 0;
    color: var(--color-text);
}