﻿/* ================================================
   Clau Cruz - Loja CSS
   Fiel ao layout do modelo modelos/index.html
   Cores: #9e7824 (primary) e #DDC463 (light)
   Font: Inter
   ================================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    background: #f6f6f8;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* === Variables === */
:root {
    --primary: #9e7824;
    --primary-light: #DDC463;
    --primary-10: rgba(102, 7, 165, 0.1);
    --primary-90: rgba(102, 7, 165, 0.9);
    --bg-light: #f6f6f8;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-base: #334155;
    --text-muted: #475569;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --radius: 0.25rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-full: 9999px;
    --star: #eab308;
    --site-header-height: auto;
}

/* === Layout Helpers === */
.section-padding {
    padding: 3rem 1rem;
}
@media (min-width: 1024px) {
    .section-padding {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.section-padding-lg {
    padding: 5rem 1rem;
}
@media (min-width: 1024px) {
    .section-padding-lg {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}

/* ========================================
   TOPBAR (não fixa — rola com a página)
   ======================================== */
.site-topbar {
    background: #86661f;
    color: #fff;
    font-size: 0.75rem;
    line-height: 1.3;
    position: relative;
    z-index: 40;
}
.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.75rem;
    padding: 0.5rem 1rem;
    max-width: 100%;
}
@media (min-width: 1024px) {
    .site-topbar-inner {
        padding-left: 10rem;
        padding-right: 10rem;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 1rem;
    }
}
.site-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}
.site-topbar-item .material-symbols-outlined {
    font-size: 1.125rem;
    flex-shrink: 0;
    opacity: 0.95;
}
.site-topbar-text {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}
.site-topbar-text strong {
    font-weight: 700;
    letter-spacing: 0.03em;
}
.site-topbar-frete-short {
    display: none;
}
@media (max-width: 767px) {
    .site-topbar-frete-full {
        display: none;
    }
    .site-topbar-frete-short {
        display: inline;
    }
    .site-topbar-text {
        flex-wrap: nowrap;
    }
}
.site-topbar-pix {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}
.site-topbar-pix-icon {
    display: block;
    flex-shrink: 0;
}
.site-topbar-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}
.site-topbar-whatsapp:hover {
    opacity: 0.9;
    color: inherit;
}
.site-topbar-whatsapp .bi-whatsapp {
    font-size: 1rem;
    color: #25d366;
    background: #fff;
    border-radius: 50%;
    width: 1.125rem;
    height: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
@media (max-width: 767px) {
    .site-topbar-inner {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1.25rem;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
    }
    .site-topbar-inner::-webkit-scrollbar {
        display: none;
    }
    .site-topbar-item {
        flex-shrink: 0;
    }
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    background: #000000;
    --header-py: 0.75rem;
    --logo-max-h: 82px;
    --logo-icon-size: 2rem;
    --header-gap: 2rem;
    --btn-size: 2.5rem;
    --search-h: 2.5rem;
    padding: var(--header-py) 1.5rem;
    position: sticky;
    top: 0;
    z-index: 50;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s ease;
}
.site-header.is-scrolled {
    --header-py: 0.45rem;
    --logo-max-h: 50px;
    --logo-icon-size: 1.5rem;
    --header-gap: 1.25rem;
    --btn-size: 2.25rem;
    --search-h: 2.25rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
    .site-header {
        --logo-max-h: 58px;
    }
    .site-header.is-scrolled {
        --header-py: 0.35rem;
        --logo-max-h: 40px;
        --logo-icon-size: 1.35rem;
        --header-gap: 1rem;
        --btn-size: 2.15rem;
    }
}
@media (min-width: 1024px) {
    .site-header {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.header-left {
    display: flex;
    align-items: center;
    gap: var(--header-gap);
    transition: gap 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo img {
    max-height: var(--logo-max-h);
    width: auto;
    object-fit: contain;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-logo .material-symbols-outlined {
    font-size: var(--logo-icon-size) !important;
    transition: font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-logo-text {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.site-logo-text small {
    display: block;
    font-weight: 400;
    font-style: italic;
    font-size: 0.7em;
    color: var(--text-muted);
}
.site-nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
}
.site-nav > a,
.site-nav .nav-dropdown-toggle {
    color: #ede6dd;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}
.site-nav > a:hover,
.site-nav .nav-dropdown-toggle:hover {
    color: var(--primary);
}

/* -- Nav Dropdown (Desktop) -- */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    cursor: pointer;
}
.nav-dropdown-toggle .nav-arrow {
    font-size: 1.125rem;
    transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-base);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.nav-dropdown-menu a.nav-submenu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 12rem;
}
.nav-submenu-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted, #888);
    min-width: 1.25rem;
    text-align: right;
}
.nav-dropdown-menu a.nav-submenu-link:hover .nav-submenu-count {
    color: var(--primary);
}
.nav-dropdown-menu a:hover {
    background: var(--primary-10);
    color: var(--primary);
}
.nav-promo-link {
    border-top: 1px dashed #eee;
    margin-top: 4px;
    padding-top: 8px !important;
    color: #e74c3c !important;
    font-weight: 600 !important;
}
.nav-promo-link:hover {
    background: #fef2f2 !important;
    color: #c0392b !important;
}
@media (min-width: 768px) {
    .site-nav { display: flex; }
}

/* -- Mobile Dropdown -- */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.mobile-dropdown-toggle .mobile-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}
.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--bg-light);
}
.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}
.mobile-dropdown-menu li a {
    padding-left: 3rem !important;
    font-size: 0.875rem !important;
    color: var(--text-muted) !important;
    position: relative;
}
.mobile-dropdown-menu li a.nav-submenu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-right: 1.25rem !important;
}
.mobile-dropdown-menu .nav-submenu-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted, #888);
}
.mobile-dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    transform: translateY(-50%);
}
.mobile-menu-nav li a i {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: var(--primary-light);
    width: 1.25rem;
    text-align: center;
}

