/* ============================================================
   ONDE COMER NO VALE - Style Principal v1.0
   ============================================================ */

/* ------ VARIÁVEIS ------ */
:root {
  --primary: #8B0000;
  --primary-dark: #6B0000;
  --primary-light: #A52020;
  --gold: #D4AF37;
  --gold-dark: #B8962E;
  --gold-light: #E8CC5A;
  --white: #FFFFFF;
  --off-white: #FAF9F7;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --success: #059669;
  --warning: #D97706;
  --danger: #DC2626;
  --info: #0284C7;

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.14);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Transições */
  --transition: all 0.25s ease;
  --transition-slow: all 0.4s ease;

  /* Navbar */
  --navbar-h: 70px;

  /* BG / Text para light mode */
  --bg-body: #FAF9F7;
  --bg-card: #FFFFFF;
  --bg-section: #F3F4F6;
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --border-color: #E5E7EB;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --bg-body: #0F1117;
  --bg-card: #1A1D26;
  --bg-section: #161922;
  --text-primary: #F9FAFB;
  --text-secondary: #D1D5DB;
  --text-muted: #6B7280;
  --border-color: #2D3348;
  --shadow-card: 0 2px 15px rgba(0,0,0,0.3);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4 { font-family: var(--font-display); }
h5, h6 { font-family: var(--font-body); font-weight: 600; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* ------ TOP BAR ------ */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--primary-dark);
}
.topbar-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 12px;
  transition: var(--transition);
}
.topbar-link:hover { color: var(--gold); }

.btn-dark-mode {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  transition: var(--transition);
}
.btn-dark-mode:hover { background: rgba(255,255,255,0.25); }

/* ------ NAVBAR ------ */
.main-navbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  height: var(--navbar-h);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.logo-wrapper { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  box-shadow: 0 3px 10px rgba(139,0,0,0.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--primary); }
.logo-sub { font-size: 11px; font-weight: 500; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }

.main-navbar .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--primary) !important;
  background: rgba(139,0,0,0.06);
}

/* Mega Menu */
.mega-menu {
  min-width: 600px !important;
  padding: 12px !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--shadow-xl) !important;
  background: var(--bg-card) !important;
  border-radius: var(--radius-lg) !important;
}
.mega-menu-inner { display: flex !important; gap: 0; }
.mega-col {
  flex: 1;
  padding: 8px 12px;
  border-right: 1px solid var(--border-color);
}
.mega-col:last-child { border-right: none; }
.mega-title {
  color: var(--text-muted) !important;
  font-size: 10px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  padding-bottom: 6px !important;
  border-bottom: 1px solid var(--border-color);
}
.mega-menu .dropdown-item {
  font-size: 13px;
  color: var(--text-secondary) !important;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
}
.mega-menu .dropdown-item:hover {
  background: rgba(139,0,0,0.06) !important;
  color: var(--primary) !important;
}

/* Navbar Search */
.navbar-search .form-control {
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  border: 1px solid var(--border-color);
  background: var(--bg-section);
  color: var(--text-primary);
  font-size: 13px;
  width: 170px;
  height: 36px;
}
.navbar-search .btn-primary {
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  height: 36px;
  padding: 0 12px;
}
/* Navbar favoritos button — compacto abaixo de xxl, normal acima */
.navbar-fav-btn {
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
/* Truncate long user names in navbar */
.navbar-user-name {
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: middle;
}

/* ------ BUTTONS ------ */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: white;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #550000);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(139,0,0,0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
  color: var(--gray-900);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212,175,55,0.4);
  color: var(--gray-900);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
  border-radius: var(--radius-md);
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-1px);
}

/* ------ HERO SECTION ------ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 40%, #2d0808 70%, #1a1a1a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(1.2);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,0,0,0.7) 0%, rgba(30,0,0,0.8) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: float var(--dur, 6s) ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  to { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-display);
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Search Box */
.hero-search-box {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
}

[data-theme="dark"] .hero-search-box {
  background: rgba(26,29,38,0.97);
  border-color: rgba(255,255,255,0.1);
}

.hero-search-box h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-search-box .form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero-search-box .form-control,
.hero-search-box .form-select {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  height: 46px;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: var(--transition);
}
.hero-search-box .form-control:focus,
.hero-search-box .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
}

