/* =======================================================
   RESET
======================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #141414;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.container {
    width: 90%;
    max-width: 1450px;
    margin: auto;
}

/* =======================================================
   HEADER
======================================================= */

.logo,
.logo:link,
.logo:visited,
.logo:hover,
.logo:active {
    color: inherit;
    text-decoration: none;
}

.logo:hover {
    opacity: .92;
}

.topo {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(27, 27, 27, .97);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, .22);
    transition:
        background-color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.topo.topo-rolagem {
    background: rgba(17, 17, 17, .96);
    border-bottom-color: rgba(255, 153, 0, .18);
    box-shadow: 0 7px 24px rgba(0, 0, 0, .34);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 88px;
    padding: 12px 0;
}

.logo {
    display: flex;
    min-width: max-content;
    align-items: center;
    gap: 13px;
    transition: opacity .2s ease;
}

.logo img {
    width: 58px;
    height: auto;
    flex: 0 0 auto;
}

.logo .logo-titulo {
    display: block;
    margin: 0;
    font-family: 'Cinzel', serif;
    color: #ff9900;
    font-size: 27px;
    line-height: 1.1;
}

.logo span {
    display: block;
    margin-top: 3px;
    color: #d4d4d4;
    font-size: 13px;
    letter-spacing: .35px;
}

/* MENU */

.menu {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: flex-end;
}

.menu a {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 11px;
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition:
        color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.menu a:not(.btn-whats-menu)::after {
    content: "";
    position: absolute;
    right: 11px;
    bottom: 5px;
    left: 11px;
    height: 2px;
    background: #ff9900;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.menu a:not(.btn-whats-menu):hover,
.menu a:not(.btn-whats-menu).ativo {
    color: #ff9900;
    background: rgba(255, 153, 0, .07);
}

.menu a:not(.btn-whats-menu):hover::after,
.menu a:not(.btn-whats-menu).ativo::after {
    transform: scaleX(1);
}

.btn-whats-menu {
    gap: 7px;
    margin-left: 7px;
    padding: 10px 15px;
    color: #fff;
    background: #087b39;
    font-weight: 700;
}

.btn-whats-menu:hover {
    color: #fff;
    background: #06652f;
    transform: translateY(-1px);
}

.logo:focus-visible,
.menu a:focus-visible,
.menu-mobile:focus-visible {
    outline: 3px solid rgba(255, 153, 0, .48);
    outline-offset: 3px;
}

.menu-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ff9900;
    background: transparent;
    border: 1px solid rgba(255, 153, 0, .28);
    border-radius: 9px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.menu-mobile-icone {
    display: flex;
    width: 20px;
    height: 16px;
    flex-direction: column;
    justify-content: space-between;
}

.menu-mobile-icone span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition:
        transform .22s ease,
        opacity .18s ease;
}

.menu-mobile.active .menu-mobile-icone span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-mobile.active .menu-mobile-icone span:nth-child(2) {
    opacity: 0;
}

.menu-mobile.active .menu-mobile-icone span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =======================================================
   BANNER
======================================================= */

.banner {
    width: 100%;
    max-width: 1450px;
    aspect-ratio: 1450 / 400;
    margin: 0 auto;

    background: url('../imagens/banner/banner.webp') center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #000000;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    overflow: hidden;
}


/* DEGRADÊ SOMENTE NO LADO ESQUERDO */

.banner::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 10%,
            rgba(0, 0, 0, 0.55) 30%,
            rgba(0, 0, 0, 0.25) 50%,
            rgba(0, 0, 0, 0) 70%);

    z-index: 1;
}


/* CONTEÚDO */

.banner-content {
    position: relative;
    z-index: 2;

    animation: fadeUp 1s ease;

    text-align: left;

    margin-left: 7%;
}


/* TÍTULO */

.banner h1 {
    font-size: 54px;
    color: #ff9900;

    font-family: 'Cinzel', serif;

    letter-spacing: 2px;
    margin: 0 0 10px;
}


/* SUBTÍTULO */

.subtitulo {
    color: #ff9900;

    letter-spacing: 1px;
    text-transform: uppercase;

    display: block;
    margin-bottom: 20px;

    font-family: 'Helvetica';
    font-weight: 600;
}


/* TEXTO */

.banner p {
    max-width: 650px;

    font-size: 20px;
    color: #ff9900;

    margin: 20px 0;

    font-family: 'Helvetica';

    letter-spacing: 0;
    line-height: 1.4;
}