.header-right {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 1rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .header-right { gap: 2rem; }
}

.header-search {
    display: none;
    position: relative;
    min-width: 10rem;
    max-width: 16rem;
    height: var(--search-h);
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-search-form {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}
.header-search .search-icon-wrap {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.75rem;
    color: var(--text-light);
    pointer-events: none;
    width: 2.5rem;
    z-index: 1;
}
.header-search input {
    width: 100%;
    height: var(--search-h);
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    font-size: 0.875rem;
    padding: 0 0.5rem 0 2.5rem;
    color: var(--text-dark);
    outline: none;
}
.header-search input::placeholder { color: var(--text-light); }
.header-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--search-h);
    width: var(--search-h);
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.header-search-btn:hover { opacity: 0.85; }
.header-search-btn .material-symbols-outlined { font-size: 1.15rem; }
@media (min-width: 640px) {
    .header-search { display: flex; flex-direction: column; }
    .btn-search-toggle { display: none !important; }
}

/* === Mobile Search Bar (dropdown abaixo do header) === */
.btn-search-toggle {
    display: flex;
    border: none;
    cursor: pointer;
}
.mobile-search-bar {
    display: none;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1rem;
    position: sticky;
    top: var(--site-header-height, 60px);
    z-index: 98;
    transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    animation: searchSlideDown 0.25s ease-out;
}
.mobile-search-bar.active {
    display: block;
}
@keyframes searchSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mobile-search-form {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    height: 2.5rem;
    position: relative;
}
.mobile-search-icon {
    position: absolute;
    left: 0.75rem;
    color: var(--text-light);
    font-size: 1.25rem;
    pointer-events: none;
}
.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 0.5rem 0 2.5rem;
    height: 100%;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
}
.mobile-search-input::placeholder {
    color: var(--text-light);
}
.mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.mobile-search-btn:hover { opacity: 0.85; }
.mobile-search-btn .material-symbols-outlined { font-size: 1.15rem; }
@media (min-width: 640px) {
    .mobile-search-bar { display: none !important; }
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .header-btns {
        gap: 1.25rem;
    }
}

/* Conta e carrinho — layout com ícone + duas linhas (referência premium) */
.header-widget {
    display: none;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}
