/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fundo */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5efe6;
    min-height: 100vh;
}

/* Banner principal */
.banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Estrutura do banner */
#carouselBanner,
#carouselBanner .carousel-inner,
#carouselBanner .carousel-item {
    width: 100%;
    height: 100%;
}

/* Imagem do banner */
.banner-img,
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.85);
}

/* Acabamento do banner */
.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
    pointer-events: none;
}

/* Ajuste mobile */
@media (max-width: 768px) {
    .banner {
        height: 260px;
    }
}

/* Navbar */
.navbar {
    background: rgba(245, 239, 230, 0.9) !important;
    backdrop-filter: blur(8px);
    border-bottom: none !important;
    position: relative;
    z-index: 9999;
    overflow: visible !important;
}

/* Camada interna */
.container-fluid {
    position: relative;
    z-index: 9999;
    overflow: visible !important;
}

/* Logo */
.navbar-brand {
    font-weight: 700;
    color: #6f4e37 !important;
    letter-spacing: 1px;
}

/* Menu */
.navbar-nav {
    gap: 95px;
}

/* Links */
.nav-link {
    padding: 8px 0;
    color: #5a4633 !important;
    transition: 0.3s;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hover */
.nav-link:hover {
    color: #a67c52 !important;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    background-color: #f5efe6;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Itens dropdown */
.dropdown-item {
    transition: 0.2s;
    color: #5a4633;
}

/* Hover dropdown */
.dropdown-item:hover {
    background-color: #e6d5b8;
}

/* Posição do carrinho */
.nav-item.dropdown {
    position: relative;
}

/* Menu do carrinho */
.nav-item.dropdown .dropdown-menu {
    position: absolute !important;
    top: calc(100% + 18px) !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    min-width: 190px;
    padding: 12px 0;
    border-radius: 14px;
    z-index: 10001;
}

/* Botão de idioma */
.idioma-dropdown {
    margin-left: auto;
    position: relative;
    z-index: 10000;
}

/* Estilo do botão */
.btn-idioma {
    background-color: #8b6f47;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    font-weight: 600;
    transition: 0.3s;
}

/* Hover do botão */
.btn-idioma:hover {
    background-color: #a67c52;
    color: white;
}

/* Estado ativo */
.btn-idioma:focus,
.btn-idioma:active {
    background-color: #8b6f47 !important;
    color: white !important;
    box-shadow: none !important;
}

/* Menu do idioma */
.idioma-dropdown .dropdown-menu {
    position: absolute !important;
    top: calc(100% + 18px) !important;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;
    min-width: 170px;
    padding: 12px 0;
    border-radius: 14px;
    z-index: 10001;
}

/* Linha entre idiomas */
.idioma-linha {
    margin: 4px 0;
    border-top: 1px solid #d8c7ad;
    opacity: 1;
}

/* Botão mobile */
.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

/* Navbar mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }
}

/* Caixa mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        position: relative;
        z-index: 9999;
        overflow: visible !important;
        background-color: #f5efe6;
        margin-top: 14px;
        padding: 18px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: none !important;
    }
}

/* Itens mobile */
@media (max-width: 991px) {
    .navbar-nav {
        gap: 18px;
        align-items: flex-start;
    }
}

/* Idioma mobile */
@media (max-width: 991px) {
    .idioma-dropdown {
        margin-top: 18px;
        margin-left: 0;
        width: auto;
    }
}

/* Botão idioma mobile */
@media (max-width: 991px) {
    .btn-idioma {
        width: auto;
    }
}

/* Menu idioma mobile */
@media (max-width: 991px) {
    .idioma-dropdown .dropdown-menu {
        top: 0 !important;
        left: calc(25% + 12px) !important;
        right: auto !important;
        min-width: 170px;
    }
}

/* Menu carrinho mobile */
@media (max-width: 991px) {
    .nav-item.dropdown .dropdown-menu {
        left: 0 !important;
        right: auto !important;
        transform: none !important;
        min-width: 190px;
        top: calc(100% + 6px) !important;
    }
}












/* Seção sobre */
.sobre-marca {
    width: 100%;
    padding: 80px 20px;
    background: #f5efe6;
}

/* Container sobre */
.sobre-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Introdução sobre */
.sobre-intro {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

/* Etiqueta sobre */
.sobre-etiqueta {
    display: inline-block;
    margin-bottom: 12px;
    color: #8b6f47;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Título sobre */
.sobre-intro h1 {
    margin-bottom: 20px;
    color: #2b1d0e;
    font-size: 48px;
    font-weight: 700;
}

/* Texto sobre */
.sobre-intro p {
    color: #5a4633;
    font-size: 18px;
    line-height: 1.8;
}

/* Conteúdo sobre */
.sobre-conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Imagem sobre */
.sobre-imagem {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Foto sobre */
.sobre-imagem img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* Bloco texto */
.sobre-texto {
    background: #d6c3a3;
    padding: 44px;
    border-radius: 24px;
}

/* Subtítulo sobre */
.sobre-texto h2 {
    margin-bottom: 22px;
    color: #2b1d0e;
    font-size: 36px;
    font-weight: 700;
}

/* Parágrafo sobre */
.sobre-texto p {
    margin-bottom: 18px;
    color: #3e2f1c;
    font-size: 17px;
    line-height: 1.8;
}

/* Altura da página */
.sobre-marca {
    min-height: calc(100vh - 300px - 56px);
}


/* Ajuste mobile */
@media (max-width: 768px) {
    .sobre-marca {
        padding: 55px 18px;
    }
}

/* Título mobile */
@media (max-width: 768px) {
    .sobre-intro h1 {
        font-size: 34px;
    }
}

/* Texto mobile */
@media (max-width: 768px) {
    .sobre-intro p {
        font-size: 16px;
    }
}

/* Conteúdo mobile */
@media (max-width: 768px) {
    .sobre-conteudo {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Foto mobile */
@media (max-width: 768px) {
    .sobre-imagem img {
        height: 360px;
    }
}

/* Bloco mobile */
@media (max-width: 768px) {
    .sobre-texto {
        padding: 30px 24px;
    }
}

/* Subtítulo mobile */
@media (max-width: 768px) {
    .sobre-texto h2 {
        font-size: 28px;
    }
}



/* Banner desktop */
.banner-desktop {
    display: block !important;
}

/* Banner mobile */
.banner-mobile {
    display: none !important;
}

/* Banner no celular */
@media (max-width: 768px) {
    .banner-desktop {
        display: none !important;
    }
}

/* Banner no celular */
@media (max-width: 768px) {
    .banner-mobile {
        display: block !important;
    }
}









/* Banner mobile */
@media (max-width: 768px) {
    .banner-img {
        object-fit: cover;
        object-position: center 35%;
    }
}







/* Texto longo sobre */
.sobre-texto-longo {
    padding: 38px;
}

/* Parágrafo longo */
.sobre-texto-longo p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Assinatura sobre */
.sobre-assinatura {
    margin-top: 24px;
    font-weight: 700;
    color: #2b1d0e;
}

/* Texto longo mobile */
@media (max-width: 768px) {
    .sobre-texto-longo {
        padding: 28px 22px;
    }
}

/* Parágrafo mobile */
@media (max-width: 768px) {
    .sobre-texto-longo p {
        font-size: 15.5px;
        line-height: 1.75;
    }
}




















/* Caixa texto mobile */
@media (max-width: 768px) {
    .sobre-texto {
        background: #f5efe6 !important;
        background-color: #f5efe6 !important;
        box-shadow: none !important;
        border: none !important;
    }
}


/* Esconde o link de contato duplicado no desktop */
@media (min-width: 992px) {
    .nav-contato-mobile {
        display: none !important;
    }
}

/* No mobile, deixa a navbar apenas com o botão de menu */
@media (max-width: 991px) {
    .navbar > .container-fluid {
        justify-content: flex-end;
    }

    .navbar-brand {
        display: none !important;
    }
}
/* Esconde o atalho mobile do carrinho no desktop */
.nav-carrinho-mobile {
    display: none;
}

/* Mostra e estiliza o atalho do carrinho apenas no mobile */
@media (max-width: 991px) {
    .nav-carrinho-mobile {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        color: #5a4633;
        text-decoration: none;
        border: 1px solid rgba(139, 111, 71, 0.45);
        border-radius: 50%;
        background-color: rgba(255, 250, 243, 0.72);
        transition: 0.3s;
    }

    .nav-carrinho-mobile:hover {
        color: white;
        background-color: #8b6f47;
        border-color: #8b6f47;
    }

    .icone-carrinho-mobile {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }
}