/* BOTÃO */

.btn-banner {
    display: inline-block;

    background: #8b4a20;
    color: #ffffff;

    padding: 16px 28px;

    text-decoration: none;
    border-radius: 8px;

    font-weight: 700;
}

/* ANIMAÇÃO */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =======================================================
   PRODUTOS
======================================================= */

.produtos {
    padding: 20px 0;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.produto-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, #232323 0%, #1e1e1e 100%);
    border: 1px solid rgba(214, 165, 91, .15);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.produto-card:hover {
    border-color: rgba(255, 153, 0, .38);
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .28);
}

.produto-card[hidden],
.nenhum-produto[hidden] {
    display: none !important;
}

.produto-card .carousel {
    flex: 0 0 auto;
    border-radius: 0;
}

.produto-card .carousel-container {
    height: 230px;
}

.produto-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1a1a1a;
    padding: 8px;
    transition: transform .3s ease;
}

.produto-card:hover img {
    transform: scale(1.025);
}

.produto-card .prev,
.produto-card .next {
    width: 34px;
    height: 34px;
    color: #fff;
    background: rgba(0, 0, 0, .58);
    font-size: 17px;
    opacity: .82;
    transition:
        opacity .2s ease,
        background-color .2s ease;
}

.produto-card .prev {
    left: 9px;
}

.produto-card .next {
    right: 9px;
}

.produto-card .prev:hover,
.produto-card .next:hover {
    background: rgba(255, 153, 0, .90);
    opacity: 1;
}

.produto-info {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 20px;
}

