/* ============================================
   Sítio das Tortas - CSS Principal
   Tema: Rústico / Rural / Acolhedor
   ============================================ */

/* CSS Variables */
:root {
  --rustic:      #7B3F00;
  --rustic-dark: #5C2E00;
  --rustic-light:#A0522D;
  --green:       #4A6741;
  --green-light: #6B8C62;
  --beige:       #F5EFE0;
  --beige-dark:  #EDE3CC;
  --cream:       #FFFDF7;
  --brown-text:  #3D2008;
  --gray-text:   #6B5B4E;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);

  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;

  --container: 1200px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--brown-text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rustic); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rustic-dark); }
h1,h2,h3,h4,h5 { font-family: var(--font-display); color: var(--brown-text); line-height: 1.3; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2.5rem; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 247, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(123,63,0,.1), var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.site-logo { display: flex; align-items: center; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rustic);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 400;
  font-size: .92rem;
  color: var(--brown-text);
  letter-spacing: .02em;
  transition: all var(--transition);
}
.nav-link:hover { background: var(--beige); color: var(--rustic); }
.nav-cta {
  background: var(--rustic);
  color: var(--white) !important;
  font-weight: 700;
  padding: 10px 20px;
}
.nav-cta:hover { background: var(--rustic-dark) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--brown-text); transition: all var(--transition); border-radius: 2px; }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: min(80vh, 680px);
}
.slider-track { display: flex; height: 100%; }
.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  background: linear-gradient(135deg, rgba(61,32,8,.7) 0%, rgba(61,32,8,.2) 100%);
}
.slide-title {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  max-width: 600px;
  margin-bottom: 16px;
}
.slide-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,.9);
  max-width: 500px;
  margin-bottom: 32px;
}
.btn-banner {
  background: var(--rustic);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .05em;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.btn-banner:hover { background: var(--rustic-dark); transform: translateY(-2px); color: white; }
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,.4); }
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: white; width: 28px; border-radius: 5px; }

/* ============================================
   SECTIONS COMMON
   ============================================ */
section { padding: 80px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-header p { color: var(--gray-text); max-width: 540px; margin: 0 auto; }

/* ============================================
   SOBRE
   ============================================ */
.section-sobre { background: var(--beige); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sobre-image img { width: 100%; height: 480px; object-fit: cover; }
.sobre-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--rustic);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.sobre-text h2 { font-size: 2.4rem; margin: 12px 0 20px; }
.sobre-text .prose { color: var(--gray-text); margin-bottom: 32px; }
.sobre-diferenciais {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.diferencial {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   PRATOS DO DIA
   ============================================ */
.section-pratos { background: var(--cream); }
.pratos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.prato-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--beige-dark);
}
.prato-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prato-img img { width: 100%; height: 200px; object-fit: cover; }
.prato-img--placeholder {
  height: 200px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.prato-info { padding: 20px; }
.prato-info h3 { font-size: 1.2rem; margin-bottom: 8px; }
.prato-info p { color: var(--gray-text); font-size: .9rem; margin-bottom: 12px; }
.prato-preco {
  display: inline-block;
  background: var(--rustic);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: .9rem;
}

/* ============================================
   CTA EVENTO
   ============================================ */
.section-cta {
  position: relative;
  background: var(--rustic-dark);
  color: white;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: white; font-size: clamp(2rem, 4vw, 3.5rem); margin: 12px 0 16px; }
.cta-content p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  background: white;
  color: var(--rustic-dark);
  padding: 16px 40px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.3); color: var(--rustic-dark); }
.btn-cta-outline {
  border: 2px solid rgba(255,255,255,.7);
  color: white;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
}
.btn-cta-outline:hover { background: rgba(255,255,255,.1); color: white; }

/* ============================================
   GALERIA HOME
   ============================================ */
