/* CSS VARIABLES & RESET */
:root {
  --color-purple: #5C1682;
  --color-purple-dark: #3a0e53;
  --color-purple-light: #7b1ea8;
  --color-yellow: #FFD700;
  --color-red: #E30613;
  --color-red-hover: #b9050f;
  --color-dark: #1A1A1A;
  --color-gray: #4A4A4A;
  --color-light: #F8F9FA;
  --color-white: #FFFFFF;
  
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Pacifico', cursive;
  
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px rgba(0,0,0,0.15);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-main);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

.text-purple { color: var(--color-purple); }
.text-yellow { color: var(--color-yellow); }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--color-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.6);
}

.btn-secondary {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  
  -webkit-
  transition: var(--transition);
  text-align: center;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* HEADER & NAV */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  
  -webkit-
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
  padding: 15px 0;
}

.glass-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-purple);
  line-height: 1;
}

.logo-highlight {
  color: var(--color-red);
}

.main-nav ul {
  display: flex;
  gap: 25px;
}

.main-nav a {
  font-weight: 500;
  color: var(--color-gray);
  position: relative;
}

.main-nav a:hover {
  color: var(--color-purple);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-purple);
  transition: var(--transition);
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--color-purple);
  border-radius: 3px;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
  padding: 150px 0 100px;
  color: var(--color-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.2);
  border: 1px solid rgba(255,215,0,0.5);
  color: var(--color-yellow);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-trust span {
  font-size: 0.85rem;
  opacity: 0.85;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-sub {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 90%;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 90%;
}

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

.hero-images {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  border: 4px solid rgba(255,255,255,0.2);
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-center {
  width: 320px;
  height: 320px;
  z-index: 3;
}

.img-left {
  width: 260px;
  height: 260px;
  left: -20px;
  top: 60px;
  z-index: 2;
  transform: rotate(-10deg);
}

.img-right {
  width: 240px;
  height: 240px;
  right: -10px;
  bottom: 50px;
  z-index: 2;
  transform: rotate(10deg);
}

.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-bottom .shape-fill {
  fill: var(--color-light);
}

/* MENU SECTION */
.menu-section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--color-gray);
  font-size: 1.1rem;
}

.category-title {
  font-size: 1.5rem;
  color: var(--color-purple-dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid rgba(92, 22, 130, 0.1);
  padding-bottom: 10px;
}

.category-title.mt-4 {
  margin-top: 50px;
}

.badge {
  background-color: var(--color-yellow);
  color: var(--color-dark);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
}

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

/* GLASS CARDS */
.glass-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glass-card.glass-dark {
  background: rgba(255, 255, 255, 0.95);
  
  -webkit-
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.glass-card:hover .card-img img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-purple-dark);
}

.card-content p {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-dark);
}

/* LIST MODE CARDS (BEBIDAS) */
.bebidas-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.list-mode .card-content {
  padding: 15px 20px;
}

.row-mode {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.row-mode h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.row-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* CARD TAG */
.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(92,22,130,0.85);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.popular-tag {
  background: rgba(227,6,19,0.9);
}

.card-img {
  position: relative;
}

/* PAIN SECTION */
.pain-section {
  background: var(--color-white);
  padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.pain-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(0,0,0,0.05);
}

.pain-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.pain-card p {
  margin: 0;
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pain-solution {
  text-align: center;
  font-size: 1.15rem;
  color: var(--color-dark);
  background: linear-gradient(135deg, rgba(92,22,130,0.06), rgba(255,215,0,0.08));
  padding: 28px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(92,22,130,0.12);
  line-height: 1.7;
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
  padding: 50px 0;
  color: white;
}

.cta-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-strip-headline {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-strip-sub {
  opacity: 0.8;
  margin: 0;
}

/* CATÁLOGO GRID */
.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.catalogo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(92,22,130,0.15);
  background: white;
  cursor: zoom-in;
  transition: var(--transition);
}

.catalogo-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-purple);
}

.catalogo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.catalogo-cta {
  text-align: center;
}

/* FACEBOOK BUTTON */
.facebook-btn {
  background-color: #1877F2;
  color: white;
}

.facebook-btn:hover {
  background-color: #166fe5;
}