.produto-info h3 {
    display: -webkit-box;
    min-height: 49px;
    margin: 10px 0 0;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.produto-info h3 a {
    color: #ff9900;
    text-decoration: none;
    transition: color .2s ease;
}

.produto-info h3 a:hover {
    color: #ffb23f;
}

.produto-info .categoria {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    min-height: 25px;
    align-items: center;
    padding: 4px 9px;
    overflow: hidden;
    color: #d6d6d6;
    background: rgba(255, 153, 0, .10);
    border: 1px solid rgba(255, 153, 0, .22);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.produto-info .produto-resumo {
    display: -webkit-box;
    min-height: 63px;
    margin: 12px 0 0;
    overflow: hidden;
    color: #c9c9c9;
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.produto-card-rodape {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.produto-card-rodape .preco {
    display: block;
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
}

.preco {
    color: #ff9900;
    font-size: 26px;
    font-weight: 600;
}

.btn-comprar {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #008d34;
    color: white;
    padding: 16px 28px;
    text-decoration: none;
    border-radius: 10px;
}

/* Mantém os botões do Mercado Livre com a identidade amarela,
   mesmo quando o link usa apenas a classe genérica btn-comprar. */
.btn-comprar[href*="mercadolivre"],
.btn-comprar.btn-mercado-livre {
    color: #2d3277;
    background: #ffe600;
}

.btn-comprar[href*="mercadolivre"]:hover,
.btn-comprar.btn-mercado-livre:hover {
    background: #ffea3d;
}

.produto-card .btn-comprar {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 11px 10px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition:
        background-color .2s ease,
        transform .2s ease;
}

.produto-card .btn-comprar:hover {
    transform: translateY(-1px);
}

.produto-card .btn-mercado-livre {
    color: #2d3277;
    background: #ffe600;
}

.produto-card .btn-mercado-livre:hover {
    background: #ffea3d;
}

.produto-card .btn-whatsapp-produto {
    color: #fff;
    background: #087b39;
}

.produto-card .btn-whatsapp-produto:hover {
    background: #06652f;
}

.produto-card .btn-esgotado,
.produto-card .btn-esgotado:hover {
    color: #fff;
    background: #686868;
    opacity: 1;
    transform: none;
}

.produto-info h3,
.produto-info h3 a {
    color: #ff9900;
}

/* =======================================================
   TEXTO ACIMA DOS PRODUTOS NA INDEX
======================================================= */

.titulo-secao {
    font-size: large;
}

.titulo-secao h1,
.titulo-secao h2 {
    color: #ff9900;
}

.titulo-secao h1 {
    font-size: 1.5em;
    font-weight: 700;
}

/* PADRÃO DOS TÍTULOS PRINCIPAIS */

.banner h1,
.titulo-secao h1,
.faq-texto h1,
.pagina-topo h1,
.produto-conteudo h1 {
    color: #ff9900;
    font-family: 'Cinzel', serif;
}

/* =======================================================
   CHAMADA CATÁLOGO
======================================================= */

.chamada-catalogo {
    text-align: center;
    margin-top: 55px;
    padding-bottom: 20px;
}

.chamada-catalogo p {
    margin: 0 0 20px;
    font-size: 18px;
    color: #e7e5e5;
}

.btn-catalogo {
    display: inline-block;
    padding: 13px 28px;
    background: #a80000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-catalogo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* =======================================================
   APRESENTAÇÃO DA PÁGINA INICIAL
======================================================= */

.inicio-apresentacao {
    margin-top: 30px;
    padding: 72px 0;
    background:
        radial-gradient(
            circle at 15% 0,
            rgba(255, 153, 0, 0.09),
            transparent 38%
        ),
        #191919;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.inicio-apresentacao-cabecalho {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
    margin-bottom: 42px;
}

.inicio-chapeu {
    display: block;
    margin-bottom: 12px;
    color: #ff9900;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.inicio-apresentacao h2 {
    color: #ff9900;
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.2;
}

.inicio-apresentacao-texto p {
    margin-bottom: 14px;
    color: #d8d8d8;
    font-size: 17px;
    line-height: 1.8;
}

.inicio-apresentacao-texto p:last-child {
    margin-bottom: 0;
}

.inicio-diferenciais {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.inicio-diferencial {
    padding: 28px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 153, 0, 0.18);
    border-radius: 14px;
}

.inicio-diferencial i {
    margin-bottom: 17px;
    color: #ff9900;
    font-size: 25px;
}

.inicio-diferencial h3 {
    margin-bottom: 10px;
    color: #f3f3f3;
    font-size: 18px;
}

.inicio-diferencial p {
    color: #c7c7c7;
    font-size: 14px;
    line-height: 1.7;
}

.inicio-acoes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.inicio-botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid #ff9900;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.inicio-botao:hover {
    transform: translateY(-2px);
}

.inicio-botao-principal {
    color: #151515;
    background: #ff9900;
}

.inicio-botao-secundario {
    color: #ff9900;
    background: transparent;
}

.inicio-botao-secundario:hover {
    color: #151515;
    background: #ff9900;
}

@media (max-width: 800px) {
    .inicio-apresentacao {
        margin-top: 15px;
        padding: 48px 0;
    }

    .inicio-apresentacao-cabecalho {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 30px;
    }

    .inicio-apresentacao h2 {
        font-size: clamp(27px, 8vw, 35px);
    }

    .inicio-apresentacao-texto p {
        font-size: 16px;
        line-height: 1.7;
    }

    .inicio-diferenciais {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .inicio-diferencial {
        padding: 22px;
    }

    .inicio-acoes {
        align-items: stretch;
        flex-direction: column;
        margin-top: 28px;
    }

    .inicio-botao {
        width: 100%;
        text-align: center;
    }
}

/* =======================================================
   PRODUTO ESGOTADO
======================================================= */

.btn-esgotado {
    background: #999;
    color: #fff;
    cursor: default;
    opacity: 0.85;
}

.tarja-esgotado {
    position: absolute;
    top: 20px;
    left: -35px;
    width: 180px;

    background: #ff9900b7;
    color: #ffffff;

    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;

    padding: 10px 0;

    transform: rotate(-45deg);

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);

    z-index: 10;
}

/* =======================================================
   WHATSAPP FLUTUANTE
======================================================= */

.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #00b141;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 34px;
    color: white;
}

/* =======================================================
   RODAPÉ
======================================================= */

.rodape {
    background: #111;
    padding-top: 30px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 15px;
}

/* Contatos */
.footer-grid p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-grid p i {
    width: 20px;
    text-align: center;
    color: #ffffff;
}

/* Links gerais */
.rodape a {
    color: #d4d4d4;
    text-decoration: none;
    transition: .3s;
}

.rodape a:hover {
    color: #ffffff;
}

/* Redes e atalhos */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links i {
    width: 20px;
    text-align: center;
    color: #ffffff;
}

/* Institucional */
.footer-grid div:last-child a {
    display: inline-block;
    margin-bottom: 10px;
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 20px 10px;
    margin-top: 30px;
    border-top: 0.3px solid rgba(255, 255, 255, 0.185);
    font-size: 14px;
    color: #bdbdbd;
}

/* =======================================================
   PÁGINAS
======================================================= */

.produto-pagina {
    padding: 10px 0;
}

.produto-layout {
    /* caixa da descriçao do produto na pagina produto.php */
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 20px;
    align-items: start;
}

.produto-imagem {
    width: 100%;
    background: #1c1c1c;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(214, 165, 91, .15);
}

.produto-conteudo h1,
.produto-conteudo h2 {
    /* titulo do produto na pagina produto.php */
    font-size: 30px;
    line-height: 1.2;
    color: #ff9900;
    margin-bottom: 25px;
}

.produto-categoria2 {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.produto-categoria1 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}

.produto-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/* CONTATO */

.pagina-contato {
    padding: 28px 0 45px;
    text-align: center;
}

.pagina-contato .titulo-secao {
    margin-bottom: 28px;
}

.contato-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
    align-items: start;
    gap: 32px;
    margin-top: 0;
}

.info-contato,
.formulario-contato {
    background: #1d1d1d;
    padding: 34px;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* Cartão de atendimento */

.info-contato {
    align-self: start;
    height: auto;
    text-align: left;
}

.info-contato h3 {
    margin: 0 0 28px;
    color: #ff9900;
    text-align: center;
}

.info-contato p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.5;
}

.info-contato p i {
    flex: 0 0 22px;
    width: 22px;
    color: #ff9900;
    text-align: center;
}

.info-contato a {
    color: #f4f4f4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-contato a:hover {
    color: #ff9900;
}

.info-contato .contato-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    min-height: 48px;
    margin: 28px auto 0;
}

/* Formulário */

.formulario-contato {
    text-align: left;
}

.formulario-contato h2 {
    margin: 0 0 26px;
    color: #ff9900;
    font-size: 24px;
    text-align: center;
}

.formulario-contato form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.campo-contato {
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: left;
}

.campo-contato label {
    color: #e8e8e8;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.campo-contato input,
.campo-contato textarea {
    width: 100%;
    padding: 13px 14px;
    color: #f4f4f4;
    background: #242424;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.campo-contato textarea {
    min-height: 145px;
    resize: vertical;
}

.campo-contato input:focus,
.campo-contato textarea:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.12);
}

