:root {
  --bg:#fbf7f2;
  --card:#fff;
  --accent:#c7a27c;
  --dark:#3a2f2a;
  --muted:#7a6f6a;
  --radius:12px
}
*{box-sizing:border-box}
html,body {
  height:100%
}
body {
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial;
  line-height:1.5;
  color:var(--dark);
  background:linear-gradient(180deg,#fbf7f2 0,#f7efe6 100%),url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence baseFrequency='0.8' numOctaves='1' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.02' fill='%23d6c7b2'/></svg>");
  -webkit-font-smoothing:antialiased
}
.skip {
  position:absolute;
  left:-999px
}
.skip:focus {
  position:static;
  padding:8px;
  background:var(--accent);
  color:#fff;
  border-radius:6px;
  margin:8px
}
header {
  position:sticky;
  top:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 18px;
  background:var(--card);
  border-bottom:1px solid rgba(58,47,42,0.06);
  box-shadow:0 6px 18px rgba(58,47,42,0.03);
  z-index:60
}
.brand {
  display:flex;
  gap:12px;
  align-items:center
}
.logo {
  width:104px;
  height:84px;
  border-radius:10px;
  background:linear-gradient(135deg,#efe6dd,#f7efe8);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:var(--dark);
  font-size:18px;
  box-shadow:0 6px 12px rgba(0,0,0,0.04)
}
.logo img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
  opacity: 0.95; /* deixa suave e elegante */
}
.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.brand-title {
  font-size:16px;
  margin:0
}
.brand-sub {
  margin:0;
  color:var(--muted);
  font-size:13px
}
.main-nav {
  display:flex;
  gap:18px
}
.main-nav a {
  font-size:15px;
  color:var(--dark);
  padding:8px;
  border-radius:8px;
  font-weight: 100;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus {
  background:rgba(199,162,124,0.08);
  text-decoration: underline;
  color: var(--accent);
}
.hamb {
  display:none;
  background:none;
  border:0;
  padding:8px;
  border-radius:8px
}
.hamb span {
  display:block;
  height:2px;
  width:22px;
  background:var(--dark);
  margin:4px 0;
  border-radius:2px;
}
main {
  max-width:1100px;
  margin:28px auto;
  /*padding:0 20px*/
}
.hero {
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
  align-items:center;
}
.hero-card {
  background:var(--card);
  padding:26px;
  border-radius:var(--radius);
  box-shadow:0 8px 30px rgba(58,47,42,0.06);
  transition:transform .36s,box-shadow .36s;
  height: 420px;
}
.hero-card:hover {
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(58,47,42,0.08);
}
.eyebrow {
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(199,162,124,0.12);
  color:var(--accent);
  font-weight:600;
  font-size:13px;
}
.title {
  font-size:28px;
  margin:10px 0 6px;
  font-weight:700;
}
.title .accent {
  color:var(--accent);
}
.subtitle {
  margin:0 0 14px;
  color:var(--muted);
}
.meta {
  margin-top:6px;
}
.cta-row {
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:12px;
  flex-wrap:wrap;
}
.btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:11px 14px;
  border-radius:12px;
  border:0;
  cursor:pointer;
  font-weight:700;
  background:var(--dark);
  color:#fff;
  box-shadow:0 8px 20px rgba(58,47,42,0.08);
  transition:transform .12s;
  text-decoration: none;
}
.btn:active {
  transform:translateY(1px)
}
.pedido-btn:hover {
  background-color: #21C063;
}
.btn-ghost {
  background:transparent;
  border:1px solid rgba(58,47,42,0.06);
  color:var(--dark);
  padding:13.5px 14px;
}
.pot {
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#fff,#fbf7f2);
  padding:18px;
  border-radius:12px;
}
.pot img {
  max-width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(58,47,42,0.08);
  transition:transform .5s;
}
.pot img:hover {
  transform:scale(1.02);
}
.grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:26px;
}
.card {
  background:var(--card);
  padding:18px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(58,47,42,0.04);
  transition:transform .2s;
}
.card:hover {
  transform:translateY(-4px)
}
.table-wrapper {
  /*overflow:auto;*/
  border-radius:10px;
  margin-top:12px;
}
table {
  width:100%;
  border-collapse:collapse;
  min-width:420px;
}
th,td {
  padding:10px;
  border-bottom:1px solid #f0ece8;
  font-size:13px;
  text-align:left;
}
th {
  background:linear-gradient(90deg, rgba(199,162,124,0.06), transparent);
  font-weight:700;
}
.muted-small {
  color:var(--muted);
  font-size:13px;
}
.lot-block {
  margin-top:16px;
}
.lot-row {
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:8px;
}
select, input[type="text"] {
  padding:10px;
  border-radius:8px;
  border:1px solid rgba(58,47,42,0.06);
  background:transparent;
}
.expiry-wrap {
  font-size:14px;
  color:var(--muted);
  font-weight:700;
  margin-left:6px;
}
.benefits {
  list-style:none;
  padding:0;
  margin:8px 0 0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.benefits svg {
  vertical-align:middle;
  margin-right:8px;
  fill:var(--accent);
  width:16px;
  height:16px;
}
.foot-wrap {
  text-align:center;
  margin:40px 0 80px;
}
@media (max-width:980px) {
  .hero {
    /*grid-template-columns:1fr;*/
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }
  .hero-card {
    height: max-content;
  }
  .grid {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }
  .pot {
    order:-1;
  }
}
@media (max-width:640px) {
  .main-nav {
    display:none;
  }
  .hamb {
    display:inline-flex;
  }
  .skip:focus {
    left:8px;
    top:8px;
  }
}

[data-reveal]{opacity:0;transform:translateY(16px);transition:opacity .6s,transform .6s}
[data-reveal].is-visible{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){[data-reveal]{transition:none}}

/* --- MENU MOBILE FINAL AJUSTADO --- */
.hamb {
  display: none;
  flex-direction: column;
  /*gap: 6px;*/
  width: 34px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9999;
}

.hamb span {
  width: 100%;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: transform .35s, opacity .35s;
}

/* Quando aberto — transforma em X */
.hamb.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamb.open span:nth-child(2) {
  opacity: 0;
}
.hamb.open span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

/* Mobile menu container */
#mobile-menu {
  position: absolute;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 100%;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(58,47,42,0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -12px);
  transition: max-height .45s ease, opacity .45s ease, transform .45s ease, padding .25s ease;
  box-shadow: 0 8px 30px rgba(58, 47, 42, 0.06);
}

