/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C41E3A;
  --red-dark: #9E1830;
  --red-light: #F5E6E9;
  --green: #2D5016;
  --green-light: #4A7C26;
  --amber: #D97706;
  --gold: #F5A623;
  --cream: #FFFDF7;
  --warm: #FFF8EE;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: #E8E0D0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.16);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all .2s; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-desc { color: var(--text-muted); font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .25s;
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(196,30,58,.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,.6);
  transition: all .25s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--red);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid var(--red);
  transition: all .25s;
  margin-top: 16px;
}
.btn-outline-sm:hover { background: var(--red); color: var(--white); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .25s;
}
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.35); }

.btn-large { padding: 16px 32px; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(255,253,247,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 52px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,.15)); }
.navbar.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  border-radius: 8px;
  transition: all .2s;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { background: rgba(255,255,255,.15); }
.navbar.scrolled .nav-links a:hover { background: var(--red-light); color: var(--red); }

.nav-cta { font-size: 0.85rem; padding: 10px 18px; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-menu.open { max-height: 500px; display: flex; }
.mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-wpp { margin-top: 12px; text-align: center; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(28,28,28,.75) 0%, rgba(196,30,58,.55) 100%),
    url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(28,28,28,.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 40px;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: auto;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 0 32px;
}
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}
.stat span { font-size: 0.8rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .08em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.25); flex-shrink: 0; }

/* ===== PIX BANNER ===== */
.pix-banner {
  background: var(--green);
  padding: 14px 0;
}
.pix-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pix-inner span { font-size: 1.1rem; }
.pix-inner p { color: rgba(255,255,255,.9); font-size: 0.9rem; }
.pix-inner strong { color: var(--white); }
.pix-inner a { color: #7FE0A0; font-weight: 600; font-size: 0.9rem; border-bottom: 1px solid currentColor; }

/* ===== PRODUTOS ===== */
.produtos { background: var(--white); }

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.produto-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  opacity: 0;
  transform: translateY(24px);
}
.produto-card.visible { opacity: 1; transform: none; }
.produto-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.produto-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.produto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.produto-card:hover .produto-img-wrap img { transform: scale(1.06); }

.produto-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.produto-badge-green { background: var(--green-light); }
.produto-badge-amber { background: var(--amber); }
.produto-badge-red { background: var(--red); }

.produto-info { padding: 20px 24px 24px; }
.produto-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.produto-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; }
.produto-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all .2s;
}
.produto-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.produto-destaque { border: 2px solid var(--red); }

.produtos-cta {
  text-align: center;
  margin-top: 56px;
  padding: 40px;
  background: var(--warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.produtos-cta p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }

/* ===== SOBRE ===== */
.sobre { background: var(--warm); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.sobre-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-img img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(196,30,58,.2));
}
.sobre-anos {
  position: absolute;
  bottom: -10px;
  right: 10px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.sobre-anos strong { display: block; font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.sobre-anos span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }

.sobre-texto .section-label { display: inline-block; margin-bottom: 12px; }
.sobre-texto .section-title { text-align: left; margin-bottom: 16px; }
.sobre-texto p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

.valores { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.valor-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(20px);
  transition: all .4s;
}
.valor-item.visible { opacity: 1; transform: none; }
.valor-icon { font-size: 1.5rem; flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--red-light); border-radius: 10px; }
.valor-item strong { display: block; font-weight: 600; margin-bottom: 2px; }
.valor-item p { color: var(--text-muted); font-size: 0.875rem; margin: 0; }

/* ===== HORÁRIOS ===== */
.horarios-section { background: var(--red); padding: 60px 0; }
.horarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.horario-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s;
}
.horario-card.visible { opacity: 1; transform: none; }
.horario-icon { font-size: 2rem; margin-bottom: 16px; }
.horario-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 16px; }
.horario-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 0.9rem; }
.horario-item span { opacity: .8; }
.horario-item strong { font-weight: 600; }
.horario-item.fechado strong { color: rgba(255,255,255,.5); }
.pedido-steps { list-style: none; counter-reset: steps; }
.pedido-steps li {
  counter-increment: steps;
  padding: 10px 0 10px 36px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: 0.9rem;
  opacity: .9;
}
.pedido-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.horario-card p { font-size: 0.9rem; opacity: .9; line-height: 1.6; }
.horario-card .btn-outline-sm { color: var(--white); border-color: rgba(255,255,255,.5); }
.horario-card .btn-outline-sm:hover { background: rgba(255,255,255,.2); border-color: var(--white); }

/* ===== DEPOIMENTOS ===== */
.depoimentos { background: var(--white); }
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depoimento-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all .3s;
  opacity: 0;
  transform: translateY(20px);
}
.depoimento-card.visible { opacity: 1; transform: none; }
.depoimento-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.depoimento-destaque {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.stars { font-size: 1.1rem; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.depoimento-destaque .stars { color: #FFD700; }
.depoimento-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); font-style: italic; margin-bottom: 24px; }
.depoimento-destaque p { color: rgba(255,255,255,.9); }
.depoimento-autor { display: flex; align-items: center; gap: 12px; }
.autor-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depoimento-destaque .autor-avatar { background: rgba(255,255,255,.25); color: var(--white); }
.depoimento-autor strong { display: block; font-size: 0.9rem; }
.depoimento-autor span { font-size: 0.8rem; color: var(--text-muted); }
.depoimento-destaque .depoimento-autor span { color: rgba(255,255,255,.7); }

/* ===== FAQ ===== */
.faq-section { background: var(--warm); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .2s;
}
.faq-item[open] { border-color: var(--red); box-shadow: 0 0 0 2px var(--red-light); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== CONTATO ===== */
.contato { background: var(--white); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contato-info .section-label { display: inline-block; margin-bottom: 12px; }
.contato-info .section-title { text-align: left; margin-bottom: 16px; }
.contato-info > p { color: var(--text-muted); margin-bottom: 32px; }
.contato-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contato-item { display: flex; gap: 16px; align-items: flex-start; }
.contato-icon { font-size: 1.3rem; width: 44px; height: 44px; background: var(--red-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contato-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 4px; }
.contato-item span, .contato-item a { font-size: 0.95rem; line-height: 1.5; color: var(--text); }
.contato-item a:hover { color: var(--red); }
.contato-mapa { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ===== FOOTER ===== */
.footer { background: #111; color: var(--white); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; filter: brightness(1.2); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all .2s;
}
.footer-social a:hover { background: var(--red); }
.footer-links h4, .footer-horarios h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 0.9rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-horarios p { color: rgba(255,255,255,.7); font-size: 0.875rem; margin-bottom: 6px; }
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 0.8rem; }

/* ===== WPP FLOAT ===== */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all .3s;
  animation: pulse-wpp 2.5s infinite;
}
.wpp-float:hover { transform: scale(1.1); background: #1DA851; }

@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img { display: none; }
  .horarios-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-row { gap: 0; }
  .stat { padding: 0 20px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-menu:not(.open) { max-height: 0 !important; padding: 0 24px; }
  .produtos-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .produto-img-wrap { height: 160px; }
  .stat-divider { display: none; }
  .stats-row { gap: 16px; }
  .stat { padding: 12px 16px; }
}

@media (max-width: 520px) {
  .produtos-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .pix-inner { text-align: center; }
}