.formulario-contato .contato-enviar {
    min-height: 48px;
    margin-top: 2px;
    border-radius: 8px;
}

.contato-campo-site {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contato-privacidade {
    margin: -2px 0 0;
    color: #bdbdbd;
    font-size: 12px;
    line-height: 1.6;
}

.contato-privacidade a {
    color: #ff9900;
    text-decoration: underline;
}

.contato-privacidade a:hover {
    color: #ffb13b;
}

/* Cores do título da página de contato */

.pagina-contato .titulo-secao h1,
.pagina-contato .titulo-secao p {
    color: #ff9900;
}

/* Botões da página de contato */

.pagina-contato .contato-whatsapp,
.pagina-contato .contato-enviar {
    color: #151515;
    background-color: #ff9900;
    border: 1px solid #ff9900;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.pagina-contato .contato-whatsapp:hover,
.pagina-contato .contato-enviar:hover {
    color: #151515;
    background-color: #ff9900;
    border-color: #ff9900;
    transform: translateY(-2px);
}

/* =======================================================
   PÁGINA SOBRE
======================================================= */

.pagina-sobre {
    overflow: hidden;
}

.sobre-abertura {
    position: relative;
    padding: 72px 0 64px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(255, 153, 0, 0.13),
            transparent 55%
        ),
        #171717;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sobre-chapeu {
    display: inline-block;
    margin-bottom: 14px;
    color: #ff9900;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.sobre-abertura h1 {
    margin-bottom: 18px;
    color: #ff9900;
    font-family: 'Cinzel', serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
}

.sobre-introducao {
    max-width: 720px;
    margin: 0 auto;
    color: #e0e0e0;
    font-size: 19px;
    line-height: 1.7;
}

.sobre-editorial {
    padding-top: 76px;
    padding-bottom: 76px;
}

.sobre-bloco {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(40px, 6vw, 90px);
    padding: 54px 0;
}

.sobre-bloco:first-child {
    padding-top: 0;
}

.sobre-bloco:last-child {
    padding-bottom: 0;
}

.sobre-bloco-invertido .sobre-imagem {
    order: 2;
}

.sobre-bloco-invertido .sobre-texto {
    order: 1;
}

.sobre-imagem {
    min-width: 0;
}

.sobre-imagem img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: contain;
    padding: 0;
    background: transparent;
    border-radius: 18px;
    box-shadow: 0 18px 45px #9c5e0223;
}