.btn-hero-search {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  height: 46px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  letter-spacing: 0.5px;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-hero-search:hover {
  background: linear-gradient(135deg, var(--primary-dark), #550000);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139,0,0,0.4);
  color: white;
}
.btn-hero-search i { margin-right: 8px; }

/* ------ SECTION STYLES ------ */
.section-header { margin-bottom: 40px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-label::before { content: '—'; margin-right: 8px; color: var(--gold); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 560px;
}
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  border-radius: 2px;
  margin-top: 12px;
}
.section-bg-alt { background-color: var(--bg-section); }

/* ------ CARDS DE CATEGORIA ------ */
.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  border: 1.5px solid var(--border-color);
  transition: var(--transition-slow);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.category-card:hover::before { transform: scaleX(1); }

.category-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}
.category-card:hover .category-emoji { transform: scale(1.15); }

.category-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.category-count {
  font-size: 11px;
  color: var(--text-muted);
}

/* ------ CARDS DE RESTAURANTE ------ */
.restaurant-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-slow);
  position: relative;
  height: 100%;
}
.restaurant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

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

.card-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.badge-destaque {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--gray-900);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-premium {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-aberto {
  background: #059669;
  color: white;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
}
.badge-fechado {
  background: #DC2626;
  color: white;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
}

.card-fav-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  color: var(--gray-400);
  font-size: 14px;
}
.card-fav-btn:hover,
.card-fav-btn.active { color: #DC2626; transform: scale(1.1); }

.card-category-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.card-body-content { padding: 18px; }

.card-restaurant-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-display);
}

.card-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.card-location i { margin-right: 4px; color: var(--primary); }

.card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Stars */
.stars-display { display: inline-flex; gap: 2px; }
.stars-display .fa-star { color: var(--gold); font-size: 12px; }
.stars-display .fa-star-half-stroke { color: var(--gold); font-size: 12px; }
.stars-display .far.fa-star { color: var(--gray-300); font-size: 12px; }

.rating-number {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-primary);
}
.rating-count {
  font-size: 11px;
  color: var(--text-muted);
}

.price-range {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

/* ------ CARD DESTAQUE (slider) ------ */
.featured-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-slow);
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.featured-photo { height: 260px; }
.featured-photo img { width: 100%; height: 100%; object-fit: cover; }

.featured-body { padding: 20px; }

.featured-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.featured-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.featured-city {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

/* ------ CARDS DE CIDADE ------ */
.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  transition: var(--transition-slow);
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.city-card:hover img { transform: scale(1.08); }

.city-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.7) saturate(1.1);
}

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.city-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-display);
  margin-bottom: 2px;
}
.city-count {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* City large card */
.city-card-large { height: 280px; }
.city-card-large .city-name { font-size: 1.4rem; }

/* ------ BLOG CARD ------ */
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition-slow);
  height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 20px; }
.blog-category-tag {
  display: inline-block;
  background: rgba(139,0,0,0.1);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--font-display);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-muted);
}

/* ------ PLANOS ------ */
.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 2px solid var(--border-color);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--border-color);
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.pricing-card.popular {
  border-color: var(--gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}
.pricing-card.popular::before { background: linear-gradient(to right, var(--gold), var(--gold-dark)); }

.pricing-card.premium {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(139,0,0,0.03) 100%);
}
.pricing-card.premium::before { background: linear-gradient(to right, var(--primary), var(--gold)); }

.popular-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--gray-900);
  padding: 6px 16px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}

.plan-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.plan-icon.free { background: rgba(107,114,128,0.1); color: var(--gray-500); }
.plan-icon.destaque { background: rgba(212,175,55,0.15); color: var(--gold); }
.plan-icon.premium { background: rgba(139,0,0,0.1); color: var(--primary); }

.plan-name { font-size: 1rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.plan-price { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); font-family: var(--font-display); line-height: 1; margin-bottom: 4px; }
.plan-price small { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.plan-period { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

.plan-features { list-style: none; padding: 0; text-align: left; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .fa-check { color: var(--success); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.plan-features li .fa-xmark { color: var(--gray-300); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.plan-features li.disabled { color: var(--text-muted); }

/* ------ STATS COUNTER ------ */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  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");
}

.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; }
.stat-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 20px;
  color: var(--gold);
}

/* ------ BUSCA PAGE ------ */
.search-filters {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
  position: sticky;
  top: calc(var(--navbar-h) + 20px);
}

.filter-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.filter-group { margin-bottom: 20px; }
.filter-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.filter-group .form-control,
.filter-group .form-select {
  font-size: 13px;
  border-color: var(--border-color);
  background: var(--bg-body);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
}

.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chip {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-color);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-body);
  color: var(--text-secondary);
}
.filter-chip:hover,
.filter-chip.active {
  border-color: var(--primary);
  background: rgba(139,0,0,0.08);
  color: var(--primary);
}

