:root {
    --cor-principal: #A65F46;
    --cor-secundaria: #D9A86C;
    --cor-fundo: #FBF7F1;
    --cor-texto: #332820;
    --cor-clara: #FFFDF9;
    --cor-borda: #E9DCCF;
    --sombra: 0 18px 50px rgba(82, 55, 41, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 54px);
    background: rgba(255, 253, 249, .94);
    border-bottom: 1px solid var(--cor-borda);
    backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--cor-principal);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0;
}

.brand-logo {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--cor-borda);
    border-radius: 50%;
    background: #fff;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 3px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
}

.brand small {
    max-width: 390px;
    color: #755f52;
    font-size: .82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 6px;
    color: #5d473b;
    font-weight: 700;
    font-size: .94rem;
}

.main-nav a:hover,
.nav-cta {
    background: #f1e5da;
}

.menu-toggle {
    display: none;
    border: 0;
    background: var(--cor-principal);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    font-size: 1.2rem;
}

.hero {
    min-height: 540px;
    display: flex;
    align-items: center;
    padding: 56px clamp(18px, 5vw, 72px);
    background:
        linear-gradient(90deg, rgba(83, 51, 37, .82), rgba(83, 51, 37, .28)),
        radial-gradient(circle at 88% 24%, rgba(217, 168, 108, .7), transparent 30%),
        linear-gradient(135deg, #8f513c, #d5a66d 58%, #f8eadb);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-content {
    max-width: 760px;
}

.hero h1,
.page-hero h1,
.section-heading h1,
.section-heading h2,
.admin-heading h1 {
    margin: 0;
    line-height: 1.1;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(2.4rem, 7vw, 5.4rem);
}

.hero p {
    max-width: 620px;
    font-size: 1.18rem;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--cor-secundaria);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
}

.section {
    padding: 64px clamp(18px, 5vw, 72px);
}

.section.narrow {
    max-width: 900px;
    margin: 0 auto;
}

.band {
    background: #fff8ef;
    border-block: 1px solid var(--cor-borda);
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading.with-action {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.section-heading h2,
.section-heading h1,
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.promo-section {
    background: linear-gradient(180deg, #fff8ef 0%, #fbf0df 100%);
    border-block: 1px solid var(--cor-borda);
}

.promo-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.promotion-card,
.news-card {
    overflow: hidden;
    background: var(--cor-clara);
    border: 1px solid var(--cor-borda);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(82, 55, 41, .1);
}

.promotion-image,
.news-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: #f1e5da;
    overflow: hidden;
}

.promotion-image img,
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-seal {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: #a83d32;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
}

.promo-seal.inline-seal {
    position: static;
}

.promotion-info,
.news-info {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.promotion-info h3,
.news-info h3 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.25;
}

.promo-text {
    margin: 0;
    color: var(--cor-principal);
    font-weight: 900;
}

.promo-prices,
.promo-detail-price {
    display: grid;
    gap: 4px;
}

.old-price {
    color: #887164;
    font-weight: 800;
    text-decoration: line-through;
}

.promo-price {
    color: #a83d32;
    font-size: 1.55rem;
    font-weight: 900;
}

.promotion-actions,
.news-detail-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.product-card {
    overflow: hidden;
    background: var(--cor-clara);
    border: 1px solid var(--cor-borda);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(82, 55, 41, .08);
}

.product-card.is-promotion {
    border-color: rgba(168, 61, 50, .28);
    box-shadow: 0 12px 30px rgba(168, 61, 50, .1);
}

.product-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f1e5da;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--cor-secundaria);
    color: #38271d;
    font-size: .75rem;
    font-weight: 800;
}

.badge.sold {
    right: 12px;
    left: auto;
    background: #6b625c;
    color: #fff;
}

.product-info {
    padding: 18px;
}

.category-pill {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--cor-principal);
    font-size: .82rem;
    font-weight: 800;
}

.product-info h3 {
    margin: 0 0 8px;
    font-size: 1.18rem;
}

.product-info p {
    min-height: 52px;
    margin: 0 0 16px;
    color: #6f5b50;
}