.header-widget:hover {
    opacity: 0.88;
}
.btn-header-mobile-only {
    display: flex;
}
@media (min-width: 768px) {
    .header-widget {
        display: flex;
    }
    .btn-header-mobile-only {
        display: none !important;
    }
}
.header-widget-icon {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86661f;
    line-height: 1;
}
.header-widget-icon .material-symbols-outlined {
    font-size: 1.85rem;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.header-widget-text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    line-height: 1.2;
    min-width: 0;
}
.header-widget-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #86661f;
    white-space: nowrap;
}
.header-widget-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
}
.header-widget-cart .carrinho-badge {
    top: -2px;
    right: -6px;
    min-width: 17px;
    height: 17px;
    font-size: 0.65rem;
    background: #86661f;
    color: #fff;
    border: 2px solid #000;
}
.site-header.is-scrolled .header-widget-icon .material-symbols-outlined {
    font-size: 1.65rem;
}
.site-header.is-scrolled .header-widget-title {
    font-size: 0.8125rem;
}
.site-header.is-scrolled .header-widget-sub {
    font-size: 0.7rem;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    height: var(--btn-size);
    width: var(--btn-size);
    background: #fff;
    color: #1c1c1e;
    transition: background 0.2s,
                height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
}
.btn-icon:hover {
    background: var(--border);
}

.btn-carrinho {
    position: relative;
}

.btn-usuario {
    position: relative;
}
.usuario-status-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.usuario-status-badge.logado {
    background: #22c55e;
}
.usuario-status-badge.deslogado {
    background: #ef4444;
}

.carrinho-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: #86661f;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.carrinho-badge-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    margin-left: 6px;
    padding: 0 5px;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    color: var(--text-dark);
    padding: 14px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary);
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification .material-symbols-outlined {
    color: #27ae60;
    font-size: 1.3rem;
}

/* ── Botão Finalizar Compra flutuante ── */
.finalizar-fab {
    position: fixed;
    top: calc(var(--site-fab-top, calc(var(--site-header-height, 110px) + 1.25rem)));
    right: 1.5rem;
    z-index: 110;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, var(--primary) 0%, #c99d55 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.55rem 1.2rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                padding-bottom 0.3s ease;
    animation: fabSlideDown 0.35s ease-out;
    pointer-events: auto;
}
.finalizar-fab:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    color: #fff;
    padding-bottom: 0.7rem;
}
.finalizar-fab .material-symbols-outlined {
    font-size: 1.15rem;
}
.finalizar-fab-label {
    line-height: 1;
}
.finalizar-fab-qtd {
    background: rgba(255,255,255,0.25);
    min-width: 1.35rem;
    height: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}
@keyframes fabSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
@media (max-width: 768px) {
    .site-logo-text {
        display: none;
    }
    .finalizar-fab {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 0.75rem 1.2rem;
        padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
        font-size: 0.8rem;
        justify-content: center;
        box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.25);
        animation: fabSlideUp 0.35s ease-out;
    }
    body.has-finalizar-fab {
        padding-bottom: calc(3.25rem + env(safe-area-inset-bottom, 0px));
    }
    body.has-finalizar-fab .whatsapp-float {
        bottom: calc(3.75rem + env(safe-area-inset-bottom, 0px));
    }
}
@keyframes fabSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

/* Quick cart button on product cards */
.btn-quick-cart {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.25s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(102,7,165,0.3);
}

.btn-quick-cart .material-symbols-outlined {
    font-size: 1.1rem;
}

.rel-card-img:hover .btn-quick-cart,
.product-card-img:hover .btn-quick-cart {
    opacity: 1;
    transform: translateY(0);
}

.btn-quick-cart:hover {
    background: #5206a0;
    transform: scale(1.1);
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-size);
    width: var(--btn-size);
    font-size: 1.5rem;
    color: #ffffff;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
    .menu-toggle { display: none; }
}