.search-header {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.search-results-count {
  font-size: 14px;
  color: var(--text-secondary);
}
.search-results-count strong { color: var(--text-primary); }

/* ------ PÁGINA DO RESTAURANTE ------ */
.restaurant-header {
  position: relative;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) { .restaurant-header { height: 260px; } }

.restaurant-header-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}
.restaurant-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.restaurant-header-meta {
  max-width: 700px;
}
.restaurant-main-name {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  font-family: var(--font-display);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.restaurant-header-badges { display: flex; gap: 8px; flex-wrap: wrap; }

/* Info Panel */
.info-panel {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}
.info-panel-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 14px;
}
.info-panel-body { padding: 20px; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
}
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-item-icon {
  width: 32px; height: 32px;
  background: rgba(139,0,0,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}
.info-item-content { flex: 1; }
.info-item-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.info-item-value { color: var(--text-primary); font-weight: 500; margin-top: 2px; }

/* Horários */
.horario-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.horario-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-section);
}
.horario-item.hoje {
  background: rgba(139,0,0,0.1);
  border: 1px solid rgba(139,0,0,0.2);
}
.dia-nome { font-weight: 600; color: var(--text-primary); }
.dia-horario { color: var(--text-secondary); }

/* Galeria */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 576px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: var(--transition);
  opacity: 0;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.4); opacity: 1; }

/* Avaliação Form */
.review-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-color);
}
.star-input { display: flex; gap: 6px; flex-direction: row-reverse; justify-content: flex-end; }
.star-input input { display: none; }
.star-input label {
  font-size: 28px;
  cursor: pointer;
  color: var(--gray-300);
  transition: var(--transition);
}
.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label { color: var(--gold); }

/* Review card */
.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-card); }

.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}
.reviewer-name { font-weight: 600; color: var(--text-primary); font-size: 14px; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 10px 0; }
.review-response {
  background: var(--bg-section);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ------ BREADCRUMB ------ */
.page-breadcrumb {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}
.breadcrumb { margin: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }

/* ------ PAGE HEADER ------ */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #1a0000 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg opacity='0.05' width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50 L50 0 A50 50 0 0 1 100 50Z' fill='%23D4AF37'/%3E%3C/svg%3E");
}
.page-header-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  font-family: var(--font-display);
  position: relative;
}
.page-header-subtitle { color: rgba(255,255,255,0.8); font-size: 15px; position: relative; }

/* ------ ADMIN ------ */
.sidebar-admin {
  width: 260px;
  background: var(--gray-900);
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0; left: 0;
  z-index: 100;
  transition: var(--transition);
}
.sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 15px;
  line-height: 1.2;
}
.sidebar-logo-text small { color: var(--gold); font-size: 11px; display: block; }

.sidebar-nav { padding: 16px 12px; }
.sidebar-nav-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  padding: 8px 8px 4px;
  font-weight: 700;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 2px;
}
.sidebar-link i { width: 18px; text-align: center; }
.sidebar-link:hover { background: rgba(255,255,255,0.08); color: white; }
.sidebar-link.active { background: var(--primary); color: white; }

.admin-content {
  margin-left: 260px;
  min-height: 100vh;
  background: var(--bg-section);
}
.admin-topbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 99;
}
.admin-main { padding: 28px; }

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-card); }
.stat-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-card-icon.primary { background: rgba(139,0,0,0.1); color: var(--primary); }
.stat-card-icon.gold { background: rgba(212,175,55,0.1); color: var(--gold); }
.stat-card-icon.success { background: rgba(5,150,105,0.1); color: var(--success); }
.stat-card-icon.info { background: rgba(2,132,199,0.1); color: var(--info); }

.stat-card-value { font-size: 1.8rem; font-weight: 800; color: var(--text-primary); font-family: var(--font-display); line-height: 1; }
.stat-card-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.data-table { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); }
.data-table-header { padding: 16px 20px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; }
.data-table-title { font-weight: 700; font-size: 15px; color: var(--text-primary); }

/* ------ SPLIDE CUSTOMIZATION ------ */
.splide__pagination__page { background: var(--gray-300) !important; }
.splide__pagination__page.is-active { background: var(--primary) !important; transform: scale(1.3); }
.splide__arrow { background: var(--bg-card) !important; border: 1px solid var(--border-color) !important; box-shadow: var(--shadow-sm) !important; }
.splide__arrow svg { fill: var(--primary) !important; }
.splide__arrow:hover { background: var(--primary) !important; }
.splide__arrow:hover svg { fill: white !important; }

/* ------ FOOTER ------ */
.footer-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #3D0000 100%);
  padding: 48px 0;
}
.footer-cta h3 { color: white; font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 8px; }
.footer-cta p { color: rgba(255,255,255,0.75); }