.product-info .product-promo-text {
    min-height: 0;
    margin: -2px 0 8px;
    color: #a83d32;
    font-size: .86rem;
}

.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.card-price-stack {
    display: grid;
    gap: 2px;
    line-height: 1.1;
}

.product-actions .old-price {
    font-size: .84rem;
}

.product-actions .promo-price {
    color: #a83d32;
    font-size: 1.2rem;
}

.price,
.product-actions strong {
    color: var(--cor-principal);
    font-size: 1.35rem;
    font-weight: 800;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: var(--cor-secundaria);
    color: #38271d;
    font-weight: 800;
    cursor: pointer;
    font-size: .95rem;
    text-align: center;
}

.button.primary {
    background: var(--cor-principal);
    color: #fff;
}

.button.ghost {
    background: #fff;
    border-color: var(--cor-borda);
    color: var(--cor-principal);
}

.button.danger {
    background: #a83d32;
    color: #fff;
}

.button.small {
    min-height: 36px;
    padding: 8px 11px;
    font-size: .82rem;
}

.button.full {
    width: 100%;
}

.interaction-box {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.interaction-box.compact {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--cor-borda);
}

.interaction-actions,
.interaction-counters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-interacao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid var(--cor-borda);
    border-radius: 999px;
    background: #fff8ef;
    color: var(--cor-principal);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.btn-interacao:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(82, 55, 41, .1);
}

.btn-interacao.interesse {
    background: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    color: #38271d;
}

.btn-interacao.gostei {
    background: #fff;
}

.btn-interacao:disabled {
    cursor: not-allowed;
    opacity: .62;
    transform: none;
    box-shadow: none;
}

.counter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid var(--cor-borda);
    border-radius: 999px;
    background: #fff;
    color: #6f5b50;
    font-size: .88rem;
    font-weight: 700;
}

.counter-chip strong {
    color: var(--cor-principal);
    font-size: 1rem;
}

.interacao-feedback {
    min-height: 22px;
    color: #766154;
    font-size: .9rem;
    font-weight: 800;
}

.interacao-feedback.success {
    color: #2e6e3a;
}

.interacao-feedback.error {
    color: #8b352b;
}

.news-section {
    background: #fffdf9;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #766154;
    font-size: .9rem;
    font-weight: 800;
}

.news-type {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f1e5da;
    color: #5d473b;
    font-size: .75rem;
    font-weight: 900;
}

.news-type.evento {
    background: #e7f4e9;
    color: #285f35;
}

.news-type.comunicado {
    background: #fff1cf;
    color: #7a520e;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.filter-tabs a {
    padding: 9px 13px;
    border: 1px solid var(--cor-borda);
    border-radius: 999px;
    background: #fff;
    color: #6f5b50;
    font-weight: 800;
}

.filter-tabs a.active {
    background: var(--cor-principal);
    border-color: var(--cor-principal);
    color: #fff;
}

.news-detail {
    width: min(980px, calc(100% - 36px));
    margin: 42px auto 72px;
}

.news-detail-heading {
    margin: 22px 0;
}

.news-detail-heading h1 {
    margin: 10px 0;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.08;
}

.news-detail-heading p {
    max-width: 760px;
    color: #6f5b50;
    font-size: 1.1rem;
}

.news-detail-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--cor-borda);
    box-shadow: var(--sombra);
    margin: 24px 0;
}

.event-box {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 16px;
    border: 1px solid var(--cor-borda);
    border-radius: 8px;
    background: #fff8ef;
}

.about-band {
    background: #fff8ef;
}

.about-preview,
.contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.about-preview p,
.contact-cta p {
    max-width: 680px;
}

.promo-admin-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--cor-borda);
    border-radius: 8px;
    background: #fff8ef;
}

.interest-badge {
    display: inline-flex;
    align-items: center;
    max-width: 240px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
    line-height: 1.25;
}

.interest-badge.high {
    background: #fff1cf;
    color: #7a520e;
}

.interest-badge.promo {
    background: #e7f4e9;
    color: #285f35;
}

.category-list,
.contact-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
}

.category-list a,
.contact-card,
.stat,
.panel,
.form-card,
.empty-state {
    background: var(--cor-clara);
    border: 1px solid var(--cor-borda);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(82, 55, 41, .08);
}