/* === Mobile Menu === */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 85%; max-width: 360px;
    background: var(--bg-white);
    z-index: 100;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
    font-size: 1.25rem;
    color: var(--text-muted);
    padding: 0.5rem;
}
.mobile-menu-nav {
    padding: 1rem 0;
}
.mobile-menu-nav li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-base);
    transition: background 0.2s, color 0.2s;
}
.mobile-menu-nav li a:hover {
    background: var(--bg-light);
    color: var(--primary);
}
.mobile-menu-social {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
}
.mobile-menu-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    color: var(--primary);
    font-size: 1rem;
    transition: background 0.2s;
}
.mobile-menu-social a:hover {
    background: var(--primary-10);
}

/* ========================================
   HERO SECTION – full width, premium
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.hero-inner {
    display: flex;
    min-height: clamp(420px, 72vh, 720px);
    flex-direction: column;
    gap: 1.25rem;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.hero-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.55) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 45%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.hero-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}
.hero-content-wrap {
    position: relative;
    z-index: 2;
    max-width: 40rem;
    width: 100%;
    margin: 0;
    padding: 0;
}
.hero-content-layer {
    position: absolute;
    inset: -1.75rem -2rem;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.42) 50%,
        rgba(28, 28, 30, 0.6) 100%
    );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    z-index: 0;
    pointer-events: none;
}
.hero-content-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
}
.hero-content-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 0% 0%, rgba(221, 196, 99, 0.1) 0%, transparent 55%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 2.25rem 2rem 2.5rem;
    animation: heroContentIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-content h1 {
    color: #fff;
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-shadow: none;
}
.hero-content h1 strong,
.hero-content h1 b {
    font-weight: 700;
}
.hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 400;
    margin-top: 1.25rem;
    line-height: 1.65;
    max-width: 32rem;
    margin-left: 0;
    margin-right: 0;
}
.hero-content .btn-hero {
    display: inline-block;
    margin-top: 2rem;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1rem 2.75rem;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(158, 120, 36, 0.35);
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.hero-content .btn-hero:hover {
    background: #b8922a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(158, 120, 36, 0.45);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: clamp(420px, 72vh, 720px);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.9s;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.hero-slide .hero-inner {
    min-height: clamp(420px, 72vh, 720px);
    height: 100%;
}
.hero-dots {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-dot {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.35s ease, background 0.35s ease;
}
.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}
.hero-dot.active {
    width: 44px;
    background: var(--primary-light);
}
.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    z-index: 10;
    pointer-events: none;
}
.hero-arrow {
    pointer-events: auto;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    backdrop-filter: blur(10px);
}
.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    transform: scale(1.05);
}
@media (min-width: 768px) {
    .hero-inner {
        padding: 4rem 2.5rem;
    }
    .hero-content-layer {
        inset: -2rem -2.75rem;
    }
    .hero-content-layer::before {
        left: 3rem;
    }
    .hero-content {
        padding: 2.75rem 3rem 3rem;
    }
    .hero-arrow {
        width: 3.25rem;
        height: 3.25rem;
    }
}
@media (min-width: 1024px) {
    .hero-inner {
        padding: 4rem 10rem;
    }
}

/* ========================================
   FEATURED COLLECTIONS
   ======================================== */