/* GOOGLE MAPS LINK */
.footer-maps {
  margin-top: 16px;
}

.maps-link {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.maps-link:hover {
  color: var(--color-yellow);
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
  animation: pulse-green 2.5s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* WELCOME MODAL */
body.body-lock {
  overflow: hidden;
}

.welcome-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85); /* Fundo escuro sólido, sem blur para evitar bugs visuais no mobile */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.welcome-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.welcome-modal-content {
  background: white;
  width: 90%;
  max-width: 400px;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.welcome-modal-overlay.active .welcome-modal-content {
  transform: translateY(0);
}

.welcome-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.welcome-modal-close:hover {
  color: var(--color-purple);
}

.welcome-modal-header h3 {
  color: var(--color-purple);
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.welcome-modal-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.welcome-modal-body strong {
  color: var(--color-text);
}

.mt-4 { margin-top: 16px; }
.w-full { width: 100%; }

/* ANTI-DOWNLOAD IMAGES */
img {
  /* Impede menu longo de contexto no mobile (salvar imagem) */
  -webkit-touch-callout: none !important;
  /* Impede arrastar a imagem no desktop/mobile */
  -webkit-user-drag: none !important;
  user-drag: none !important;
  /* Impede seleção da imagem em si, mantendo seleção de texto global */
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  /* Define que não podem rolar eventos de pointer caso necessário pra evitar force touch (opcional, omitido pq quebra zoom) */
}

/* FOOTER */
.footer {
  background-color: var(--color-purple-dark);
  color: var(--color-white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 15px;
}

.footer-info p {
  margin-bottom: 10px;
  opacity: 0.8;
}

.footer-social h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.social-btn:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ANIMATIONS */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(227, 6, 19, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 6, 19, 0); }
}

.floating { animation: float 6s ease-in-out infinite; }
.floating-slow { animation: float 8s ease-in-out infinite 1s; }
.floating-fast { animation: float 4s ease-in-out infinite 2s; }
.pulse { animation: pulse 2s infinite; }

/* UTILS FOR INTERSECTION OBSERVER */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.fade-up.visible, .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-text p {
    margin: 0 auto 30px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-images {
    margin-top: 40px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .header-btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
    z-index: 1000;
    padding: 80px 30px 30px;
  }
  
  .main-nav.open {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 30px;
  }
  
  .main-nav a {
    font-size: 1.2rem;
    color: var(--color-dark);
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 414px) {
  .hero {
    padding-top: 120px;
  }
  
  .hero-images {
    height: 300px;
  }
  
  .img-center { width: 200px; height: 280px; }
  .img-left { width: 150px; height: 210px; left: -10px; }
  .img-right { width: 140px; height: 200px; right: -10px; }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 375px) {
  .hero-text h1 {
    font-size: 2rem;
  }
}

/* MASONRY GALLERY */
.gallery-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.masonry-grid {
  column-count: 1;
  column-gap: 20px;
}

@media (min-width: 600px) {
  .masonry-grid { column-count: 2; }
}

@media (min-width: 900px) {
  .masonry-grid { column-count: 3; }
}

@media (min-width: 1200px) {
  .masonry-grid { column-count: 4; }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Prevents ANY squeezing */
}

/* FIX CARD IMAGES SQUEEZING */
.card-img {
  width: 100%;
  aspect-ratio: 4 / 5 !important;
  height: auto !important; /* Override any fixed 200px height causing squeezes */
  overflow: hidden;
  position: relative;
}

.card-img img, .hero-img-wrapper img, .catalogo-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; /* CRITICAL: Never squeeze! */
}

/* For catalogs, maybe contain is better so text isn't cropped */
.catalogo-card img {
  object-fit: contain !important;
  background: #f8f9fa;
}

/* ===================== LOCATION SECTION ===================== */
.location-section {
  padding: 80px 0;
  background-color: var(--color-light);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: stretch;
  }
}

.location-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 9 / 16;
}