.main-footer { background: #0A0A0A; }
.footer-main { padding: 64px 0 40px; }

.footer-logo-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 16px;
}
.footer-about { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}
.social-btn.instagram { background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888); }
.social-btn.facebook { background: #1877F2; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.tiktok { background: #010101; border: 1px solid #333; }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); color: white; }

.footer-title { color: rgba(255,255,255,0.9) !important; font-size: 12px !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px !important; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: 11px; }

.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--gold); font-size: 13px; width: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ------ UTILITIES ------ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 90px;
  width: 42px; height: 42px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(139,0,0,0.4);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 52px; height: 52px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulseWhatsapp 2s infinite;
}
.whatsapp-float:hover { background: #1da851; transform: scale(1.1); color: white; animation: none; }

@keyframes pulseWhatsapp {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

/* Loading skeleton */
.skeleton { background: linear-gradient(90deg, var(--bg-section) 25%, var(--bg-card) 50%, var(--bg-section) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* Toast notifications */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; }

/* Alert flash */
.alert-flash { border-radius: 0 !important; border-left: none !important; border-right: none !important; }

/* Forms */
.form-control, .form-select {
  border-color: var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: var(--radius-md);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
  background: var(--bg-card);
  color: var(--text-primary);
}
.form-label { font-weight: 500; font-size: 14px; color: var(--text-primary); }
.invalid-feedback { font-size: 12px; }

/* Tags */
.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  background: var(--bg-section);
}

/* Pagination */
.pagination .page-link {
  color: var(--text-secondary);
  border-color: var(--border-color);
  background: var(--bg-card);
  border-radius: var(--radius-sm) !important;
  margin: 0 2px;
}
.pagination .page-link:hover { background: var(--primary); color: white; border-color: var(--primary); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* ANIMATIONS */
.fade-in { animation: fadeIn 0.5s ease forwards; }
.slide-up { animation: slideUp 0.4s ease forwards; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Hero bounce arrow */
.min-vh-85 { min-height: 85vh; }

/* Scroll reveal — conteúdo visível por padrão (SEO + no-JS + evita página em branco).
   A classe .js-ready no <html> ativa a animação somente quando o JS carrega. */
.reveal { opacity: 1; transform: translateY(0); }
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js-ready .reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ------ RESPONSIVE ------ */
@media (max-width: 992px) {
  .sidebar-admin { transform: translateX(-100%); }
  .sidebar-admin.open { transform: translateX(0); }
  .admin-content { margin-left: 0; }
  .mega-menu { min-width: 100% !important; }
  .mega-menu-inner { flex-direction: column !important; }
}

@media (max-width: 768px) {
  .hero-section { min-height: 100vh; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.4rem; }
  .section-title { font-size: 1.5rem; }
  .stats-section { padding: 40px 0; }
  .footer-main { padding: 40px 0 28px; }
  .topbar { display: none; }
  .back-to-top { right: 78px; bottom: 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 576px) {
  .logo-text .logo-sub { display: none; }
  .pricing-card.popular { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Print */
@media print {
  .main-navbar, .footer-cta, .main-footer, .back-to-top, .whatsapp-float { display: none !important; }
}

/* ------ MODAL DE CONFIRMAÇÃO ------ */
.vf-modal-overlay {
  position: fixed; inset: 0; z-index: 100000;
  background: rgba(18,10,10,0.74);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; transition: opacity 0.2s ease;
}
.vf-modal-overlay.show { opacity: 1; }
.vf-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  width: 100%; max-width: 400px;
  padding: 32px 28px; text-align: center;
  transform: translateY(14px) scale(0.96);
  transition: transform 0.22s cubic-bezier(0.2,0.8,0.2,1);
}
.vf-modal-overlay.show .vf-modal { transform: translateY(0) scale(1); }
.vf-modal-icon {
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 26px;
}
.vf-modal-icon.danger { background: rgba(220,38,38,0.12); color: var(--danger); }
.vf-modal-icon.info   { background: rgba(139,0,0,0.10);  color: var(--primary); }
.vf-modal-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; color: var(--text-primary); margin-bottom: 8px;
}
.vf-modal-msg {
  color: var(--text-secondary); font-size: 14px;
  line-height: 1.6; margin-bottom: 26px;
}
.vf-modal-actions { display: flex; gap: 12px; }
.vf-btn {
  flex: 1; padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: 14px; cursor: pointer;
  border: 1px solid transparent; transition: var(--transition);
}
.vf-btn-cancel { background: var(--bg-section); color: var(--text-secondary); border-color: var(--border-color); }
.vf-btn-cancel:hover { background: var(--border-color); }
.vf-btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; }
.vf-btn-primary:hover { box-shadow: 0 6px 18px rgba(139,0,0,0.35); transform: translateY(-1px); }
.vf-btn-danger { background: linear-gradient(135deg, #DC2626, #B91C1C); color: #fff; }
.vf-btn-danger:hover { box-shadow: 0 6px 18px rgba(220,38,38,0.4); transform: translateY(-1px); }
@media (max-width: 420px) { .vf-modal-actions { flex-direction: column-reverse; } }