.sobre-texto {
    position: relative;
    min-width: 0;
}

.sobre-numero {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 153, 0, 0.48);
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
}

.sobre-texto h2,
.sobre-encerramento h2 {
    color: #ff9900;
    font-family: 'Cinzel', serif;
    line-height: 1.25;
}

.sobre-texto h2 {
    margin-bottom: 22px;
    font-size: clamp(27px, 3vw, 38px);
}

.sobre-texto p {
    margin-bottom: 16px;
    color: #d4d4d4;
    font-size: 17px;
    line-height: 1.85;
}

.sobre-texto p:last-child {
    margin-bottom: 0;
}

.sobre-valores {
    padding: 62px 0;
    background: #1b1b1b;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sobre-valores-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sobre-valor {
    padding: 28px;
    background: #222222;
    border: 1px solid rgba(255, 153, 0, 0.2);
    border-radius: 14px;
}

.sobre-valor i {
    margin-bottom: 18px;
    color: #ff9900;
    font-size: 26px;
}

.sobre-valor h3 {
    margin-bottom: 10px;
    color: #ff9900;
    font-family: 'Cinzel', serif;
    font-size: 19px;
}

.sobre-valor p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.65;
}

.sobre-encerramento {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding-top: 72px;
    padding-bottom: 72px;
}

.sobre-encerramento > div:first-child {
    max-width: 760px;
}

.sobre-encerramento h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 3vw, 40px);
}

.sobre-encerramento p {
    color: #d4d4d4;
    font-size: 17px;
    line-height: 1.75;
}

.sobre-acoes {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 12px;
}

.sobre-botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 21px;
    border: 1px solid #ff9900;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.sobre-botao:hover {
    transform: translateY(-2px);
}

.sobre-botao-principal {
    color: #151515;
    background: #ff9900;
}

.sobre-botao-secundario {
    color: #ff9900;
    background: transparent;
}

.sobre-botao-secundario:hover {
    color: #151515;
    background: #ff9900;
}

/* =======================================================
   CAROUSEL (UNIFICADO) Pagina dos produtos
======================================================= */

.carousel,
.produto-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-container {
    position: relative;
    height: 260px;
}

.produto-carousel {
    max-width: 100%;
    height: 650px;
    cursor: zoom-in;
}

.carousel-img,
.produto-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .3s ease, transform .2s ease;
    transform: scale(1);
}

.carousel-img.ativo,
.produto-slide.ativo {
    opacity: 1;
}

/* BOTÕES CAROUSEL */

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* =======================================================
   FORMULÁRIOS
======================================================= */

input,
textarea {
    width: 100%;
    padding: 18px;
    background: #222;
    border: 1px solid rgba(255, 255, 255, .08);
    color: white;
    border-radius: 10px;
    outline: none;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: #ff9900;
}

/* =======================================================
   FAQ
======================================================= */

.faq {
    padding: 20px 0;
}

.faq-texto {
    max-width: 900px;
    margin: 0 auto;
}

.faq-texto h1 {
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    background: #1d1d1d;
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

.faq-item a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

.faq-item h3 {
    margin-bottom: 12px;
}

.faq-item p {
    line-height: 1.8;
}

/* ONDE ESTAMOS */

.ondeestamos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 80vh;
    text-align: justify;
    margin: 20px;
}

/* GALERIA */

.ondeestamos-galeria {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ondeestamos-galeria img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    transition: transform .3s ease;
}

.ondeestamos-galeria img:hover {
    transform: scale(1.03);
}

/* LIGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.lightbox img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 16px;
}

.fechar {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

/* SETAS */

.seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    padding: 15px;
    transition: .2s;
}

.seta:hover {
    transform: translateY(-50%) scale(1.1);
}

.seta-esquerda {
    left: 30px;
}

.seta-direita {
    right: 30px;
}

/* =======================================================
   POLÍTICA DE PRIVACIDADE
======================================================= */

.pagina-topo {
    padding: 20px 0 5px;
    text-align: center;
}

.pagina-topo h1 {
    margin-bottom: 10px;
}

.pagina-texto {
    max-width: 900px;
    margin: auto;
    padding-bottom: 5px;
    line-height: 1.9;
}

.pagina-texto h2 {
    margin-top: 20px;
    margin-bottom: 1px;
    color: #ff9900;
}

.pagina-texto ul {
    padding-left: 25px;
    margin: 5px 0;
}