#mobile-menu.open {
  max-height: 360px;
  opacity: 1;
  transform: translate(-50%, 0);
  padding: 16px 0;
}

#mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 10px 20px 0;
}

#mobile-menu a {
  font-size: 18px;
  color: var(--dark);
  padding: 10px 0 0;
  text-decoration: none;
}
#mobile-menu a:hover {
  font-weight: 500;
}

/* Para mostrar o hamb no mobile */
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .hamb {
    display: flex;
  }
}
.contact-links a {
  color: var(--dark);                 
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
  transition: color .25s ease, border-color .25s ease;
}

.contact-links a:hover {
  color: var(--accent);                
  border-bottom-color: var(--accent);
}

.price-wrap {
  font-size: 1.1rem;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(58, 47, 42, 0.06);
  background: transparent;
  display: block;
}

.price-label {
  color: #6b6b6b;
  margin-right: 6px;
}

.price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3b2a1a; /* tom natural / amendoim */
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
}
.price-value.is-changing {
  opacity: 0;
  transform: translateY(4px);
}
/* ===== SELECT CUSTOMIZADO ===== */
.custom-lot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.lot-option {
  background: #f5efe9;
  border: 1px solid #8b5e3c;
  color: #3b2a1a;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  min-width: 110px;
  text-align: center;
  transition: all .25s ease;
}

