/* Landing Chimichurri — visual fiel ao mockup */

:root {
    --ouro: #C69C54;
    --navy: var(--bege, #0B4578);
    --navy-hover: var(--bege-hover, #09365e);
}

/* —— Top bar —— */
.theme-dbenit .top-bar-brand {
    background: var(--navy);
    color: #fff;
    padding: 8px 0;
    border-bottom: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.theme-dbenit .top-bar-brand .top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.theme-dbenit .top-bar-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    align-items: center;
}

.theme-dbenit .top-bar-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .95);
    white-space: nowrap;
}

.theme-dbenit .top-bar-benefits i {
    color: var(--ouro);
    font-size: 12px;
}

.theme-dbenit .top-bar-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.theme-dbenit .top-bar-social a {
    color: #fff;
    font-size: 14px;
    min-width: 28px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, transform .2s;
}

.theme-dbenit .top-bar-social a:hover {
    color: var(--ouro);
    transform: translateY(-1px);
}

/* —— Header brand —— */
.theme-dbenit .site-header.header-brand {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.theme-dbenit .header-brand-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px 24px;
    min-height: 78px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.theme-dbenit .header-brand .logo img {
    height: var(--logo-h, 56px);
}

.theme-dbenit .header-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 6px;
}

.theme-dbenit .header-nav a {
    display: block;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--escuro, #111);
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    min-height: 44px;
    line-height: 24px;
}

.theme-dbenit .header-nav a:hover,
.theme-dbenit .header-nav a.is-active {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

.theme-dbenit .header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.theme-dbenit .header-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--escuro, #111);
    font-size: 17px;
    cursor: pointer;
    border-radius: 8px;
    transition: color .2s, background .2s;
}

.theme-dbenit .header-icon-btn:hover {
    color: var(--navy);
    background: #f5f7fa;
}

.theme-dbenit .header-cart-btn .cart-badge {
    top: 4px;
    right: 2px;
    background: var(--navy);
    width: 18px;
    height: 18px;
    font-size: 10px;
}

.theme-dbenit .cart-badge-zero {
    opacity: .85;
}

.theme-dbenit .header-search-panel {
    border-top: 1px solid #eee;
    background: #fafafa;
    padding: 12px 0;
}

.theme-dbenit .header-search-panel[hidden] {
    display: none !important;
}

.theme-dbenit .header-menu-toggle {
    display: none;
    border: none;
    background: #f5f5f5;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    color: var(--escuro);
}

/* Esconde nav antigo separado */
.theme-dbenit .main-nav {
    display: none !important;
}

/* —— Hero —— */
.hero-brand {
    position: relative;
    min-height: min(78vh, 640px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(105deg, rgba(8, 20, 36, .88) 0%, rgba(8, 20, 36, .45) 48%, rgba(8, 20, 36, .25) 100%),
        var(--hero-img, none) center/cover no-repeat,
        linear-gradient(135deg, #1a120c 0%, #3d2a1a 40%, #0b1a2e 100%);
    color: #fff;
    overflow: hidden;
}

.hero-brand-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, transparent 0%, rgba(0, 0, 0, .35) 100%);
    pointer-events: none;
}

.hero-brand-content {
    position: relative;
    z-index: 1;
    padding: 64px 16px;
    max-width: 640px;
    margin-left: 0;
    animation: heroFade .8s ease both;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

.hero-brand-title {
    font-family: var(--font-logo, 'Playfair Display', Georgia, serif);
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.05;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.hero-brand-title .hero-line {
    display: block;
}

.hero-brand-title .hero-accent {
    color: var(--ouro);
    font-style: italic;
    font-weight: 600;
}

.hero-brand-sub {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .88);
    max-width: 420px;
    margin: 0 0 28px;
    line-height: 1.6;
}

.btn-brand-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 26px;
    background: var(--navy);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    transition: background .2s, transform .15s;
}

.btn-brand-primary:hover {
    background: var(--navy-hover);
    transform: translateY(-1px);
}

.btn-brand-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 32px;
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s, color .2s;
}

.btn-brand-outline:hover {
    background: var(--navy);
    color: #fff;
}

/* —— Sections —— */
.shop-main-home {
    padding-top: 56px;
    border-top: none;
}

.section-title-brand {
    font-family: var(--font);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: var(--escuro);
}

.section-title-brand .section-title-accent,
.section-title-accent {
    font-family: var(--font-logo, 'Playfair Display', Georgia, serif);
    color: var(--navy);
    font-weight: 700;
    font-style: normal;
}

.section-title-left {
    text-align: left;
}

.section-lead {
    text-align: center;
    color: #777;
    font-size: 14px;
    max-width: 520px;
    margin: -8px auto 36px;
    font-weight: 400;
}

.section-cta {
    text-align: center;
    margin-top: 36px;
}

.products-grid-brand {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card-vitrine {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .04);
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}

.product-card-vitrine:hover {
    box-shadow: 0 10px 28px rgba(11, 69, 120, .12);
    transform: translateY(-3px);
}

