:root {
  --brown-dark: #3b1f0e;
  --brown-mid: #7a3e1d;
  --brown-light: #c07941;
  --cream: #f5ede0;
  --cream-light: #fdf7f0;
  --gold: #d4a84b;
  --white: #ffffff;
  --text-dark: #2a1505;
  --text-mid: #5a3520;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(59,31,14,0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.3rem;
  line-height: 1.1;
}
.logo-text span { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--brown-dark) !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700 !important;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--cream) !important; transform: scale(1.05); }
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.35s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(59,31,14,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  transition: color 0.3s, transform 0.3s;
  transform: translateY(20px);
  opacity: 0;
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:hover { color: var(--gold); transform: scale(1.05); }
.mobile-menu .mobile-cta {
  background: var(--gold);
  color: var(--brown-dark) !important;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 1.1rem !important;
  font-weight: 700;
  font-family: 'Lato', sans-serif !important;
  letter-spacing: 0.08em;
  margin-top: 1rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(30,10,0,0.55) 0%, rgba(30,10,0,0.3) 50%, rgba(30,10,0,0.7) 100%),
    url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 2rem;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--brown-dark);
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(212,168,75,0.4);
}
.btn-primary:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.3); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--gold); color: var(--gold); }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.scroll-hint i { font-size: 1.1rem; }

/* ── SEÇÕES BASE ── */
section { padding: 90px 5%; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--brown-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { color: var(--brown-light); font-style: italic; }
.section-sub {
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  font-size: 1.05rem;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-light));
  border-radius: 2px;
  margin: 1.2rem 0 2rem;
}

/* ── SOBRE ── */
.about {
  background: var(--cream-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px 80px 8px 80px;
  box-shadow: 0 20px 60px rgba(59,31,14,0.25);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--brown-dark);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.about-badge strong { font-size: 2rem; line-height: 1; }
.about-badge span { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.feat-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  border: 1px solid rgba(192,121,65,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(59,31,14,0.12); }
.feat-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brown-light), var(--gold));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.9rem;
}
.feat-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 2px; }
.feat-card p { font-size: 0.75rem; color: var(--text-mid); line-height: 1.4; }

/* ── MENU / PRODUTOS ── */
.menu-section {
  background: var(--brown-dark);
  text-align: center;
}
.menu-section .section-title { color: var(--cream); }
.menu-section .section-sub { color: rgba(245,237,224,0.7); margin: 0 auto; }
.menu-section .divider { margin: 1.2rem auto 3rem; }

.category-tabs {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.tab-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 8px 22px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.35s, box-shadow 0.35s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-info { padding: 1.2rem 1.3rem 1.4rem; }
.product-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.product-desc {
  font-size: 0.78rem;
  color: rgba(245,237,224,0.55);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
}
.product-price small { font-size: 0.7rem; font-family: 'Lato', sans-serif; color: rgba(245,237,224,0.4); }
.btn-cart {
  background: var(--gold);
  color: var(--brown-dark);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-cart:hover { background: var(--cream); transform: scale(1.05); }

/* ── DEPOIMENTOS ── */
.testimonials {
  background: var(--cream);
  text-align: center;
}
.testimonials .divider { margin: 1.2rem auto 3rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 4px 20px rgba(59,31,14,0.08);
  border: 1px solid rgba(192,121,65,0.1);
  transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-5px); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.review-text {
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--brown-dark); }
.reviewer-date { font-size: 0.75rem; color: var(--text-mid); }

/* ── CTA BANNER ── */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(59,31,14,0.92) 0%, rgba(122,62,29,0.88) 100%),
    url('https://images.unsplash.com/photo-1464349095431-e9a21285b5f3?w=1200&q=80') center/cover;
  text-align: center;
  padding: 100px 5%;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--brown-dark);
  color: rgba(245,237,224,0.8);
  padding: 60px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,237,224,0.55);
  margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 0.8rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); color: var(--brown-dark); border-color: var(--gold); transform: translateY(-3px); }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  text-decoration: none;
  color: rgba(245,237,224,0.55);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.contact-item i {
  color: var(--gold);
  margin-top: 2px;
  width: 16px;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-item span {
  font-size: 0.86rem;
  color: rgba(245,237,224,0.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,237,224,0.35); }

/* ── WHATSAPP FLUTUANTE ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-tooltip {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 3s infinite;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 10px 35px rgba(37,211,102,0.6); animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  section { padding: 70px 6%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
}
