/* FONTES */

@font-face {
    font-family: 'Mindset';
    src: url(fonts/MindsetWorker-BF650aa3acb20d6.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Belguri";
    src: url(fonts/Belguri.otf);
}

@font-face {
    font-family: "Giblant";
    src: url(fonts/Giblant-GOLvm.otf);
}

@font-face {
    font-family: "Hoyle";
    src: url(fonts/HoyleVariablePersonalUse-d9m87.ttf);
}

/* CÓDIGOS UNIVERSÁIS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #ffffed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    text-align: center;
    font-family: Hoyle, 'Times New Roman', Times, serif;
    font-size: 30px;
    font-weight: 500;
}

p {
    font-size: 14px;
}

a {
    text-decoration: none;
    color: inherit;

}

/* largura da barra */
::-webkit-scrollbar {
    width: 10px;
}

/* fundo da barra */
::-webkit-scrollbar-track {
    background: #fff1c9;
    border-radius: 10px;
}

/* parte que desliza */
::-webkit-scrollbar-thumb {
    background: #b19259;
    border-radius: 10px;
}

/* efeito hover */
::-webkit-scrollbar-thumb:hover {
    background: #9b7c44;
}

/* HEADER */

header .container {
    background: linear-gradient(to bottom, #221504, #2b1704);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
}

/* MENU INICIAL */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.img-logo {
    width: 40px;
}

.logo-name {
    font-family: 'Mindset Worker';
    font-size: 20px;
    font-weight: bolder;
    letter-spacing: 3px;
    color: #ffffff;
    margin: auto 0;
}

.menu-inicial ul {
    list-style: none;
    display: flex;
    gap: 16px;
}

.menu-inicial a {
    text-decoration: none;
    font-size: 14px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #ffffff;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease-in-out;
}

.menu-inicial a:hover {
    border-color: #ffffff;
}


/* BOTÃO MENU */
.menu-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 1000;
}

.menu-toggle:hover span {
    background-color: whitesmoke;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

/* ANIMAÇÃO ☰ → ✕ */

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-inicial {
    position: fixed;
    top: 0;
    right: -100%;
    width: 170px;
    height: 100vh;
    background-color: #29190b;
    padding: 15px;
    transition: 0.3s;
    z-index: 999;
}

.menu-inicial ul {
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.menu-inicial.active {
    right: 0;
}

/*====================================*/

/* PÁGINA INICAL */

.section_inicial {
    display: flex;
    padding: 22% 0 7% 0;
    background:
        url("./img/fundo-hero.png");
    background-size: contain;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.section_img1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_img1::before {
    content: "";
    position: absolute;
    inset: -1%;
    background:
        url("./img/circulo_fundo_jesus.png") center/contain no-repeat;
    pointer-events: none;
    z-index: 0;
}

/* IMAGEM */

.jesus_wrapper img {
    position: relative;
    display: block;
    width: min(520px, 100%);
    height: auto;
    z-index: 1;
}

.section_inicial .section_img1,
.section_inicial .section_img2 {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* ONDA */

.onda {
    position: absolute;
    left: 0;
    top: -115px;
    width: 100%;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

.onda svg {
    display: block;
    width: 100%;
    height: 90px;
}

/*====================================*/

/* NOSSA HISTÓRIA */

.section_grupo {
    position: relative;
    z-index: 10;
    margin-top: 50px;
}

.section_grupo .section_grupo_historia p {
    text-align: center;
}

.section_grupo .section_grupo_historia {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    margin: 0 5% 0 5%;
    font-weight: 350;
    padding-bottom: 0.5%;
}

.section_grupo_fundador,
.section_depoimentos_inicial {
    margin: 0 0 7% 0;
    padding: 5% 5% 1% 5%;
}

.titulo_divisor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 auto 7%;
    width: 100%;
}

/* linhas */

.titulo_divisor span {
    position: relative;
    width: 120px;
    height: 1px;
    background: #D8B187;
}

/* pontinha */

.titulo_divisor span::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 0%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D8B187;
}

/* espelha esquerda */

.titulo_divisor span:first-child::after {
    right: auto;
    left: -4px;
}

.ornamento {
    color: #C89B6D;
    font-size: 14px;
    letter-spacing: 3px;
}

.section_grupo_fundador h3 {
    text-align: center;
    font-family: Hoyle, 'Times New Roman', Times, serif;
    margin: 0 auto 7% auto;
    font-family: serif;
    font-weight: 500;
    color: #33261D;
}

.section_fundadores .fundadora_fabi,
.fundador_geraldo {
    border: #c98d5434 2px solid;
    background-color: #fdf5e369;
    border-radius: 2.5%;
    margin: 0 auto 7% auto;
    height: 100%;
}

.section_grupo_fundador .section_fundadores img {
    width: 30%;
    border-radius: 100%;
    margin: 5% auto;
    border: #c98d54ab 2px solid;
}

.section_grupo_fundador .section_fundadores h6,
p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 5%;
}

.section_grupo_fundador .section_fundadores h6 {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}

.section_grupo_fundador .section_fundadores p {
    font-weight: 350;
    font-size: 14px;
}

/*====================================*/

/* ENCONTRO FILHO PRÓDIGO */

.container_section_filho_inicial {
    margin: 0 auto;
    background-image:
        linear-gradient(135deg, #3a2417, #9c6945);
    background-position: bottom, right;
    background-repeat: no-repeat;
    background-size: contain;
    border-top-left-radius: 70px;
    overflow: hidden;
    color: white;
    font-weight: 400;
    padding: 5% 5% 0 5%;
}

.section_filho_inicial h1 {
    letter-spacing: 1px;
}

.section_filho_inicial p {
    text-align: justify;
}

.section_filho_inicial .img_filho {
    margin: 0 auto;
    width: 70%;
    border-radius: 12px;
    border: whitesmoke 3px solid;
}

.section_filho_button {
    text-align: center;
    margin: 7% 0;
}

.botao_inicial {
    margin: 5% 0 0 0;
    border: none;
}

.btn-custom {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 5px;
    border-radius: 8px;
    background: linear-gradient(45deg, #6b3721, #a35f18);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-custom:hover {
    background: linear-gradient(45deg, #532a19, #7c440c);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===========================
   NOSSA JORNADA (3 COLUNAS ISOLADAS)
=========================== */

.jornada-section {
    background: #FFFDEB;
    padding: 60px 0;
    overflow: hidden;
}

.jornada-container {
    width: min(1380px, 95%);
    margin: auto;
}

.jornada-title {
    font-family: Hoyle, 'Times New Roman', Times, serif;
    font-size: 32px;
    text-align: center;
    color: #5E3922;
    margin-bottom: 10px;
}

.titulo-enfeite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #C28B42;
    margin-bottom: 40px;
    font-size: 20px;
}

.titulo-enfeite span {
    width: 180px;
    height: 1px;
    background: #E8D6B8;
}

/* GRID FIXO EM 3 COLUNAS ISOLADAS */
.jornada-conteudo {
    display: grid;
    grid-template-columns: 360px 1fr 140px;
    /* Coluna 1 | Coluna 2 | Coluna 3 */
    align-items: center;
    gap: 30px;
    position: relative;
}

/* COLUNA 1: CARD */
.jornada-card {
    overflow: hidden;
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 10;
    transition: transform .35s ease, opacity .35s ease, box-shadow .35s ease;
}

.jornada-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}

.jornada-card.fade {
    opacity: 0;
    transform: translateY(15px);
}

.jornada-card h3 {
    text-align: center;
    color: #5E3922;
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    font-weight: 550;
    margin-bottom: 20px;
    line-height: 1.2;
}

.jornada-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 25px;
    transition: transform .4s ease, opacity .3s ease;
}

.jornada-card:hover img {
    transform: scale(1.03);
}

.jornada-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jornada-info div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #EFE6D5;
}

.jornada-info div:last-child {
    border: none;
    padding-bottom: 0;
}

.jornada-info i {
    color: #C28B42;
    width: 22px;
    text-align: center;
    font-size: 18px;
}

.jornada-info strong,
.jornada-info span {
    font-size: 15px;
}

/* COLUNA 2: TIMELINE CENTRAL */
.timeline-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
}

.timeline-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.trilha-base {
    fill: none;
    stroke: #D9B46C;
    stroke-width: 3;
    stroke-dasharray: 6, 6;
}

.trilha-ativa {
    fill: none;
    stroke: #C28B42;
    stroke-width: 4;
    stroke-dasharray: 6, 6;
    transition: stroke-dashoffset 0.6s ease-in-out;
}

#timeline-itens {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.timeline-item {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid #D6B06C;
    background: #FFFDEB;
    z-index: 5;
    transition: all .35s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.timeline-item:hover {
    transform: translate(-50%, -50%) scale(1.18);
    border-color: #C28B42;
    box-shadow: 0 0 12px rgba(194, 139, 66, .3);
}

.timeline-item.active {
    width: 34px;
    height: 34px;
    border-color: #C28B42;
    background: #FFFDEB;
    font-size: 15px;
    box-shadow: 0 0 10px rgba(194, 139, 66, 0.4);
    z-index: 8;
}

.timeline-item.done {
    background: #D6B06C;
    border-color: #D6B06C;
}

.timeline-pegadas {
    position: absolute;
    color: #C28B42;
    font-size: 26px;
    transition: all .5s ease;
    z-index: 10;
    pointer-events: none;
    transform: translate(-50%, -130%);
}

/* COLUNA 3: BOTÃO PRÓXIMO TOTALMENTE DIREITA */
.timeline-next {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 10;
    width: 100%;
}

.timeline-next button {
    width: 78px;
    height: 78px;
    border: none;
    background: none;
    color: #6B4A34;
    font-size: 70px;
    cursor: pointer;
    transition: transform .35s ease, color .35s ease;
}

.timeline-next button:hover {
    transform: translateX(8px);
    color: #B57A30;
}

.timeline-next small {
    width: 110px;
    text-align: center;
    color: #6B4A34;
    font-size: 13px;
    line-height: 1.4;
}

/*====================================*/

/* DEPOIMENTOS */

.section_depoimentos_inicial {
    position: relative;
    background-color: white;
    padding: 8% 0;
    overflow: hidden;
}

.section_depoimentos_inicial h1 {
    margin-bottom: 3%;
}

.carrossel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* EFEITO FADE NAS LATERAIS */

.carrossel-container::before,
.carrossel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.carrossel-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carrossel-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* CARROSSEL */

.section_depoimentos_inicial .carrossel-container .carrossel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 20px;
    cursor: grab;
}

.carrossel.dragging {
    cursor: grabbing;
    user-select: none;
}

.carrossel::-webkit-scrollbar {
    display: none;
}

.card-depoimento {
    flex: 0 0 85%;
    scroll-snap-align: center;
    border-radius: 25px;
    background: whitesmoke;
    padding: 25px;
}

/* CARDS */

.card-depoimento {
    flex: 0 0 320px;
    background: whitesmoke;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.205);
    transition: 0.3s ease;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 400px;
}