.product-card-vitrine .img-wrap {
    aspect-ratio: 1;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.product-card-vitrine .img-wrap img {
    max-height: 100%;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.product-card-vitrine .product-card-body {
    padding: 16px 18px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-card-vitrine h3 {
    font-size: 14px;
    font-weight: 700;
    min-height: 2.8em;
    line-height: 1.35;
    color: #1a1a1a;
}

.product-card-vitrine .product-weight {
    color: #888;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.btn-ver-produto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 44px;
    padding: 0 16px;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s, color .2s;
}

.btn-ver-produto:hover {
    background: var(--navy);
    color: #fff;
}

/* —— Momentos —— */
.momentos-section {
    padding: 56px 0 64px;
    background: #fff;
}

.momentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.momento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    border-radius: 6px;
    overflow: hidden;
    padding: 20px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .72) 100%),
        var(--momento-img, none) center/cover no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
    transition: transform .25s, box-shadow .25s;
}

.momento-card-fallback {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .75) 100%),
        linear-gradient(145deg, #2c1810, #0B4578);
}

.momento-card:nth-child(2).momento-card-fallback {
    background: linear-gradient(145deg, #1e3a2f, #0B4578);
}

.momento-card:nth-child(3).momento-card-fallback {
    background: linear-gradient(145deg, #3d2a14, #0B4578);
}

.momento-card:nth-child(4).momento-card-fallback {
    background: linear-gradient(145deg, #4a1f1f, #0B4578);
}

.momento-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4), 0 12px 28px rgba(0, 0, 0, .2);
}

.momento-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--ouro);
    color: var(--ouro);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 16px;
    background: rgba(0, 0, 0, .25);
}

.momento-nome {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

/* —— Sobre —— */
.sobre-section {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 380px;
}

.sobre-copy {
    background:
        linear-gradient(120deg, rgba(10, 10, 10, .92), rgba(10, 10, 10, .78)),
        radial-gradient(circle at 30% 40%, #2a2a2a, #0d0d0d);
    color: #fff;
    display: flex;
    align-items: center;
}

.sobre-copy-inner {
    padding: 48px 40px;
    max-width: 520px;
}

.sobre-copy .section-title-brand {
    color: #fff;
    margin-bottom: 16px;
}

.sobre-copy .section-title-accent {
    color: var(--ouro);
    background: transparent;
    padding: 0;
}

.sobre-copy p {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.sobre-media {
    background: linear-gradient(145deg, #C69C54, #a87e3a);
    min-height: 280px;
}

.sobre-media-foto {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .15)),
        var(--sobre-img) center/cover no-repeat;
}

/* —— Features —— */
.features-bar {
    background: var(--navy);
    color: #fff;
    padding: 36px 0;
}

.features-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.feature-item i {
    font-size: 22px;
    color: var(--ouro);
    margin-bottom: 6px;
}

.feature-item strong {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
}

/* —— Footer brand —— */
.footer-brand.site-footer {
    background: #111 !important;
    color: rgba(255, 255, 255, .85);
    padding: 56px 0 0;
    margin-top: auto;
}

.footer-brand-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 32px 28px;
    padding-bottom: 40px;
}

.footer-brand .footer-logo img {
    max-height: 64px;
    filter: none;
}

.footer-brand .logo-text {
    color: #fff !important;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .7);
    margin: 14px 0 18px;
    max-width: 260px;
}

.footer-brand .footer-social {
    display: flex;
    gap: 12px;
}

.footer-brand .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .2s, border-color .2s, color .2s;
}

.footer-brand .footer-social a:hover {
    background: var(--navy);
    border-color: var(--navy);
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
}

.footer-brand .footer-inst-links {
    list-style: none;
}

.footer-brand .footer-inst-links a {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    transition: color .2s;
}

.footer-brand .footer-inst-links a:hover {
    color: var(--ouro);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.45;
}

.footer-contact-list i {
    color: var(--ouro);
    margin-top: 3px;
    width: 16px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, .75);
}

.footer-contact-list a:hover {
    color: #fff;
}

.footer-bottom-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: #0a0a0a !important;
    color: rgba(255, 255, 255, .55) !important;
    font-size: 12px;
    padding: 14px 16px !important;
    text-align: left !important;
}

.footer-credit {
    color: rgba(255, 255, 255, .45);
}

/* —— Responsive —— */
@media (max-width: 1024px) {
    .products-grid-brand {
        grid-template-columns: repeat(2, 1fr);
    }

    .momentos-grid,
    .features-bar-inner,
    .footer-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-section {
        grid-template-columns: 1fr;
    }

    .sobre-media {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .theme-dbenit .header-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        order: 1;
    }

    .theme-dbenit .header-brand-inner {
        grid-template-columns: auto 1fr auto;
    }

    .theme-dbenit .header-brand .logo {
        justify-self: center;
    }

    .theme-dbenit .header-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        border-bottom: 1px solid #eee;
        box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
        padding: 8px 0 16px;
        z-index: 60;
    }

    .theme-dbenit .header-nav.open {
        display: block;
    }

    .theme-dbenit .header-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 0 12px;
    }

    .theme-dbenit .header-nav a {
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
    }

    .theme-dbenit .header-actions {
        order: 3;
    }

    .theme-dbenit .top-bar-benefits span:nth-child(n+2) {
        display: none;
    }

    .hero-brand {
        min-height: 70vh;
    }

    .hero-brand-content {
        padding: 48px 16px;
        text-align: left;
    }

    .features-bar-inner,
    .momentos-grid,
    .footer-brand-grid {
        grid-template-columns: 1fr;
    }

    .products-grid-brand {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .footer-bottom-brand {
        flex-direction: column;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .products-grid-brand {
        grid-template-columns: 1fr;
    }
}
