:root {
  --verde-profundo: #152920;
  --verde-agua:      #3A8878;
  --off-white:       #EFE8DA;
  --cobre:           #C5804A;
  --texto:           #152920;
  --cinza:           #6b7280;
  --borda:           #ddd5c4;
  --radius:          10px;
  --shadow:          0 2px 16px rgba(21,41,32,.08);
  --fonte-serif: 'Playfair Display', Georgia, serif;
  --fonte-sans:  'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--fonte-sans);
  background: var(--off-white);
  color: var(--texto);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.marca {
  font-family: var(--fonte-serif);
  font-weight: 700;
}

/* ── HEADER ── */
.cabecalho {
  background: var(--off-white);
  color: var(--verde-profundo);
  padding: 14px 20px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow);
}
.cabecalho-conteudo {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 1.4rem; color: var(--verde-profundo); display: flex; align-items: center; gap: 8px; }
.logo img { height: 64px; width: auto; }
.nav { display: flex; gap: 22px; font-size: .88rem; font-weight: 600; margin-left: auto; margin-right: 28px; }
.nav a:hover { color: var(--cobre); }

.btn-menu-mobile {
  display: none; background: none; border: none; padding: 6px; margin-right: 4px;
  color: var(--verde-profundo); cursor: pointer;
}
.btn-menu-mobile svg { width: 26px; height: 26px; display: block; }

.nav-mobile {
  display: none; flex-direction: column;
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--borda);
}
.nav-mobile.aberto { display: flex; }
.nav-mobile a {
  padding: 14px 6px; font-size: .95rem; font-weight: 600;
  border-bottom: 1px solid var(--borda);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--cobre); }

.btn-carrinho {
  position: relative;
  background: transparent; color: var(--verde-profundo);
  border: 1.5px solid var(--verde-profundo); border-radius: 50%;
  width: 40px; height: 40px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.btn-carrinho svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-carrinho:hover { background: var(--verde-profundo); color: var(--off-white); }
.btn-carrinho .badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--cobre); color: #fff; border-radius: 50%;
  width: 18px; height: 18px; font-size: .65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--off-white);
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--verde-profundo);
  color: var(--off-white);
  min-height: clamp(420px, 72vh, 620px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 24px 56px; text-align: left;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.ativo { opacity: 1; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(14,28,22,.65) 0%, rgba(14,28,22,0) 50%);
}
.hero > .hero-textos { position: relative; z-index: 2; }
.hero-textos { display: grid; max-width: 540px; }
.hero-conteudo {
  grid-area: 1 / 1;
  opacity: 0; transition: opacity .6s ease;
  pointer-events: none;
}
.hero-conteudo.ativo { opacity: 1; pointer-events: auto; }
.hero h1 {
  font-family: var(--fonte-serif); font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.2; margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}
.hero p { color: #fff; max-width: 480px; margin: 0 0 24px; font-size: 1rem; text-shadow: 0 1px 10px rgba(0,0,0,.7); }
.hero .selo { color: var(--cobre); font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; display: block; text-shadow: 0 1px 8px rgba(0,0,0,.7); }

.hero-dots { display: flex; gap: 8px; position: absolute; right: 24px; bottom: 24px; z-index: 2; }
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50px; background: rgba(255,255,255,.4);
  border: none; cursor: pointer; padding: 0; transition: width .2s, background .2s;
}
.hero-dots button.ativo { background: var(--cobre); width: 22px; }

/* ── SEÇÕES / CATEGORIAS ── */
main { max-width: 1100px; margin: 0 auto; padding: 32px 16px 80px; }
.secao-titulo {
  font-family: var(--fonte-serif); font-weight: 700;
  font-size: 1.5rem; color: var(--verde-profundo);
  margin: 40px 0 18px; text-align: center;
}
.secao-titulo .sub { display: block; font-family: var(--fonte-sans); font-weight: 500; font-size: .82rem; color: var(--cinza); margin-top: 4px; }

.grid-categorias {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}