.card-depoimento img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid #c8a27a;
}

.card-depoimento h6 {
    color: #5b3a29;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
}

.texto {
    max-height: 180px;
    overflow: hidden;
    transition: .4s;
}

.card-depoimento.aberto .texto {
    max-height: 900px;
}

.card-depoimento p {
    color: #807f7f;
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 15px;
}

.btn-ler {
    margin-top: auto;
    margin-bottom: 5px;
    border: none;
    background: none;
    color: #9b6632;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
}

.indicadores {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d6d6d6;
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    background: #b97734;
    transform: scale(1.25);
}

/*====================================*/

/* LOJINHA DO ABBA */

.section_lojinha_inicial {
    position: relative;
    background-color: #ffffed;
    overflow: hidden;
}

.section_lojinha_inicial h1 {
    margin-bottom: 4%;
}

.section_lojinha_inicial p {
    text-align: center;
    margin-bottom: 5%;
}

.lojinha_container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.lojinha {
    display: grid;
    grid-template-columns: repeat(auto-fit,
            minmax(33%, 1fr));
    gap: 33px;
    padding: 0 25px;
}

.card-lojinha {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    min-height: 90px;
    margin: 0;
    padding: 0px;
    background: white;
}

.card-lojinha h6 {
    position: relative;
    margin: 0;
    padding: 0 20px 0 0;
    color: white;
    letter-spacing: 2px;
    text-align: left;
    flex: 1;
    font-weight: bold;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.card-lojinha-conteudo {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 100%;
}

.card-lojinha img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.card-lojinha .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(141, 80, 31, 0.808),
            rgba(170, 81, 8, 0.836));
    transition: 0.3s ease;
}


