:root {
  --orange: #e8590c;
  --orange-light: #f5a524;
  --brown: #3a2317;
  --cream: #fdf1e2;
  --cream-soft: #fffaf3;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(58, 35, 23, 0.12);
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0 0 0.4em; line-height: 1.1; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 89, 12, 0.35);
}
.btn-primary:hover { opacity: 0.92; }

.btn-secondary {
  background: var(--white);
  color: var(--brown);
  border: 1px solid rgba(58, 35, 23, 0.15);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 241, 226, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58, 35, 23, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 6px 24px;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown);
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.brand-logo {
  object-fit: contain;
  width: 84px;
  height: auto;
  margin: 10px 0;
  filter: drop-shadow(0 6px 14px rgba(58, 35, 23, 0.18));
}
.brand-text { display: none; }

.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a:hover { color: var(--orange); }
.main-nav a:first-child { color: var(--orange); }
.main-nav a:first-child::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--orange);
}

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
  background: var(--cream-soft);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--cream-soft) 0%,
    var(--cream-soft) 34%,
    rgba(253, 241, 226, 0.88) 46%,
    rgba(253, 241, 226, 0.45) 58%,
    rgba(253, 241, 226, 0.08) 70%,
    transparent 82%
  );
  z-index: 1;
}

.hero-decor { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.doodle {
  position: absolute;
  color: rgba(232, 89, 12, 0.18);
  font-size: 2.5rem;
}
.doodle.heart { top: 12%; left: 6%; }
.doodle.heart.small { bottom: 30%; left: 15%; font-size: 1.4rem; }
.doodle.steam { top: 38%; left: 40%; font-size: 3rem; transform: rotate(90deg); }
.doodle.steam.small { top: 18%; left: 30%; font-size: 1.6rem; transform: rotate(80deg); opacity: 0.7; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: 24px 0 48px;
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 8px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: var(--brown);
}
.text-orange { color: var(--orange); }

.hero-desc {
  max-width: 46ch;
  font-size: 1.05rem;
  color: rgba(58, 35, 23, 0.85);
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0 0 32px;
  flex-wrap: wrap;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  width: 100%;
  min-height: 480px;
}

.hero-logo {
  position: absolute;
  right: -2%;
  bottom: -10%;
  width: min(280px, 46%);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(58, 35, 23, 0.35));
  z-index: 2;
}
.hero-badge {
  position: absolute;
  top: 2%;
  right: 4%;
  color: #150b05;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.05;
  text-align: right;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55), 0 2px 10px rgba(255, 255, 255, 0.45);
  transform: rotate(-5deg);
  z-index: 2;
}
.hero-badge::after {
  content: "";
  display: block;
  margin: 6px 0 0 auto;
  width: 60%;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* HERO INFO BAR */
.hero-info-bar {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 26px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-info-bar .info-item {
  padding: 0 20px;
  border-right: 1px solid rgba(58, 35, 23, 0.1);
}
.hero-info-bar .info-item:last-child { border-right: none; }

/* SECTIONS shared */
.section { padding: 80px 0; }
.tag {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 18px; }
.section-desc { max-width: 62ch; color: rgba(58, 35, 23, 0.8); }

/* SOBRE */
.sobre { background: var(--white); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.sobre-grid p { margin: 0; color: rgba(58, 35, 23, 0.85); }

.mini-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
}
.mini-stats li {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.mini-stats strong {
  display: block;
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.mini-stats span { font-size: 0.85rem; color: rgba(58, 35, 23, 0.7); }

/* CARDAPIO */
.cardapio { background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.menu-card.featured {
  background: var(--brown);
  color: var(--cream-soft);
  transform: translateY(-8px);
}
.menu-card h3 {
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.menu-card.featured h3 { color: var(--orange-light); }
.menu-card ul { list-style: none; padding: 0; margin: 0; }
.menu-card li {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(58, 35, 23, 0.15);
  font-weight: 500;
}
.menu-card.featured li { border-bottom-color: rgba(253, 241, 226, 0.2); }
.menu-card li:last-child { border-bottom: none; }
.menu-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(58, 35, 23, 0.6);
  font-style: italic;
}

/* CONTATO */
.contato { background: var(--white); }

.info-item { display: flex; align-items: center; gap: 14px; }
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-item small { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(58, 35, 23, 0.55); }
.info-item strong { font-size: 0.95rem; }
.info-item strong a { border-bottom: 1px solid transparent; }
.info-item strong a:hover { border-color: currentColor; }

.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* FOOTER */
.site-footer {
  background: var(--brown);
  color: rgba(253, 241, 226, 0.85);
  padding: 28px 0;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-inner p { margin: 0; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.footer-heart { color: var(--orange-light); flex-shrink: 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 0 0 32px; }
  .hero-photo {
    inset: auto;
    top: 0; left: 0; right: 0;
    height: 340px;
    object-position: center 30%;
  }
  .hero-scrim {
    inset: auto;
    top: 0; left: 0; right: 0;
    height: 340px;
    background: linear-gradient(
      180deg,
      rgba(253, 241, 226, 0.05) 0%,
      rgba(253, 241, 226, 0.25) 62%,
      var(--cream-soft) 92%,
      var(--cream-soft) 100%
    );
  }
  .hero-decor { inset: auto; top: 0; left: 0; right: 0; height: 340px; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 8px; }
  .hero-art { order: -1; min-height: 340px; margin: 0 0 12px; }
  .hero-logo { width: min(200px, 42%); bottom: 2%; right: 3%; }
  .hero-badge { font-size: 1.5rem; top: 6%; right: 5%; }
  .sobre-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card.featured { transform: none; }
  .hero-info-bar { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .hero-info-bar .info-item:nth-child(2) { border-right: none; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-soft);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(58,35,23,0.08); }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .brand-logo { width: 64px; margin: 8px 0; }
  .hero-photo, .hero-scrim { height: 280px; }
  .hero-art { min-height: 280px; }
  .hero-badge { font-size: 1.25rem; }
  .hero-logo { width: min(160px, 44%); }
  .hero-copy .eyebrow { font-size: 0.75rem; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .feature-list li { font-size: 0.8rem; }
  .hero-info-bar { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .hero-info-bar .info-item { border-right: none; border-bottom: 1px solid rgba(58, 35, 23, 0.1); padding: 0 0 14px; }
  .hero-info-bar .info-item:last-child { border-bottom: none; padding-bottom: 0; }
  .feature-list { gap: 18px; }
}