.collections-section {
    padding: 3rem 1rem;
}
@media (min-width: 1024px) {
    .collections-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.collections-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.collections-header h2 {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.collections-nav {
    display: flex;
    gap: 0.5rem;
}
.collections-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.collections-arrow:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-10);
}
.collections-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    border-color: var(--border);
    color: var(--text-muted);
    background: var(--bg-white);
}
.collections-arrow .material-symbols-outlined {
    font-size: 1.25rem;
}
.collections-nav[hidden] {
    display: none !important;
}
.collections-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.25rem;
}
.collections-carousel::-webkit-scrollbar {
    display: none;
}
.collections-carousel .collection-card {
    flex: 0 0 calc(50% - 0.75rem);
    scroll-snap-align: start;
    min-width: 0;
}
@media (max-width: 639px) {
    .collections-carousel {
        gap: 1rem;
    }
    .collections-carousel .collection-card {
        flex: 0 0 calc(50% - 0.5rem);
    }
    .collections-carousel .collection-card-overlay {
        padding: 0.75rem;
    }
    .collections-carousel .collection-card-overlay h3 {
        font-size: 1rem;
    }
    .collections-carousel .collection-card-overlay p {
        font-size: 0.7rem;
    }
}
/* Desktop: até 6 na linha; carrossel quando houver mais de 6 categorias */
@media (min-width: 1024px) {
    .collections-carousel.collections-per-row-1 .collection-card { flex: 0 0 100%; }
    .collections-carousel.collections-per-row-2 .collection-card { flex: 0 0 calc(50% - 0.75rem); }
    .collections-carousel.collections-per-row-3 .collection-card { flex: 0 0 calc((100% - 3rem) / 3); }
    .collections-carousel.collections-per-row-4 .collection-card { flex: 0 0 calc((100% - 4.5rem) / 4); }
    .collections-carousel.collections-per-row-5 .collection-card { flex: 0 0 calc((100% - 6rem) / 5); }
    .collections-carousel.collections-per-row-6 .collection-card { flex: 0 0 calc((100% - 7.5rem) / 6); }
}
.collection-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    aspect-ratio: 4/5;
    background: var(--border);
}
.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.collection-card:hover img {
    transform: scale(1.10);
}
.collection-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
.collection-card-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}
@media (min-width: 1024px) {
    .collections-carousel .collection-card-overlay h3 {
        font-size: 1rem;
    }
    .collections-carousel .collection-card-overlay {
        padding: 1rem;
    }
}
.collection-card-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}
@media (min-width: 1024px) {
    .collections-carousel .collection-card-overlay p {
        font-size: 0.7rem;
    }
}

/* ========================================
   PRODUCTS GRID
   ======================================== */
.products-section {
    padding: 3rem 1rem;
    background: var(--bg-white);
}
@media (min-width: 1024px) {
    .products-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.products-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.products-section-header h2 {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}
.products-ver-todos {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
    transition: color 0.2s;
}
.products-ver-todos .material-symbols-outlined {
    font-size: 0.875rem;
    transition: transform 0.2s;
}
.products-ver-todos:hover {
    color: #000;
    text-decoration: none;
}
.products-ver-todos:hover .material-symbols-outlined {
    transform: translateX(3px);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.5rem;
}
@media (min-width: 768px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        column-gap: 1.5rem;
        row-gap: 2.5rem;
    }
    .products-grid.products-grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}
.product-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    height: 100%;
}
.product-card-img {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.product-card-img-link {
    display: block;
    width: 100%;
    height: 100%;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.product-card:hover .product-card-img img {
    transform: scale(1.06);
}
.product-card-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--bg-light);
}
.product-card-img .placeholder-icon {
    font-size: 3rem;
    color: var(--text-lighter);
}
.product-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    text-decoration: none;
    z-index: 2;
}
.product-card:hover .product-card-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.35);
}
.product-btn-details {
    background: #fff;
    color: var(--text-dark);
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: transform 0.3s ease, background 0.2s, color 0.2s;
}
.product-card:hover .product-btn-details {
    transform: translateY(0);
}
.product-card-overlay:hover .product-btn-details {
    background: var(--primary);
    color: #fff;
}
.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    text-decoration: none;
    color: inherit;
}
.product-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.product-badge.promo {
    background: #dc2626;
    color: #fff;
}
.product-badge.new {
    background: var(--primary);
    color: #fff;
}
.product-btn-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
    padding: 0.7rem 1rem;
    background: #111111;
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(158, 120, 36, 0.25);
}
.product-btn-buy .material-symbols-outlined {
    font-size: 1.1rem;
}
.product-btn-buy:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(158, 120, 36, 0.35);
}
.product-info p.product-name {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.3;
    margin: 0 0 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}