.pagina-texto li {
    margin-bottom: 1px;
}

/* =======================================================
   Calcular Frete
======================================================= */

.frete-produto {
    margin: 80px auto;
}

.frete-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #222;
    border: 1px solid rgba(214, 165, 91, .15);
    border-radius: 18px;
}

.frete-box h2 {
    margin-bottom: 15px;
}

.frete-texto {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 30px;
}

.frete-dados {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.frete-dados div {
    background: rgba(255, 255, 255, .03);
    border-radius: 12px;
    padding: 18px;
}

.frete-dados span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 8px;
}

.frete-dados strong {
    color: #fff;
    font-size: 18px;
}

/* =======================================================
   ficha tecnica
======================================================= */

.ficha-tecnica {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, .03),
            rgba(255, 255, 255, .01));

    border: 1px solid rgba(214, 165, 91, .15);
    border-radius: 14px;

    padding: 20px;
    margin: 30px 0;
}

.ficha-tecnica h3 {
    color: #ff9900;
    margin-bottom: 30px;
    font-size: 18px;
}

.ficha-tecnica-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ficha-tecnica-item:last-child {
    border-bottom: none;
}

.ficha-tecnica-label {
    color: #999;
}

.ficha-tecnica-valor {
    color: #fff;
    font-weight: 600;
}

/* =======================================================
   referencia na produto
======================================================= */

.produto-referencia {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 25px;

    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(214, 165, 91, .15);
    border-radius: 20px;

    color: #bbb;
    font-size: 13px;
    font-weight: 600;
}

/* =======================================================
   CATEGORIAS
======================================================= */

.categorias .titulo-secao {
    text-align: center;
}

.categorias .titulo-secao h1,
.categorias .titulo-secao h2 {
    color: #ff9900;
    margin-bottom: 10px;
}

.categorias .titulo-secao p {
    color: #d4d4d4;
    margin: 0;
}

.categorias {
    padding: 10px 0;
    padding-top: 50px;
    padding-bottom: 30px;
}

.categoria-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.categoria-botao {
    border: 1px solid #8b4a20;
    background: transparent;
    color: #ff9900;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.categoria-botao:hover {
    background: #8b4a20;
    color: #ffffff;
    transform: translateY(-2px);
}

.categoria-botao.ativo {
    color: #171717;
    background: #ff9900;
    border-color: #ff9900;
}

.produtos-categoria {
    padding-top: 20px;
    padding-bottom: 60px;
}

.nenhum-produto {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    color: #777;
}

.nenhum-produto-busca {
    margin: 25px auto 0;
    color: #cfcfcf;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
}

/* =======================================================
   BUSCA DO CATÁLOGO
======================================================= */

.busca-catalogo {
    display: flex;
    justify-content: center;
    margin: 30px 0 40px;
}

.busca-catalogo .busca-box {
    display: flex;
    width: 100%;
    max-width: 550px;
    overflow: hidden;
    background: #222;
    border: 1px solid rgba(255, 153, 0, .22);
    border-radius: 11px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.busca-catalogo .busca-box input {
    flex: 1;
    width: auto;
    padding: 14px;
    border: none;
    border-radius: 0;
}

.busca-catalogo .busca-box button {
    width: 55px;
    border: none;
    background: #ff9900;
    color: #171717;
    cursor: pointer;
    border-radius: 0;
    font-size: 17px;
    transition: background-color .2s ease;
}

.busca-catalogo .busca-box button:hover {
    background: #ffad32;
}

/* =======================================================
   CABEÇALHO DO CATÁLOGO
======================================================= */

.produtos .titulo-secao {
    text-align: center;
    width: 100%;
}

.produtos .titulo-secao h1,
.produtos .titulo-secao h2 {
    text-align: center;
}

.produtos .titulo-secao p {
    text-align: center;
    margin-top: 10px;
}

/* MENSAGENS DO FORMULÁRIO */

.mensagem-formulario {
    width: 100%;
    margin: 0 auto 22px;
    padding: 15px 18px;

    border: 1px solid transparent;
    border-radius: 10px;

    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.mensagem-sucesso {
    color: #d7ffe1;
    background: rgba(31, 157, 85, 0.18);
    border-color: rgba(58, 210, 123, 0.45);
}

.mensagem-erro {
    color: #ffd9d9;
    background: rgba(196, 55, 55, 0.18);
    border-color: rgba(255, 91, 91, 0.45);
}

