:root {
  --brown-dark: #241206;
  --brown: #4a2a12;
  --brown-light: #6b3d1c;
  --gold: #d9a441;
  --gold-light: #f3d38b;
  --cream: #fff8ec;
  --cream-2: #fdf1da;
  --ink: #2b1608;
  --whatsapp: #25d366;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(43, 22, 8, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

h1, h2, h3, .brand-word {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
}

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

a { color: inherit; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brown-dark);
  color: var(--cream);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
}

.brand img { width: 44px; height: 44px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong { font-size: 1.15rem; color: var(--gold-light); }
.brand-text span { font-size: 0.68rem; letter-spacing: 2px; color: #cba25e; }

.main-nav {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.9;
}

.main-nav a:hover { opacity: 1; color: var(--gold-light); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform .15s ease;
}
.header-cta:hover { transform: translateY(-1px); }
.header-cta span.short { display: none; }

/* Hero */
.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(217,164,65,0.18), transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(217,164,65,0.12), transparent 45%),
    linear-gradient(160deg, var(--brown-dark), var(--brown) 60%, var(--brown-light));
  color: var(--cream);
  padding: 64px 0 72px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
  color: var(--cream);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero p {
  font-size: 1.08rem;
  color: #f1e2c4;
  margin: 0 0 26px;
  max-width: 46ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-badges div {
  font-size: 0.85rem;
  color: #e8c37a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-panel {
  background: rgba(255,248,236,0.06);
  border: 1px solid rgba(243,211,139,0.35);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(2px);
}

.hero-panel h3 {
  margin-top: 0;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.hero-panel li {
  display: flex;
  gap: 10px;
  color: #f1e2c4;
  font-size: 0.95rem;
}

.hero-panel li strong { color: var(--gold-light); }

/* Sections */
section { padding: 64px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head .eyebrow { color: var(--brown-light); }

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
  color: var(--ink);
}

.section-head p { color: #6b5842; margin: 0; }

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.menu-card {
  background: #fff;
  border: 1px solid #f0e2c4;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-card .icon { font-size: 1.8rem; }

.menu-card h3 { margin: 0; font-size: 1.05rem; }

.menu-card p { margin: 0; color: #7a6752; font-size: 0.9rem; flex-grow: 1; }

.menu-card .order-link {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brown-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.menu-card .order-link:hover { color: var(--whatsapp); }

.pricing {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}

.price-card {
  background: linear-gradient(160deg, var(--brown-dark), var(--brown));
  color: var(--cream);
  border-radius: var(--radius);
  padding: 26px 34px;
  text-align: center;
  min-width: 200px;
  box-shadow: var(--shadow);
}

.price-card .amount {
  font-family: 'Fraunces', serif;
  font-size: 2.1rem;
  color: var(--gold-light);
  display: block;
  margin: 6px 0;
}

.price-card span.unit { font-size: 0.85rem; color: #e0c78f; }

.menu-note {
  text-align: center;
  color: #7a6752;
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 0.92rem;
}

/* Doces/Bolos */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.custom-card {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #f0e2c4;
}

.custom-card h3 { margin-top: 0; }
.custom-card p { color: #6b5842; }

.custom-card .btn { margin-top: 12px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-bottom: 44px;
}

.step {
  text-align: center;
  padding: 22px 14px;
}

.step .num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brown-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 14px;
}

.step h3 { margin: 0 0 8px; font-size: 1.02rem; }
.step p { margin: 0; color: #7a6752; font-size: 0.9rem; }

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

.info-item {
  background: #fff;
  border: 1px solid #f0e2c4;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-item .icon { font-size: 1.4rem; }
.info-item h4 { margin: 0 0 4px; font-size: 0.95rem; }
.info-item p { margin: 0; color: #7a6752; font-size: 0.88rem; }

/* Gallery */
.gallery-section { background: var(--brown-dark); color: var(--cream); }
.gallery-section .section-head p { color: #e0c78f; }
.gallery-section .eyebrow { color: var(--gold-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(243,211,139,0.25);
}

.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  text-align: center;
  padding: 54px 0;
}

.cta-band h2 { color: var(--brown-dark); margin: 0 0 10px; }
.cta-band p { color: var(--brown); margin: 0 0 24px; }

.cta-band .btn-primary { box-shadow: 0 8px 24px rgba(43,22,8,0.25); }

/* Footer */
footer {
  background: var(--brown-dark);
  color: #cba25e;
  padding: 34px 0;
  text-align: center;
  font-size: 0.85rem;
}

footer .footer-brand {
  color: var(--gold-light);
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

footer a { color: var(--gold-light); text-decoration: none; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--whatsapp);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  z-index: 60;
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 10px 24px rgba(0,0,0,0.35); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 24px rgba(0,0,0,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 24px rgba(0,0,0,0.35); }
}

/* Responsive */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brown-dark);
    flex-direction: column;
    padding: 16px 20px;
    gap: 14px;
    display: none;
    border-top: 1px solid rgba(243,211,139,0.2);
  }
  .main-nav.open { display: flex; }
  .header-cta span.long { display: none; }
  .header-cta span.short { display: inline; }
}

@media (max-width: 480px) {
  .price-card { min-width: 45%; padding: 20px 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