.product-info p.product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9375rem;
    margin: 0;
    min-height: 1.35em;
}
.product-info .price-old {
    color: #dc2626;
    text-decoration: line-through;
    font-weight: 500;
    font-size: 0.8125rem;
}
.product-info .price-current {
    color: var(--primary);
    font-weight: 700;
}
.products-grid-6 .product-info p.product-name {
    font-size: 0.8125rem;
    min-height: 2.4em;
}
.products-grid-6 .product-info p.product-price {
    font-size: 0.875rem;
}
.products-grid-6 .product-btn-buy {
    padding: 0.55rem 0.5rem;
    font-size: 0.65rem;
}
.product-price-pix-block {
    margin: 0.15rem 0 0.35rem;
}
.product-price-pix-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: #32bcad;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
.product-price-pix {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.2rem 0.4rem;
    margin: 0;
    line-height: 1.2;
}
.product-price-pix-value {
    color: #86661f;
    font-weight: 800;
    font-size: 1.0625rem;
}
.product-price-pix-label {
    color: #86661f;
    font-weight: 600;
    font-size: 0.75rem;
}
.product-price-pix-off {
    font-size: 0.65rem;
    font-weight: 700;
    color: #32bcad;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.product-price.product-price-secondary {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
    min-height: 0;
}
.product-price.product-price-secondary .price-old {
    font-size: 0.7rem;
}
.product-price.product-price-secondary .price-list-label {
    color: var(--text-muted);
    font-weight: 500;
}
.product-price.product-price-secondary .price-list-value {
    color: var(--text-dark);
    font-weight: 600;
}
.products-grid-6 .product-price-pix-value {
    font-size: 0.9375rem;
}
.product-info .product-price-parcela {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.35;
    margin: 0.25rem 0 0;
}

/* ========================================
   BARRA DE BENEFÍCIOS (HOME)
   ======================================== */