.lojinha_container .section_filho_button .botao_inicial button {
    font-size: 13px;
    font-weight: bold;
    padding: 10px 20px;
    background: linear-gradient(45deg, #640c0c, #ca0202);
    color: #fff;
}

button a {
    text-decoration: none;
    color: white;
}

button a:hover {
    text-decoration: none;
    color: whitesmoke;
}

/* ================================= */
/* SITE DA LOJINHA DO ABBA */
/* ================================= */

/* ================================= */
/* HEADER */
/* ================================= */

header .container {
    background-color: #352815;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

/* ================================= */
/* LOGO */
/* ================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.img-logo {
    width: 42px;
}

.logo-name-lojinha {
    font-family: 'Mindset Worker';
    font-size: 16px;
    color: white;
    margin: 0;
}

/* ================================= */
/* BOTÃO VOLTAR SITE */
/* ================================= */

.section_voltar_button {
    text-align: center;
}

.botao_voltar .btn-custom {
    padding: 8px;
    font-size: 13px;
    width: 100%;
    background: linear-gradient(45deg, #3d261c, #47351ad2);
    color: white;
    border: none;
    transition: 0.3s ease-in-out;
    border: #815010 1px solid;
}

.btn-custom:hover {
    color: whitesmoke;
    transform: scale(1.01);
}

/* ================================= */
/* DIREITA */
/* ================================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ================================= */
/* CARRINHO */
/* ================================= */

.cart-btn {
    position: relative;
    width: 45px;
    height: 45px;
    border: #815010 1px solid;
    border-radius: 50%;
    background:
        rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.cart-btn:hover {
    background:
        rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -2px;
    background: #c8a27a;
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-sidebar.active {
    right: 0;
}


/* ================================= */
/* HERO */
/* ================================= */

.hero-lojinha {
    position: relative;
    margin-top: 70px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: url("img/fundo_herolojinha.png") center right no-repeat;
    background-position: 75% center;
    background-size: cover;
    overflow: hidden;
}

.hero-lojinha .container {
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255, 250, 242, .96) 10%,
            rgba(255, 250, 242, .88) 60%,
            rgba(255, 250, 242, .40) 70%,
            rgba(255, 250, 242, 0) 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 40px 0;
}

.hero-content h2 {
    font-family: Hoyle, 'Times New Roman', Times, serif;
    font-size: 45px;
    color: #352815;
    margin-bottom: 40px;
}

.hero-content h2 span {
    color: #9b6a1c;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 640;
    line-height: 1.8;
    margin: 0;
    padding: 5px;
    width: 70%;
    color: #5c3721;
}

.btn-hero {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 15px 35px;
    border-radius: 40px;
    background: linear-gradient(45deg, #5b3216, #b97d28);
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
}

/* ================================= */
/* FILTROS */
/* ================================= */

.filtros-produtos {
    padding: 40px 20px;
}

.filtros-produtos h2 {
    text-align: center;
    font-family: Hoyle;
    font-size: 30px;
}

.filtros-produtos .titulo_divisor .ornamento img {
    width: 20px;
    height: 20px;
}

.filtros-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 7px;
    height: auto;
}

.filtro-btn {
    border: none;
    color: #352815;
    background: white;
    padding: 10px 24px;
    border-radius: 40px;
    white-space: nowrap;
    transition: .3s ease;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.filtro-btn:hover {
    transform: translateY(2px);
}

.filtro-btn.active {
    background: #352815;
    color: white;
}

/* ================================= */
/* PRODUTOS */
/* ================================= */

.produtos-loja {
    padding: 20px 10px;
}

.produtos-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.produto-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.produto-card:hover:not(.produto-esgotado) {
    transform: translateY(-8px);
}

.produto-img {
    position: relative;
    height: auto;
    overflow: hidden;
    background-color: white;
}

.produto-esgotado {
    opacity: .82;
}

.selo-esgotado {
    position: absolute;
    top: 18px;
    right: -42px;
    width: 170px;
    background: linear-gradient(45deg,
            #7a1e1e,
            #b52d2d);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 20;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    pointer-events: none;
}

.btn-esgotado {
    background: #9b9b9b !important;
    cursor: not-allowed;
    transform: none !important;
    opacity: .9;
}

.produto-img img {
    border-radius: 25px;
    width: 100%;
    height: 100%;
    background-position: cover;
    padding: 10px;
    transition: .4s ease;
}

.produto-card:hover:not(.produto-esgotado) img {
    transform: scale(1.05);
}

.produto-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.categoria {
    align-self: flex-start;
    display: inline-block;
    background: #fff1c9;
    color: #7a5a28;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
}

.produto-info h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #352815;
}

.descricao {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.produto-card.aberto .descricao {
    --webkit-line-clamp: unset;
    display: block;
}


.produto-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.produto-bottom .preco {
    font-size: 16px;
    font-weight: bold;
    color: #352815;
}

.produto-bottom .btn-carrinho {
    border: none;
    background:
        linear-gradient(45deg,
            #532a19,
            #b46d02d2);
    color: white;
    padding: 7px 15px;
    border-radius: 30px;
    transition: .3s ease;
    font-size: 13px;
}

.btn-carrinho:hover {
    transform: scale(1.05);
}

.btn-ler-mais {
    background: none;
    border: none;
    color: #8b5e3c;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
    padding: 0;
    margin-bottom: 15px;
}

.btn-ler-mais:hover {
    text-decoration: underline;
}

.produto-estoque {
    margin-top: 10px;
    font-size: 13px;
    color: #7a6b58;
    font-weight: 500;
}


/* ================================= */
/* MODAL FINALIZAR PEDIDO */
/* COLE NO FINAL DO CSS */
/* ================================= */

.checkout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 9999;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-content {
    background: white;
    width: 90%;
    max-width: 420px;
    padding: 30px 20px;
    border-radius: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: subir .3s ease;
}

@keyframes subir {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.checkout-content h2 {
    text-align: center;
    color: #352815;
}

.checkout-content input,
.checkout-content select {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 0 15px;
    outline: none;
    font-size: 15px;
}

.enviar-whatsapp {
    border: none;
    height: 50px;
    border-radius: 12px;
    background: #25d366;
    color: white;
    font-weight: bold;
    transition: .3s ease;
}

.enviar-whatsapp:hover {
    transform: scale(1.02);
}

.fechar-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

/* ======= FOOTER LOJINHA ======= */

.footer-lojinha {
    background: linear-gradient(to bottom, #221504, #2b1704);
    color: white;
    padding-top: 60px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,
            minmax(33%, 1fr));
    padding: 0 25px;
    max-width: auto;
    margin: 0 auto;
}

.footer-logo img {
    width: 70px;
}

.footer-logo h2 {
    font-family: 'Mindset Worker';
    letter-spacing: 3px;
    font-size: 20px;
    padding-top: 15px;
}

.footer-logo p {
    margin: 15px 0 0 0;
    color: #d8d8d8;
    line-height: 1.6;
    font-size: 13px;
}

.footer-links h4,
.footer-contato h4 {
    margin-bottom: 20px;
    font-size: 20px;
    font-family: Hoyle, 'Times New Roman', Times, serif;
}

.footer-links,
.footer-contato {
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0 2px;
    text-align: center;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-links a {
    color: #e7e7e7;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #c8a27a;
    padding-left: 2px;
}

.footer-contato p {
    margin: 10px 0;
    color: #d8d8d8;
    font-size: 13px;
    text-align: center;
}

.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 1px;
    font-size: 10px;
    color: #cfcfcf;
    height: 10vh;
}

.footer-copy p {
    margin: auto 0;
    padding-top: 20px;
}

.footer-copy p a {
    color: #cfcfcf;
    text-decoration: none;
    font-weight: bold;
}

/* ================================= */
/* CARRINHO LATERAL */
/* ================================= */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow:
        -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: .4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

/* HEADER */

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:
        1px solid #eee;
}

.cart-header h3 {
    margin: 0;
    color: #352815;
}

.close-cart {
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}

/* ITEMS */

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom:
        1px solid #eee;
    padding-bottom: 15px;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #fff8e8;
    border-radius: 12px;
    padding: 5px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h5 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #352815;
}

.cart-item-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.remove-item {
    border: none;
    background: #ffefef;
    color: red;
    border-radius: 8px;
    padding: 5px 10px;
    margin-top: 8px;
    cursor: pointer;
}

/* FOOTER */

.cart-footer {
    padding: 20px;
    border-top:
        1px solid #eee;
}

.cart-footer h3 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cart-footer p {
    font-weight: 600;
    font-size: 25px;
}

.continue-btn,
.checkout-btn {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .3s ease;
}

.continue-btn {
    background: #f1f1f1;
}

.checkout-btn {
    background:
        linear-gradient(45deg,
            #532a19,
            #b46d02d2);
    color: white;
}

.checkout-btn:hover,
.continue-btn:hover {
    transform: scale(1.02);
}


/* ================================= */
/* QUANTIDADE */
/* ================================= */

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-controls button {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 8px;
    background: #f1f1f1;
    font-size: 18px;
    cursor: pointer;
    transition: .3s ease;
}

.quantity-controls button:hover {
    background: #ddd;
}

.quantity-controls span {
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

/* ================================= */
/* APOIE-NOS */
/* ================================= */

.section_apoie_inicial {
    position: relative;
    background-color: white;
    padding: 8% 0;
    overflow: hidden;
    margin: auto 0 -70px 0;
}

.section_apoie_inicial .apoie-texto {
    text-align: center;
}


/* BOTÕES */

.apoie-botoes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.apoie-botoes a,
.btn-pix {
    font-size: 13px;
    padding: 7px 7px;
}

.btn-pix {
    background: white;
    border: 2px solid #352815;
    color: #352815;
    transition: .3s ease;
}

.btn-pix:hover {
    background: #352815;
    color: white;
}


/* MODAL PIX */

.pix-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 9999;
}

.pix-modal.active {
    opacity: 1;
    visibility: visible;
}

.pix-content {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    position: relative;
}

.pix-content img {
    width: 220px;
    margin: 25px auto;
}

.fechar-pix {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.pix-chave {
    display: flex;
    gap: 10px;
}

.pix-chave input {
    flex: 1;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0 10px;
}

.pix-chave button {
    border: none;
    padding: 0 15px;
    border-radius: 10px;
    background: #352815;
    color: white;
}

/* Toast de confirmação PIX */
.pix-toast {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #2e7d32;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.pix-toast.show {
    opacity: 1;
    visibility: visible;
    bottom: -50px;
}

/* Feedback visual no botão */
.pix-chave button.copiado {
    background-color: #2e7d32 !important;
    transition: background-color 0.2s ease;
}


.apoie-destino {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.destino-bloco {
    padding: 20px 0;
}

.destino-bloco h5 {
    color: #352815;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.destino-bloco p {
    color: #666;
    line-height: 1.8;
    margin: 0 50px;
}

.linha-divisoria {
    width: 120px;
    height: 1px;
    background: #c8a27a;
    margin: 0 auto;
}

/* MODAL IMAGEM */

.imagem-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
}

.imagem-modal.ativo {
    opacity: 1;
    visibility: visible;
}

.imagem-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    background: white;
    padding: 15px;
}

.fechar-imagem {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 10000;
    transition: .3s;
}

.fechar-imagem:hover {
    background: rgba(255, 255, 255, .3);
}