/* ── POR QUE A LAMAR ── */
.por-que-lamar {
  background: #EFE8DA;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 48px 16px; text-align: center;
}
.pilar-icone { width: 40px; height: 40px; color: #C5804A; margin: 0 auto 14px; }
.pilar h3 { font-family: var(--fonte-serif); font-weight: 700; color: #152920; font-size: 1.2rem; margin-bottom: 8px; }
.pilar p { font-family: var(--fonte-sans); color: #152920; font-size: 1rem; }
@media (max-width: 700px) {
  .por-que-lamar { grid-template-columns: 1fr; gap: 28px; padding: 36px 16px; }
}

/* ── DESTAQUE LAGOSTA VIVA ── */
.destaque-lagosta {
  background: #152920; min-height: 400px;
  display: grid; grid-template-columns: 1fr 1fr;
}
.destaque-lagosta-foto { position: relative; height: 100%; min-height: 280px; overflow: hidden; }
.lagosta-carrossel { position: relative; width: 100%; height: 100%; min-height: 280px; }
.lagosta-carrossel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .5s ease;
}
.lagosta-carrossel img.ativo { opacity: 1; }
.lagosta-seta {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: rgba(239,232,218,.9); color: #152920; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.lagosta-seta:hover { background: #fff; }
.lagosta-seta svg { width: 20px; height: 20px; }
.lagosta-seta-prev { left: 16px; }
.lagosta-seta-next { right: 16px; }
.destaque-lagosta-fallback {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 280px;
  background: #3A8878; color: #EFE8DA; font-family: var(--fonte-serif); font-weight: 700; font-size: 1.4rem;
}
.destaque-lagosta-texto {
  padding: 60px; display: flex; flex-direction: column; justify-content: center;
  color: #EFE8DA;
}
.destaque-lagosta-texto .eyebrow {
  font-family: var(--fonte-sans); color: #C5804A; text-transform: uppercase;
  letter-spacing: 1px; font-size: .8rem; font-weight: 700; margin-bottom: 10px;
}
.destaque-lagosta-texto h2 {
  font-family: var(--fonte-serif); font-weight: 700; font-size: 48px; color: #EFE8DA; margin-bottom: 16px;
}
.destaque-lagosta-texto p {
  font-family: var(--fonte-sans); font-size: 18px; line-height: 1.7; color: #EFE8DA; margin-bottom: 28px;
}
.btn-lagosta {
  display: inline-block; background: #C5804A; color: #EFE8DA;
  border-radius: 4px; padding: 14px 28px; font-weight: 700; font-size: .9rem; width: fit-content;
}
.btn-lagosta:hover { background: #b06f3c; }
@media (max-width: 700px) {
  .destaque-lagosta { grid-template-columns: 1fr; min-height: 0; }
  .destaque-lagosta-texto { padding: 36px 24px; }
  .destaque-lagosta-texto h2 { font-size: 2rem; }
}
.card-categoria {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 180px;
  background: var(--verde-profundo);
}
.card-categoria img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.card-categoria .rotulo {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px;
  background: linear-gradient(180deg, transparent 40%, rgba(21,41,32,.85) 100%);
}
.card-categoria .rotulo span { font-family: var(--fonte-serif); font-weight: 700; color: #fff; font-size: 1.15rem; }

/* ── GRID DE PRODUTOS ── */
.filtros {
  display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 18px;
}
.filtro-btn {
  flex-shrink: 0; padding: 7px 16px; border-radius: 50px;
  border: 1.5px solid var(--borda); background: #fff;
  font-size: .8rem; font-weight: 600; color: var(--texto); cursor: pointer;
}
.filtro-btn.ativo { background: var(--verde-profundo); border-color: var(--verde-profundo); color: #fff; }

.grid-produtos {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px;
}
.card-produto {
  background: #fff; border: 1px solid var(--borda); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s;
}
.card-produto:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-produto .img-wrap { aspect-ratio: 1/1; overflow: hidden; background: #f3f0e8; }
.card-produto .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-produto .corpo { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card-produto .linha-tag { font-size: .65rem; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--verde-agua); }
.card-produto h3 { font-family: var(--fonte-serif); font-size: .98rem; font-weight: 700; }
.card-produto .preco { color: var(--cobre); font-weight: 800; font-size: 1.05rem; margin-top: 4px; }
.card-produto .unidade { color: var(--cinza); font-size: .72rem; }
.card-produto .esgotado { opacity: .5; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 50px; padding: 12px 22px;
  font-weight: 700; font-size: .9rem; cursor: pointer; font-family: var(--fonte-sans);
  transition: transform .1s, background .15s;
}
.btn:active { transform: scale(.98); }
.btn-cobre   { background: var(--cobre); color: #fff; }
.btn-cobre:hover { background: #b06f3c; }
.btn-verde   { background: var(--verde-profundo); color: #fff; }
.btn-verde:hover { background: #0e1c16; }
.btn-whatsapp{ background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da952; }
.btn-outline { background: transparent; border: 1.5px solid var(--verde-profundo); color: var(--verde-profundo); }
.btn-bloco   { width: 100%; }

/* ── RECEITAS ── */
.receitas-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 860px) { .receitas-layout { grid-template-columns: 240px 1fr; } }

.receitas-filtros { background: #fff; border: 1px solid var(--borda); border-radius: var(--radius); padding: 16px; align-self: start; }
.filtro-grupo { margin-bottom: 18px; }
.filtro-grupo h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .4px; color: var(--verde-agua); margin-bottom: 8px; }
.filtro-check { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 8px; cursor: pointer; }

.grid-receitas { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.card-receita {
  background: #fff; border: 1px solid var(--borda); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s;
}
.card-receita:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-receita .img-wrap { aspect-ratio: 4/3; overflow: hidden; background: #f3f0e8; }
.card-receita .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-receita .corpo { padding: 12px 14px 14px; }
.card-receita h3 { font-family: var(--fonte-serif); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.card-receita .meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: .72rem; color: var(--cinza); }

.receitas-destaque { margin: 50px 0 10px; }
.secao-cabecalho { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.secao-cabecalho h2 { font-family: var(--fonte-serif); font-weight: 700; font-size: 1.6rem; color: var(--verde-profundo); }
.secao-cabecalho h2 .cobre { color: var(--cobre); }
.secao-sub { color: var(--cinza); margin: 6px 0 18px; max-width: 560px; }
.ver-todas { font-weight: 700; font-size: .85rem; color: var(--verde-agua); white-space: nowrap; }
.ver-todas:hover { color: var(--cobre); }
.receitas-scroll { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }

.receita-detalhe { max-width: 720px; margin: 0 auto; }
.receita-detalhe h1 { font-size: 1.7rem; margin-bottom: 8px; }
.receita-detalhe .descricao { color: var(--cinza); margin-bottom: 14px; }
.receita-meta { display: flex; gap: 16px; font-size: .85rem; color: var(--verde-profundo); font-weight: 600; margin-bottom: 8px; }

.ingrediente-linha { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--borda); }
.ingrediente-linha:last-child { border-bottom: none; }
.ingrediente-info { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.ingrediente-info img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.ingrediente-info .nome { font-weight: 700; font-size: .9rem; }
.ingrediente-info .qtd { font-size: .76rem; color: var(--cinza); }
.ingrediente-info .preco { font-size: .82rem; color: var(--cobre); font-weight: 700; }

.lista-ingredientes { list-style: disc; padding-left: 20px; font-size: .92rem; line-height: 1.8; }

/* ── PÁGINA DE PRODUTO ── */
.produto-detalhe { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 760px) { .produto-detalhe { grid-template-columns: 1fr 1fr; } }
.produto-detalhe .img-wrap { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: #f3f0e8; }
.produto-detalhe .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.produto-detalhe h1 { font-family: var(--fonte-serif); font-size: 1.8rem; margin-bottom: 8px; }
.produto-detalhe .preco { color: var(--cobre); font-size: 1.6rem; font-weight: 800; margin: 10px 0; }
.produto-detalhe .descricao { color: var(--cinza); line-height: 1.7; margin-bottom: 16px; }
.produto-detalhe .bloco-extra { background: #fff; border: 1px solid var(--borda); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 12px; }
.produto-detalhe .bloco-extra h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .4px; color: var(--verde-agua); margin-bottom: 6px; }

.stepper {
  display: flex; align-items: center; border: 1.5px solid var(--borda); border-radius: 50px;
  width: fit-content; margin: 14px 0; background: #fff;
}
.stepper button { background: none; border: none; padding: 10px 18px; font-size: 1.1rem; font-weight: 700; color: var(--verde-profundo); cursor: pointer; }
.stepper span { min-width: 64px; text-align: center; font-weight: 700; border-left: 1.5px solid var(--borda); border-right: 1.5px solid var(--borda); padding: 10px 4px; }

/* ── CARRINHO ── */
.carrinho-secao { background: #fff; border: 1px solid var(--borda); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.carrinho-secao h2 { font-family: var(--fonte-serif); font-size: 1.2rem; margin-bottom: 4px; }
.carrinho-secao .desc { color: var(--cinza); font-size: .82rem; margin-bottom: 16px; }
.item-carrinho { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--borda); }
.item-carrinho:last-child { border-bottom: none; }
.item-carrinho .info { flex: 1; }
.item-carrinho .nome { font-weight: 700; }
.item-carrinho .sub { color: var(--cinza); font-size: .8rem; }
.carrinho-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; font-size: 1.1rem; }
.carrinho-total strong { color: var(--verde-profundo); font-family: var(--fonte-serif); font-size: 1.4rem; }
.carrinho-vazio { text-align: center; padding: 40px 20px; color: var(--cinza); }

select.input, input.input, textarea.input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--borda); border-radius: 8px;
  font-family: var(--fonte-sans); font-size: .9rem; background: #fff; color: var(--texto);
}
label.campo { display: block; margin-bottom: 14px; }
label.campo span { display: block; font-size: .8rem; font-weight: 700; margin-bottom: 5px; color: var(--verde-profundo); }

.opcao-frete {
  display: flex; align-items: center; justify-content: space-between;
  border: 1.5px solid var(--borda); border-radius: 8px; padding: 12px 14px; margin-bottom: 8px; cursor: pointer;
}
.opcao-frete.selecionada { border-color: var(--verde-agua); background: #f3f8f6; }

/* ── FOOTER ── */
.rodape-cta {
  max-width: 1100px; margin: 60px auto 0; padding: 0 20px;
  position: relative; z-index: 2;
}
.rodape-cta-card {
  background: var(--verde-agua); color: #fff;
  border-radius: 20px; box-shadow: var(--shadow);
  padding: 40px 36px; margin-bottom: -64px;
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 24px;
}
.rodape-cta-texto { flex: 1 1 auto; min-width: 0; }
.rodape-cta-texto h2 { font-size: 1.5rem; margin-bottom: 8px; }
.rodape-cta-texto p { opacity: .92; max-width: 380px; }
.rodape-cta .btn-cobre { background: var(--verde-profundo); flex-shrink: 0; }
.rodape-cta-form { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.rodape-cta-linha { display: flex; gap: 10px; }
.rodape-cta-form input {
  border: 1.5px solid rgba(255,255,255,.5); background: rgba(255,255,255,.12); color: #fff;
  border-radius: 8px; padding: 11px 14px; font-size: .9rem; width: 130px;
}
.rodape-cta-form input.rodape-cta-tel { width: 270px; }
.rodape-cta-form input::placeholder { color: rgba(255,255,255,.75); }
.rodape-cta-form input:focus { outline: none; border-color: #fff; }
.rodape-cta-form .btn { white-space: nowrap; }

.rodape {
  background: var(--verde-profundo); color: rgba(239,232,218,.7);
  padding: 104px 20px 24px; font-size: .85rem;
}
.rodape-conteudo {
  max-width: 1100px; margin: 0 auto;
  display: grid; gap: 36px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.rodape strong { color: var(--off-white); font-family: var(--fonte-serif); font-size: 1.15rem; }
.rodape .hashtags { margin-top: 10px; color: var(--cobre); font-weight: 600; }
.rodape-social { display: flex; gap: 14px; margin-top: 18px; }
.rodape-social a { color: rgba(239,232,218,.7); }
.rodape-social a:hover { color: var(--off-white); }
.rodape-social svg { width: 22px; height: 22px; }
.rodape-coluna h4 { color: var(--off-white); font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.rodape-coluna a { display: block; margin-bottom: 10px; }
.rodape-coluna a:hover { color: var(--off-white); }
@media (max-width: 900px) {
  .rodape-cta-card { flex-wrap: wrap; }
  .rodape-cta-form { flex-wrap: wrap; }
}
@media (max-width: 700px) {
  .rodape-cta-card { margin-bottom: -40px; padding: 28px 22px; }
  .rodape-cta-form { flex-direction: column; align-items: stretch; width: 100%; }
  .rodape-cta-linha { flex-direction: column; }
  .rodape-cta-form input.rodape-cta-tel,
  .rodape-cta-form input { width: 100%; }
  .rodape { padding-top: 84px; }
  .rodape-conteudo { grid-template-columns: 1fr 1fr; text-align: left; }
  .rodape-marca { grid-column: 1 / -1; text-align: center; }
  .rodape-social { justify-content: center; }
}

.whatsapp-flutuante {
  position: fixed; bottom: 20px; left: 20px; z-index: 90;
  background: #25d366; color: #fff; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.whatsapp-flutuante svg { width: 26px; height: 26px; }

/* ── PÁGINA INSTITUCIONAL (Quem Somos etc.) ── */
.pagina-banner {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
@media (min-width: 700px) { .pagina-banner { height: 380px; } }
.pagina-texto {
  max-width: 680px; margin: 0 auto; padding: 48px 20px;
  font-size: 1.05rem; line-height: 1.85; color: var(--texto);
}
.pagina-texto p { margin-bottom: 26px; }
.pagina-texto p:first-of-type {
  font-family: var(--fonte-serif); font-weight: 700; font-size: 1.5rem;
  color: var(--verde-profundo); line-height: 1.4;
}
.pagina-texto .fecho {
  text-align: center; font-family: var(--fonte-serif); font-weight: 700;
  font-size: 1.2rem; color: var(--cobre); margin-top: 36px;
}
.pagina-texto .hashtag-final {
  text-align: center; color: var(--verde-agua); font-weight: 700;
  letter-spacing: .4px; margin-top: 10px;
}

/* ── ADMIN ── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px; flex-shrink: 0; background: var(--verde-profundo); color: var(--off-white);
  display: flex; flex-direction: column; padding: 20px 0;
}
.admin-sidebar-logo { font-size: 1.2rem; color: #fff; padding: 0 20px 20px; }
.admin-sidebar-logo span { font-family: var(--fonte-sans); font-weight: 600; font-size: .7rem; color: var(--cobre); display: block; text-transform: uppercase; letter-spacing: .5px; }
.admin-sidebar-nav { display: flex; flex-direction: column; flex: 1; }
.admin-sidebar-nav a {
  padding: 12px 20px; font-size: .9rem; font-weight: 600; color: rgba(239,232,218,.8);
  border-left: 3px solid transparent;
}
.admin-sidebar-nav a:hover { color: #fff; background: rgba(255,255,255,.05); }
.admin-sidebar-nav a.ativo { color: #fff; background: rgba(255,255,255,.08); border-left-color: var(--cobre); }
.admin-sidebar-footer { padding: 12px 20px 0; border-top: 1px solid rgba(255,255,255,.12); }
.admin-sidebar-footer a { font-size: .85rem; color: rgba(239,232,218,.7); }
.admin-sidebar-footer a:hover { color: #fff; }
.admin-content { flex: 1; min-width: 0; overflow-x: auto; }

@media (max-width: 700px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; flex-direction: row; align-items: center; padding: 10px 14px; gap: 6px; overflow-x: auto; }
  .admin-sidebar-logo { padding: 0; margin-right: 10px; white-space: nowrap; }
  .admin-sidebar-logo span { display: none; }
  .admin-sidebar-nav { flex-direction: row; flex: 1; }
  .admin-sidebar-nav a { padding: 8px 12px; white-space: nowrap; border-left: none; border-radius: 50px; }
  .admin-sidebar-nav a.ativo { border-left: none; }
  .admin-sidebar-footer { border-top: none; padding: 0; }
}

.admin-wrap { max-width: 1000px; margin: 0 auto; padding: 24px 16px; }
.admin-tabela { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; }
.admin-tabela th, .admin-tabela td { padding: 10px 12px; border-bottom: 1px solid var(--borda); text-align: left; font-size: .85rem; }
.admin-tabela th { background: var(--verde-profundo); color: #fff; }
.admin-form { background: #fff; border: 1px solid var(--borda); border-radius: var(--radius); padding: 20px; max-width: 520px; }
.admin-login { max-width: 360px; margin: 80px auto; }

@media (min-width: 700px) {
  .nav-mobile { display: none !important; }
}
@media (max-width: 700px) {
  .nav { display: none; }
  .btn-menu-mobile { display: block; }
  .logo img { height: 44px; }
  .cabecalho { padding: 12px 14px; }
}
@media (max-width: 480px) {
  .item-carrinho { flex-wrap: wrap; }
  .item-carrinho .info { flex: 1 1 100%; }
  .stepper button { padding: 8px 14px; }
  .stepper span { min-width: 44px; }
}