.home-benefits-bar {
    background: #86661F;
    color: #fff;
    padding: 1.125rem 1rem;
}
@media (min-width: 1024px) {
    .home-benefits-bar {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.home-benefits-bar-inner {
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem 1.5rem;
}
@media (min-width: 768px) {
    .home-benefits-bar-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 1rem;
    }
}
.home-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.home-benefit-item .material-symbols-outlined {
    font-size: 1.75rem;
    flex-shrink: 0;
    opacity: 0.95;
}
.home-benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.2;
}
.home-benefit-text strong {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.home-benefit-text span {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}
@media (max-width: 767px) {
    .home-benefits-bar-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.75rem;
        justify-items: stretch;
        align-items: start;
    }
    .home-benefit-item {
        flex: none;
        width: 100%;
        justify-content: flex-start;
        min-width: 0;
    }
    .home-benefit-text {
        text-align: left;
    }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    padding: 5rem 1rem;
}
@media (min-width: 1024px) {
    .testimonials-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.testimonials-section .section-heading {
    text-align: center;
    margin-bottom: 3rem;
}
.testimonials-section .section-heading h2 {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.testimonial-stars {
    display: flex;
    color: var(--star);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: var(--border);
    overflow: hidden;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-author-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-dark);
}
.testimonial-author-label {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter-section {
    display: block;
    width: 100%;
    padding: 2.25rem 1rem;
    margin: 0;
    border: none;
    background: linear-gradient(135deg, #86661F 0%, #6f5520 48%, #5a4619 100%);
    color: #fff;
}
@media (min-width: 1024px) {
    .newsletter-section {
        padding: 2.5rem 10rem;
    }
}
.newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    text-align: left;
}
@media (min-width: 768px) {
    .newsletter-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }
}
.newsletter-copy {
    flex: 1 1 auto;
    min-width: 0;
}
.newsletter-copy h2 {
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}
.newsletter-copy p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
    max-width: 32rem;
}
.newsletter-action {
    flex: 0 1 auto;
    width: 100%;
    min-width: 0;
}
@media (min-width: 768px) {
    .newsletter-action {
        width: auto;
        min-width: min(100%, 22rem);
        max-width: 26rem;
    }
}
.newsletter-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(6px);
}
.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 0.7rem 1.1rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 0.875rem;
    outline: none;
}
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}
.newsletter-form input:focus {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.newsletter-form button {
    flex-shrink: 0;
    background: #fff;
    color: #5a4619;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.7rem 1.35rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.newsletter-form button:hover {
    background: #faf8f5;
    color: #86661F;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.newsletter-msg {
    display: none;
    margin-top: 0.65rem;
    padding: 0.5rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.4;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    --footer-bg: #1c1c1e;
    --footer-text: #e2e8f0;
    --footer-text-muted: #94a3b8;
    --footer-text-heading: #f8fafc;
    --footer-border: rgba(255, 255, 255, 0.12);
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: var(--footer-bg);
    color: var(--footer-text);
}
.site-footer .newsletter-section {
    margin: 0;
}
.site-footer .footer-grid {
    padding: 3rem 1.25rem 0;
}
.site-footer .footer-bottom {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 2rem;
}
@media (min-width: 1024px) {
    .site-footer .newsletter-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
    .site-footer .footer-grid,
    .site-footer .footer-bottom {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.footer-col-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-col-brand .footer-brand {
    justify-content: center;
}
.footer-col-brand .footer-social {
    justify-content: center;
}
.footer-col-brand .footer-dev-by {
    justify-content: center;
}
.footer-col-brand > p {
    max-width: 22rem;
}
@media (max-width: 767px) {
    .footer-col-brand {
        padding-bottom: 1.5rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid var(--footer-border);
    }
    .footer-col {
        border-bottom: 1px solid var(--footer-border);
        padding: 0.75rem 0;
    }
    .footer-col:last-child {
        border-bottom: none;
    }
    .footer-col h4 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        margin-bottom: 0;
        padding: 0.5rem 0;
        user-select: none;
        -webkit-user-select: none;
        color: var(--footer-text-heading);
    }
    .footer-col h4::after {
        content: '\e5cf';
        font-family: 'Material Symbols Outlined';
        font-size: 1.25rem;
        color: var(--footer-text-muted);
        transition: transform 0.3s ease;
    }
    .footer-col.active h4::after {
        transform: rotate(180deg);
    }
    .footer-col .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding: 0;
    }
    .footer-col.active .footer-links {
        max-height: 300px;
        padding: 0.5rem 0 0.25rem;
    }
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.footer-brand .icon {
    color: var(--primary-light);
    font-size: 1.5rem;
}
.footer-brand h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--footer-text-heading);
}
.footer-brand img,
.footer-brand .footer-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}
.footer-brand-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-light);
    line-height: 1.2;
}
.footer-brand-text small {
    display: block;
    font-weight: 400;
    font-style: italic;
    font-size: 0.7em;
    color: var(--footer-text-muted);
}
.footer-col p {
    font-size: 0.875rem;
    color: var(--footer-text-muted);
    line-height: 1.6;
}
.footer-dev-by {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--footer-text-muted);
}
.footer-dev-by a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s;
}
.footer-dev-by a:hover {
    opacity: 0.85;
}
.footer-dev-by img {
    height: 18px;
    width: auto;
    vertical-align: middle;
}
.footer-col h4 {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--footer-text-heading);
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links li a,
.footer-links li span {
    font-size: 0.875rem;
    color: var(--footer-text-muted);
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: var(--primary-light);
}
.footer-links li a i {
    color: var(--primary-light);
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-light);
    font-size: 1.05rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--footer-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--footer-text-muted);
    text-align: center;
}
.footer-bottom p {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem 0.35rem;
    margin: 0;
    color: var(--footer-text-muted);
    line-height: 1.4;
}
.footer-bottom p a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.footer-bottom p img {
    display: inline-block;
    height: 20px;
    width: auto;
    vertical-align: middle;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .footer-bottom p {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: var(--footer-text-muted);
    transition: color 0.2s;
}
.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 90;
    transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ========================================
   SOBRE / ABOUT
   ======================================== */
.about-section {
    padding: 5rem 1rem;
    background: var(--border-light);
}
@media (min-width: 1024px) {
    .about-section {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
        gap: 2.5rem 3.5rem;
    }
}
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
        gap: 3rem 4rem;
    }
}
.about-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.about-text .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.about-text .divider {
    width: 3rem;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--border);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--primary-light);
    background: linear-gradient(135deg, var(--primary-10), rgba(198,128,227,0.1));
}
.about-image-placeholder i {
    font-size: 4rem;
}
.about-image-placeholder h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
    padding: 3.5rem 1rem 4rem;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 55%);
}
@media (min-width: 1024px) {
    .contact-section {
        padding: 4rem 10rem 4.5rem;
    }
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1080px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
    }
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 2rem 1.25rem 1.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(134, 102, 31, 0.1);
    background: #fff;
    text-align: center;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(26, 26, 46, 0.04),
        0 8px 28px rgba(134, 102, 31, 0.07);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #86661F 0%, #c9a962 50%, #86661F 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(134, 102, 31, 0.22);
    box-shadow:
        0 4px 8px rgba(26, 26, 46, 0.04),
        0 20px 48px rgba(134, 102, 31, 0.14);
}
.contact-card:hover::before {
    opacity: 1;
}
.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #86661F;
    background: linear-gradient(145deg, rgba(134, 102, 31, 0.08) 0%, rgba(201, 169, 98, 0.18) 100%);
    border: 1px solid rgba(134, 102, 31, 0.12);
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.contact-card:hover .contact-card-icon {
    color: #fff;
    background: linear-gradient(145deg, #86661F 0%, #a8842f 100%);
    box-shadow: 0 8px 20px rgba(134, 102, 31, 0.35);
    transform: scale(1.05);
}
.contact-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
}
.contact-card-value {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-muted);
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
}
.contact-card:hover .contact-card-value {
    color: #5c4a2a;
}

