/* Cardápio aplicativo - Morenas Gourmet */
:root {
  --bg: #faf7f1;
  --surface: #ffffff;
  --surface-strong: #f4eada;
  --text: #2f2220;
  --text-muted: #6b5a56;
  --accent: #a0512d;
  --accent-soft: #f4d4c3;
  --border: rgba(47,34,32,0.12);
  --shadow: 0 18px 45px rgba(47,34,32,0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fef9f4 0%, #f0e5dc 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 48px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.brand-block {
  display: grid;
  gap: 14px;
}

.brand-block h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
}

.brand-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.logo-hero {
  width: 124px;
  min-width: 124px;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.86), rgba(224,191,167,0.7));
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 18px 35px rgba(160,81,45,0.14);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
}

.logo-hero strong {
  display: block;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.primary-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--surface);
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-text {
  display: grid;
  gap: 18px;
}

.hero-text h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.hero-text p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-muted);
}

.features-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.features-list li::before {
  content: "✅";
}

.menu-section {
  margin-top: 28px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-header h3 {
  margin: 0;
  font-size: 1.24rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.product-grid {
  display: grid;
  gap: 18px;
}

.product-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--surface-strong);
  border-radius: 26px;
  border: 1px solid var(--border);
}

.product-card strong {
  font-size: 1.04rem;
  color: var(--accent);
}

.product-card span {
  color: var(--accent);
  font-weight: 700;
}

.product-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-muted);
}

.info-panel,
.social-panel {
  background: var(--surface);
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 24px;
}

.info-panel h4,
.social-panel h4 {
  margin-top: 0;
  font-size: 1.15rem;
}

.info-panel ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.info-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
}

.info-panel li::before {
  content: "•";
  color: var(--accent);
  margin-top: 4px;
}

.social-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  background: rgba(160,81,45,0.08);
  border-radius: 20px;
}

.contact-card span {
  display: block;
  color: var(--text-muted);
}

.contact-card strong {
  color: var(--text);
}

.contact-card button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 14px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-card button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.page-footer {
  margin-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(100%);
  background: rgba(47,34,32,0.92);
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.95rem;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 20;
}

.toast.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (min-width: 760px) {
  .header {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .primary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 420px);
    gap: 22px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .page-shell {
    padding: 18px 16px 32px;
  }

  .social-panel,
  .info-panel,
  .primary-card {
    padding: 20px;
  }
}