.category-list a,
.contact-card,
.stat {
    padding: 20px;
}

.category-list strong,
.contact-card strong,
.stat strong {
    display: block;
}

.category-list span,
.contact-card span,
.stat span,
.muted {
    color: #766154;
}

.page-hero {
    padding: 72px clamp(18px, 5vw, 72px) 36px;
}

.page-hero p {
    max-width: 680px;
}

.text-content {
    color: #57463c;
    font-size: 1.08rem;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(280px, .95fr);
    gap: clamp(24px, 4vw, 54px);
    padding: 56px clamp(18px, 5vw, 72px);
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 14px;
}

.detail-image {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--cor-borda);
    background: #fff;
    box-shadow: var(--sombra);
}

.detail-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
    gap: 10px;
}

.product-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.product-thumb.active {
    border-color: var(--cor-principal);
    box-shadow: 0 8px 20px rgba(82, 55, 41, .16);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.detail-content h1 {
    margin: 8px 0 10px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.1;
}

.status {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #edf7ef;
    color: #2e6e3a;
    font-weight: 800;
}

.status.vendido {
    background: #f4e6e2;
    color: #8b352b;
}

.admin-login {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: 32px 18px;
}

.form-card {
    width: min(440px, 100%);
    padding: 28px;
}

.admin-page {
    padding: 42px clamp(18px, 5vw, 72px) 72px;
}

.admin-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.panel {
    padding: 22px;
    margin-top: 20px;
}

.stat strong {
    color: var(--cor-principal);
    font-size: 2.4rem;
}

.interest-list {
    display: grid;
    gap: 12px;
}

.interest-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--cor-borda);
}

.interest-item:last-child {
    border-bottom: 0;
}

.interest-item strong,
.interest-item span {
    display: block;
}

.interest-item span {
    color: #766154;
    font-size: .92rem;
}

.interest-item em {
    color: var(--cor-principal);
    font-style: normal;
    font-weight: 900;
    text-align: right;
}

.dashboard-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

th,
td {
    padding: 13px 12px;
    border-bottom: 1px solid var(--cor-borda);
    text-align: left;
    vertical-align: middle;
}

th {
    color: #6a5041;
    font-size: .83rem;
    text-transform: uppercase;
}

.thumb {
    width: 64px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
}

.actions,
.inline,
.form-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

label {
    display: grid;
    gap: 7px;
    color: #5d473b;
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--cor-borda);
    border-radius: 6px;
    background: #fff;
    color: var(--cor-texto);
    padding: 12px 13px;
    font: inherit;
}

textarea {
    resize: vertical;
}

input[type="color"] {
    height: 46px;
    padding: 4px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.wide {
    grid-column: 1 / -1;
}

.compact-form {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: end;
    gap: 12px;
}

.check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check input {
    width: 18px;
    height: 18px;
}

.current-image {
    display: grid;
    gap: 8px;
    color: #6a5041;
    font-weight: 800;
}

.current-image img {
    width: min(280px, 100%);
    border-radius: 8px;
    border: 1px solid var(--cor-borda);
}

.product-images-admin {
    display: grid;
    gap: 14px;
}

.product-images-admin h2 {
    margin: 0;
}

.admin-image-grid,
.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

.admin-image-card,
.upload-preview-item {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--cor-borda);
    border-radius: 8px;
    background: #fff;
}

.admin-image-card.main {
    border-color: var(--cor-principal);
}

.admin-image-card img,
.upload-preview-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    background: #f1e5da;
}

.upload-preview-item span {
    color: #6f5b50;
    font-size: .82rem;
    word-break: break-word;
}

.main-photo-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--cor-principal);
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
}

.admin-image-actions {
    display: grid;
    gap: 8px;
}

.admin-image-actions form,
.admin-image-actions button {
    width: 100%;
}

.alert {
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 800;
}

.alert.error {
    background: #ffe9e5;
    color: #8b352b;
}

.alert.success {
    background: #e8f7ed;
    color: #2e6e3a;
}

.alert.warning {
    background: #fff1cf;
    color: #7a520e;
}