.section-galeria { background: var(--beige); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.galeria-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.galeria-card a { display: block; height: 100%; }
.galeria-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.galeria-card:hover img { transform: scale(1.08); }
.galeria-placeholder {
  height: 100%;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,32,8,.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity var(--transition);
}
.galeria-card:hover .galeria-overlay { opacity: 1; }
.galeria-cat { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.galeria-overlay h3 { color: white; font-size: 1.1rem; }
.galeria-date { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--rustic);
  color: white;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--rustic-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--rustic);
  color: var(--rustic);
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--rustic); color: white; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--brown-text);
  color: rgba(255,255,255,.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h3, .footer-col h4 {
  font-family: var(--font-display);
  color: white;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer-col p { margin-bottom: 10px; font-size: .9rem; line-height: 1.6; }
.footer-col a { color: rgba(255,255,255,.7); }
.footer-col a:hover { color: white; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a { font-size: 1.3rem; transition: transform var(--transition); }
.social-links a:hover { transform: scale(1.2); }
.map-embed iframe { width: 100%; height: 180px; border-radius: var(--radius); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.5); }

/* ============================================
   REVEAL ANIMATION
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CARDÁPIO PAGE
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--rustic-dark), var(--brown-text));
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: white; font-size: 3rem; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: white; }
.filter-bar {
  background: white;
  border-bottom: 1px solid var(--beige-dark);
  padding: 16px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.filter-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  border: 2px solid var(--beige-dark);
  background: white;
  color: var(--gray-text);
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rustic);
  border-color: var(--rustic);
  color: white;
}
.search-form { margin-left: auto; display: flex; gap: 8px; }
.search-form input {
  padding: 8px 16px;
  border: 2px solid var(--beige-dark);
  border-radius: 30px;
  outline: none;
  font-size: .9rem;
  transition: border var(--transition);
}
.search-form input:focus { border-color: var(--rustic); }
.search-form button {
  background: var(--rustic);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  cursor: pointer;
  font-weight: 600;
}
.cardapio-section { padding: 60px 0; }
.categoria-section { margin-bottom: 60px; }
.categoria-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--beige-dark);
}
.cardapio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.cardapio-item {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-dark);
  transition: all var(--transition);
}
.cardapio-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cardapio-item-img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.cardapio-item-img-placeholder { width: 80px; height: 80px; background: var(--beige); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.cardapio-item-info { flex: 1; }
.cardapio-item-info h4 { font-size: 1rem; margin-bottom: 6px; }
.cardapio-item-info p { font-size: .85rem; color: var(--gray-text); margin-bottom: 8px; }
.badge-destaque { display: inline-block; background: #FFF3CD; color: #8a5a00; font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-bottom: 8px; }

/* ============================================
   AGENDAMENTO FORM
   ============================================ */
.agendamento-section { padding: 80px 0; background: var(--beige); }
.agendamento-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; align-items: start; }
.agendamento-info h2 { font-size: 2rem; margin-bottom: 20px; }
.agendamento-info p { color: var(--gray-text); margin-bottom: 24px; }
.info-item { display: flex; gap: 12px; margin-bottom: 20px; align-items: flex-start; }
.info-icon { font-size: 1.5rem; }
.info-text strong { display: block; margin-bottom: 4px; }
.info-text span { color: var(--gray-text); font-size: .9rem; }
.agendamento-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: .9rem; color: var(--brown-text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--brown-text);
  outline: none;
  transition: border var(--transition);
  background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rustic); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 24px; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--rustic);
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-submit:hover { background: var(--rustic-dark); transform: translateY(-2px); }
.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; }
.alert-danger { background: #FEE2E2; color: #991B1B; border-left: 4px solid #DC2626; }
.alert-success { background: #D1FAE5; color: #065F46; border-left: 4px solid #10B981; font-size: 1rem; }

/* ============================================
   GALERIA PAGE
   ============================================ */
.galeria-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  padding: 60px 0;
}
.evento-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--beige-dark);
}
.evento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.evento-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.evento-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.evento-card:hover .evento-card-img img { transform: scale(1.05); }
.evento-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rustic);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.evento-card-body { padding: 20px; }
.evento-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.evento-card-body p { font-size: .88rem; color: var(--gray-text); margin-bottom: 12px; }
.evento-card-date { font-size: .82rem; color: var(--gray-text); }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* Galeria interna */
.evento-galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.galeria-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.galeria-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.galeria-thumb:hover img { transform: scale(1.05); }

/* ============================================
   ADMIN BADGE LINK
   ============================================ */
.admin-bar {
  background: #1a1a2e;
  color: rgba(255,255,255,.7);
  padding: 6px 0;
  font-size: .82rem;
  text-align: right;
}
.admin-bar a { color: rgba(255,255,255,.7); padding: 0 12px; }
.admin-bar a:hover { color: white; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-image { display: none; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .agendamento-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .nav-link { width: 100%; text-align: center; padding: 12px; }
  .hero-slider { height: min(60vh, 420px); }
  .slide-content { padding: 30px; }
  .galeria-grid { grid-template-columns: 1fr; }
  .sobre-diferenciais { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .agendamento-form { padding: 24px; }
  .filter-inner { flex-direction: column; align-items: flex-start; }
  .search-form { margin-left: 0; width: 100%; }
  .search-form input { flex: 1; }
}

@media (max-width: 480px) {
  .pratos-grid { grid-template-columns: 1fr; }
  .galeria-page-grid { grid-template-columns: 1fr; }
  .slide-title { font-size: 1.6rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* Print */
@media print {
  .site-header, .whatsapp-float, .slider-prev, .slider-next { display: none !important; }
}