.location-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-tag {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  letter-spacing: 1.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.location-info-wrapper {
  display: flex;
}

.location-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  width: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.location-subtitle {
  color: #B2838F;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.location-card h3 {
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 25px;
}

.location-desc {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.location-desc svg {
  flex-shrink: 0;
  background: rgba(92,22,130,0.05);
  padding: 10px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.location-desc p {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--color-dark);
  padding: 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(0,0,0,0.15);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(0,0,0,0.03);
}

.btn-group-row {
  display: flex;
  gap: 12px;
}

.btn-group-row > a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  padding: 14px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}

@media(max-width: 400px) {
  .btn-group-row {
    flex-direction: column;
  }
}

.btn-map { background: #B2838F; }
.btn-map:hover { background: #9c6c78; }

.btn-uber { background: #222; }
.btn-uber:hover { background: #000; }

.map-iframe-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  margin-top: auto;
}

/* MAP GRID LAYOUT */
@media (min-width: 900px) {
  #localizacao > div > div {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ===================== MURAL RECANTO ===================== */
.mural-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.mural-filter {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-gray);
  cursor: pointer;
  transition: all 0.3s;
}

.mural-filter.active, .mural-filter:hover {
  background: var(--color-purple);
  color: white;
  border-color: var(--color-purple);
}

.mural-grid {
  column-count: 2;
  column-gap: 20px;
}

@media (min-width: 768px) {
  .mural-grid { column-count: 3; }
}
@media (min-width: 1024px) {
  .mural-grid { column-count: 4; }
}

.mural-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  animation: fadeIn 0.5s ease;
}

.mural-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mural-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===================== IOS LIST VIEW (BEBIDAS) ===================== */
.ios-list-container {
  background: white;
  border-radius: 24px;
  padding: 0 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  max-width: 600px;
  margin: 0 auto;
}
.ios-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.ios-list-item:last-child {
  border-bottom: none;
}
.ios-list-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ios-list-icon {
  font-size: 1.4rem;
  background: #f5f5f7;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.ios-list-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1d1d1f;
}
.ios-list-right {
  display: flex;
  align-items: center;
}
.ios-list-btn {
  background: #f5f5f7;
  color: var(--color-purple);
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ios-list-btn::after {
  content: '+';
  font-size: 1.2rem;
  line-height: 1;
}
.ios-list-btn:hover {
  background: var(--color-purple);
  color: white;
  transform: scale(1.05);
}

/* ===================== APPLE MODAL ===================== */
.apple-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}
.apple-modal.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.apple-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  
  -webkit-
}
.apple-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 92vh;
  background: rgba(255, 255, 255, 0.88);
  
  -webkit-
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -10px 50px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.apple-modal.active .apple-modal-content {
  transform: translateY(0);
}

.apple-modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: rgba(255, 255, 255, 0.95);
  z-index: 10;
}
.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.btn-close-modal {
  background: rgba(0,0,0,0.06);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #1d1d1f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.btn-close-modal:hover {
  background: rgba(0,0,0,0.12);
}
.modal-search-bar {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.modal-search-bar input {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-size: 1rem;
  margin-left: 10px;
  color: #1d1d1f;
  font-family: inherit;
}
.modal-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.modal-filters::-webkit-scrollbar {
  display: none;
}
.modal-pill {
  white-space: nowrap;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.3s;
}
.modal-pill.active {
  background: var(--color-purple);
  color: white;
  border-color: var(--color-purple);
}

.apple-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.square-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}
@media (min-width: 600px) {
  .square-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 24px;
  }
}

.grid-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeInScale 0.4s ease;
}
.grid-item-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  background: #f5f5f7;
}
.grid-item-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.grid-item:hover .grid-item-img-wrapper img {
  transform: scale(1.05);
}
.grid-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1d1d1f;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

body.modal-open {
  overflow: hidden;
}

#btn-open-catalog:hover {
  background: rgba(124, 58, 237, 1) !important;
  color: white !important;
}


/* DRAG HANDLE FOR MOBILE MODAL */
.modal-drag-handle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  user-select: none;
  touch-action: none;
  min-height: 44px;
  padding-top: 14px;
  padding-bottom: 10px;
}

.modal-drag-handle:active {
  cursor: grabbing;
}

.modal-drag-indicator {
  width: 48px;
  height: 6px;
  background-color: #d1d5db;
  border-radius: 9999px;
  pointer-events: none;
}

@media (min-width: 768px) {
  .modal-drag-handle {
    display: none;
  }
}