.lot-option span {
  /*display: block;*/
  font-size: 0.85rem;
  opacity: .8;
  margin-top: 2px;
}

.lot-option:hover {
  background: #8b5e3c;
  color: #fff;
}

.lot-option.active {
  background: #6e472b;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

/* ===== MICROANIMAÇÃO DE PREÇO ===== */
#price {
  display: inline-block;
  transition: transform .2s ease, opacity .2s ease;
}

#price.is-changing {
  transform: translateY(-4px);
  opacity: 0;
}

/* Receitas */
/* Accordion */
.accordion {
  margin-top: 1rem;
}

.accordion-header {
  width: 100%;
  background: #fff;
  border: 1px solid #e5d6c6;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #5c2e16;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}

.accordion-header:hover {
  background: #f7efe7;
  border-color: #c89b6d;
}

.accordion-header.active {
  background: #5c2e16;
  color: #fff;
}

.accordion-header .icon {
  font-size: 1.2rem;
  transition: transform .25s ease;
}

.accordion-header.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 6px;
}

.accordion-content p,
.accordion-content ul {
  font-size: 0.9rem;
  color: #3b2a1f;
  margin: 10px 0;
}

.accordion-content ul {
  padding-left: 1.2rem;
}
.card-acordion {
  display: flex;
  flex-direction: column;
}
.card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto; /* 🔥 joga o botão para o fundo do card */
}

/* Caso seu btn-outline já exista, NÃO precisa repetir */
/* Se não existir, use este */
.btn-outline {
  background: transparent;
  border: 1px solid #5c2e16;
  color: #5c2e16;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
}

.btn-outline:hover {
  background: #5c2e16;
  color: #ffffff;
}

/* Receitas */
.recipe-content {
  display: none;
}
.recipe-card {
  box-shadow: 0 18px 40px rgba(58, 47, 42, 0.08);
  padding: 26px;
  border-radius: var(--radius);
  background-color: #fff;
}

.recipe-card.active .recipe-content {
  display: block;
}
/* HEADER DO CARD */
.recipe-header {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* IMAGEM */
.recipe-image {
  flex: 0 0 260px; /* largura fixa da foto */
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* TEXTO */
.recipe-summary {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* META (tempo, pessoas, favorito) */
.recipe-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 12px 0 20px;
}

/* BOTÃO SAIBA MAIS */
.toggle-recipe {
  margin-top: auto; /* empurra o botão para o final */
  align-self: flex-start;
}
@media (max-width: 768px) {
  .recipe-header {
    flex-direction: column;
  }

  .recipe-image {
    flex: none;
    width: 100%;
  }

  .toggle-recipe {
    align-self: stretch;
  }
}
/* Botão Favoritar */
.favorite-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.favorite-btn.favorited {
  animation: fav-pop 0.35s ease;
}

@keyframes fav-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* ❤️ botão favorito */
.favorite-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #9a9a9a; /* cinza */
  transition: transform 0.2s ease, color 0.2s ease;
}

.favorite-btn.favorited {
  color: #e53935; /* vermelho */
  animation: fav-pop 0.35s ease;
}

@keyframes fav-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* 🪟 modal */
.favorite-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.favorite-modal.active {
  display: flex;
}

.favorite-modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}

.favorite-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

/*Idiomas*/
.lang-switch {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-switch img {
  width: 22px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lang-switch img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* INDEX (navbar fixa) */
.navbar .lang-switch {
  position: absolute;
  right: 20px;
  top: 14px;
}

/* PRODUTO */
/*header .lang-switch {
  margin-left: 20px;
}*/

/* Mobile */
.mobile-lang {
  margin-top: 20px;
  justify-content: center;
}
/* FORÇA tamanho das bandeiras - INDEX */
.lang-index img {
  width: 22px !important;
  height: auto !important;
  max-width: 22px !important;
  display: inline-block;
}

/*CAT Produto*/
.cta-produto {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 0 0;
}