/* ========================================
   EMPTY STATE
   ======================================== */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-lighter);
}
.empty-state i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

/* ========================================
   SOBRE INFO CARDS
   ======================================== */
.about-info-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}
.about-info-item strong {
    color: var(--primary);
}
.about-info-item span {
    color: var(--text-muted);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--text-lighter); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

/* ========================================
   ACEITE DE TERMOS / PRIVACIDADE
   ======================================== */
.aceite-termos-group {
    margin-top: 0.75rem;
}
.aceite-termos-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
}
.aceite-termos-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-top: 2px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    background: #fff;
}
.aceite-termos-label input[type="checkbox"]:checked {
    background: var(--primary, #9e7824);
    border-color: var(--primary, #9e7824);
}
.aceite-termos-label input[type="checkbox"]:checked::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.aceite-termos-label input[type="checkbox"]:focus {
    outline: 2px solid rgba(102,7,165,0.3);
    outline-offset: 2px;
}
.aceite-termos-label a {
    color: var(--primary, #9e7824);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}
.aceite-termos-label a:hover {
    color: var(--primary-light, #DDC463);
}

/* ========================================
   LGPD COOKIE BAR
   ======================================== */
.lgpd-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(3, 3, 3, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid var(--primary, #9e7824);
    padding: 1.25rem 1rem;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    animation: lgpdSlideUp 0.5s ease-out;
}
@keyframes lgpdSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes lgpdSlideDown {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100%); opacity: 0; }
}
.lgpd-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.lgpd-cookie-text {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 280px;
}
.lgpd-cookie-text i {
    font-size: 1.5rem;
    color: var(--primary-light, #DDC463);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.lgpd-cookie-text p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.lgpd-cookie-text a {
    color: var(--primary-light, #DDC463);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.lgpd-cookie-text a:hover {
    color: #fff;
}
.lgpd-cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.lgpd-btn {
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.lgpd-btn-accept {
    background: var(--primary, #9e7824);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102,7,165,0.35);
}
.lgpd-btn-accept:hover {
    background: var(--primary-light, #DDC463);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,7,165,0.45);
}
.lgpd-btn-essential {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.25);
}
.lgpd-btn-essential:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
@media (max-width: 640px) {
    .lgpd-cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    .lgpd-cookie-text {
        flex-direction: column;
        align-items: center;
    }
    .lgpd-cookie-text p {
        font-size: 0.85rem;
    }
    .lgpd-cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    .lgpd-btn {
        width: 100%;
    }
}