.divider {
    height: 1px;
    background: var(--cor-borda);
}

.empty-state {
    padding: 34px;
    text-align: center;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 30px clamp(18px, 5vw, 72px);
    background: #3c2b23;
    color: #fff6ed;
}

.site-footer p {
    margin: 6px 0 0;
    color: #e4cdb8;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    font-weight: 800;
}

@media (max-width: 820px) {
    .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav.open {
        display: flex;
    }

    .brand small {
        max-width: 210px;
    }

    .hero {
        min-height: 480px;
    }

    .product-detail,
    .form-grid,
    .promo-admin-box,
    .dashboard-columns {
        grid-template-columns: 1fr;
    }

    .compact-form,
    .admin-heading,
    .site-footer,
    .section-heading.with-action,
    .about-preview,
    .contact-cta {
        align-items: stretch;
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .hero,
    .section,
    .admin-page,
    .product-detail {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .product-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .product-actions .button {
        width: 100%;
    }

    .interaction-actions,
    .interaction-counters,
    .interest-item {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-interacao,
    .counter-chip {
        width: 100%;
    }

    .promotion-actions,
    .news-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .interest-item em {
        text-align: left;
    }
}

.galeria-conteudo {
    display: grid;
    gap: 12px;
}

.galeria-principal {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--cor-borda);
    background: #fff;
    box-shadow: var(--sombra);
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.galeria-principal.dragging {
    cursor: grabbing;
}

.galeria-principal img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: center;
    background: #fff8ef;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.galeria-legenda {
    min-height: 22px;
    margin: 0;
    color: #766154;
    font-size: .95rem;
    font-weight: 700;
}

.galeria-miniaturas {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.galeria-miniatura {
    flex: 0 0 auto;
    width: 90px;
    height: 90px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
}

.galeria-miniatura.active {
    border-color: var(--cor-principal);
}

.galeria-miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel .hero-content {
    position: relative;
    z-index: 2;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 999px;
    background: rgba(60,43,35,.42);
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
}

.banner-arrow.prev {
    left: 18px;
}

.banner-arrow.next {
    right: 18px;
}

.banner-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 20px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.banner-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    cursor: pointer;
}

.banner-dots button.active {
    background: #fff;
}

/* Home mais direta e compacta */
.hero {
    min-height: 340px;
    padding: 38px clamp(18px, 5vw, 72px);
    background:
        linear-gradient(105deg, color-mix(in srgb, var(--cor-principal) 82%, #000 18%), color-mix(in srgb, var(--cor-secundaria) 64%, #fff 8%));
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
}

.hero p {
    font-size: 1.02rem;
}

.section {
    padding-top: 44px;
    padding-bottom: 44px;
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
}

.promo-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
    align-items: start;
}

.promotion-card {
    width: 100%;
    max-width: 300px;
}

.product-image,
.promotion-image,
.news-image {
    display: block;
    aspect-ratio: auto;
    height: 190px;
}

.promotion-image {
    height: 180px;
}

.product-info,
.promotion-info,
.news-info {
    padding: 14px;
}

.product-info h3,
.promotion-info h3,
.news-info h3 {
    font-size: 1.06rem;
}

.product-info p {
    min-height: 0;
    margin-bottom: 12px;
    font-size: .92rem;
}

.product-actions {
    gap: 8px;
}

.price,
.product-actions strong,
.promo-price {
    font-size: 1.12rem;
}

.interaction-box.compact {
    margin-top: 12px;
    padding-top: 10px;
}

.compact-news .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.compact-news {
    background: #fffdf9;
}

.agenda-list {
    display: grid;
    gap: 12px;
}

.agenda-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 14px;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--cor-borda);
    border-radius: 8px;
    background: var(--cor-clara);
    box-shadow: 0 10px 24px rgba(82, 55, 41, .07);
}

.agenda-media {
    display: grid;
    place-items: center;
    height: 112px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff8ef;
    color: var(--cor-principal);
    font-weight: 900;
    text-align: center;
}

.agenda-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.agenda-media.no-image {
    padding: 10px;
    border: 1px dashed var(--cor-borda);
}

.agenda-info {
    display: grid;
    align-content: center;
    gap: 7px;
    min-width: 0;
}

.agenda-info h3 {
    margin: 0;
    font-size: 1rem;
}

.agenda-info p {
    margin: 0;
    color: #6f5b50;
    font-size: .92rem;
}

.agenda-place {
    color: #766154;
    font-size: .86rem;
    font-weight: 800;
}

.agenda-link {
    color: var(--cor-principal);
    font-weight: 900;
    font-size: .9rem;
}

@media (max-width: 820px) {
    .hero {
        min-height: 300px;
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: 260px;
    }

    .product-image,
    .promotion-image,
    .news-image {
        height: 170px;
    }

    .promotion-card {
        max-width: none;
    }

    .agenda-card {
        grid-template-columns: 82px 1fr;
    }

    .agenda-media {
        height: 82px;
    }
}

/* Refinamento visual da vitrine pública */
body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background:
        linear-gradient(180deg, #fffdf9 0%, var(--cor-fundo) 420px, var(--cor-fundo) 100%);
}

.site-header {
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 10px 28px rgba(82, 55, 41, .06);
}

.brand {
    max-width: min(520px, 58vw);
}

.brand-copy {
    min-width: 0;
}

.brand strong {
    color: #2f241d;
    font-size: 1.03rem;
    line-height: 1.1;
}

.brand small {
    margin-top: 3px;
    color: #7b6558;
}

.brand-mark,
.brand-logo {
    width: 46px;
    height: 46px;
    box-shadow: 0 8px 18px rgba(82, 55, 41, .12);
    flex: 0 0 auto;
}

.main-nav a {
    border: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.main-nav a:hover {
    border-color: var(--cor-borda);
    background: #fff8ef;
}

.main-nav .nav-cta {
    background: var(--cor-principal);
    color: #fff;
    box-shadow: 0 10px 22px rgba(82, 55, 41, .14);
}

.main-nav .nav-cta:hover {
    border-color: color-mix(in srgb, var(--cor-principal) 68%, #000 12%);
    background: color-mix(in srgb, var(--cor-principal) 88%, #000 12%);
    color: #fff;
}

.hero {
    position: relative;
    min-height: 310px;
    align-items: flex-end;
    padding-top: 42px;
    padding-bottom: 46px;
    overflow: hidden;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255, 255, 255, .45);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero h1,
.section-heading h2,
.section-heading h1,
.page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.hero p {
    max-width: 560px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .9);
}

.hero .button {
    min-width: 150px;
}

.section {
    padding-top: 42px;
    padding-bottom: 42px;
}

.section > .section-heading,
.section > .product-grid,
.section > .agenda-list,
.section > .empty-state {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    margin-bottom: 20px;
}

.section-heading .eyebrow {
    margin-bottom: 6px;
}

.section-heading h2 {
    color: #2d231d;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
    gap: 18px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border-color: rgba(126, 91, 73, .18);
    background: #fff;
    box-shadow: 0 10px 24px rgba(82, 55, 41, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
    border-color: rgba(126, 91, 73, .32);
    box-shadow: 0 18px 38px rgba(82, 55, 41, .12);
    transform: translateY(-2px);
}

.product-card.is-promotion {
    background: linear-gradient(180deg, #fff 0%, #fffaf4 100%);
}

.product-image {
    height: 210px;
    border-bottom: 1px solid rgba(126, 91, 73, .12);
}

.product-image img {
    object-position: center;
}

.badge,
.promo-seal {
    border-radius: 999px;
    box-shadow: 0 8px 16px rgba(52, 35, 26, .16);
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 15px;
}

.category-pill {
    width: fit-content;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fff6ec;
    color: color-mix(in srgb, var(--cor-principal) 88%, #000 12%);
    font-size: .75rem;
}

.product-info h3 {
    margin-top: 2px;
    font-size: 1.04rem;
    line-height: 1.28;
}

.product-info h3 a:hover {
    color: var(--cor-principal);
}

.product-info p:not(.product-promo-text) {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: .9rem;
}

.product-info .product-promo-text {
    padding-left: 9px;
    border-left: 3px solid #a83d32;
    line-height: 1.35;
}

.product-actions {
    margin-top: auto;
    padding-top: 4px;
}

.product-actions strong {
    color: #30231c;
    font-size: 1.08rem;
}

.product-actions .promo-price {
    color: #a83d32;
    font-size: 1.22rem;
}

.product-actions .old-price {
    color: #8d776b;
    font-weight: 700;
}

.button {
    border-radius: 7px;
    font-weight: 800;
}

.button.primary {
    background: #fff;
    color: color-mix(in srgb, var(--cor-principal) 88%, #000 12%);
}

.button.primary:hover {
    background: #fff8ef;
}

.button.ghost {
    border-color: color-mix(in srgb, var(--cor-principal) 30%, var(--cor-borda));
    background: #fff;
}

.compact-news {
    background: linear-gradient(180deg, #fffdf9 0%, #fbf5ed 100%);
    border-top: 1px solid rgba(126, 91, 73, .12);
}

.agenda-list {
    gap: 10px;
}

.agenda-card {
    grid-template-columns: 96px 1fr;
    padding: 10px;
    border-color: rgba(126, 91, 73, .18);
    background: #fff;
    box-shadow: 0 8px 18px rgba(82, 55, 41, .06);
}

.agenda-media {
    height: 96px;
    border-radius: 7px;
    background: linear-gradient(135deg, #fff8ef, #f1e1cf);
}

.agenda-media.no-image span {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    padding: 8px;
    color: var(--cor-principal);
    font-size: .82rem;
    line-height: 1.2;
}

.agenda-info {
    gap: 5px;
}

.agenda-info h3 {
    color: #2f241d;
    line-height: 1.25;
}

.agenda-info p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.agenda-link {
    width: fit-content;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.catalog-page {
    background: linear-gradient(180deg, #fffdf9 0%, var(--cor-fundo) 100%);
}

.catalog-filters {
    width: min(1180px, 100%);
    margin: 0 auto 18px;
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) minmax(160px, .9fr) minmax(130px, .7fr) minmax(150px, .75fr) auto auto;
    gap: 12px;
    align-items: end;
    padding: 14px;
    border: 1px solid rgba(126, 91, 73, .18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(82, 55, 41, .07);
}

.catalog-filters label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.catalog-filters label > span {
    color: #695449;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.catalog-filters input,
.catalog-filters select {
    min-height: 43px;
    background: #fffdf9;
}

.catalog-filters .button {
    min-height: 43px;
}

.catalog-check {
    align-self: center;
    grid-template-columns: auto 1fr;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 7px;
    background: #fff8ef;
}

.catalog-check input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.catalog-check span {
    text-transform: none;
}

.catalog-summary {
    width: min(1180px, 100%);
    margin: 0 auto 18px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #6f5b50;
}

.catalog-summary strong {
    color: var(--cor-principal);
    font-size: 1.35rem;
}

@media (max-width: 820px) {
    .brand {
        max-width: calc(100% - 62px);
    }

    .main-nav {
        padding-top: 8px;
    }

    .main-nav a {
        padding: 12px 14px;
        background: #fff;
        border-color: var(--cor-borda);
    }

    .main-nav .nav-cta {
        background: var(--cor-principal);
    }

    .hero {
        min-height: 285px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    }

    .catalog-filters {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-filters label:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .site-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .brand strong {
        font-size: .96rem;
    }

    .brand small {
        max-width: 190px;
        font-size: .76rem;
    }

    .hero {
        min-height: 250px;
        padding-top: 30px;
        padding-bottom: 34px;
    }

    .hero h1 {
        font-size: clamp(1.85rem, 11vw, 2.55rem);
    }

    .hero p {
        font-size: .96rem;
    }

    .section {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .catalog-filters {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .product-image {
        height: 148px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: .95rem;
    }

    .product-info p:not(.product-promo-text) {
        min-height: 42px;
        font-size: .82rem;
    }

    .category-pill {
        font-size: .7rem;
    }

    .product-actions strong,
    .product-actions .promo-price {
        font-size: 1rem;
    }

    .agenda-card {
        grid-template-columns: 76px 1fr;
        gap: 10px;
    }

    .agenda-media {
        height: 76px;
    }
}
