:root {
  --gold: #C6A43F;
  --gold-light: #E8D5A3;
  --dark: #1A1A1A;
  --dark-soft: #2D2D2D;
  --light: #F9F6F0;
  --white: #FFFFFF;
  --gray: #6B6B6B;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}

.restaurant-badge {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--gold);
  font-weight: 700;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-divider span {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.hero-divider i {
  color: var(--gold);
  font-size: 20px;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
}

.hero-info i {
  margin-right: 8px;
  color: var(--gold);
}

/* Menu Navigation */
.menu-nav {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: var(--shadow-light);
  z-index: 100;
  padding: 16px 0;
}

.nav-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 24px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.nav-item i {
  font-size: 16px;
}

.nav-item:hover {
  color: var(--gold);
}

.nav-item.active {
  background: var(--gold);
  color: var(--dark);
}

/* Menu Main */
.menu-main {
  padding: 60px 0 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.menu-header {
  text-align: center;
  margin-bottom: 60px;
}

.menu-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.menu-description {
  color: var(--gray);
  font-size: 16px;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.menu-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.2));
}

.menu-card-info {
  padding: 20px;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
}

.price {
  font-weight: 700;
  color: var(--gold);
  font-size: 20px;
}

.menu-card-info p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
}

/* Botão Adicionar ao Carrinho */
.btn-add-cart {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  background: var(--gold);
  border: none;
  border-radius: 30px;
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.btn-add-cart:hover {
  background: #B8962E;
  transform: translateY(-2px);
}

/* Carrinho Flutuante */
.cart-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 100;
  transition: all 0.3s;
}

.cart-floating:hover {
  transform: scale(1.05);
}

.cart-floating i {
  font-size: 24px;
  color: var(--dark);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #FF4D4D;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Modal do Carrinho */
.cart-modal {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 1000;
  overflow: hidden;
}

.cart-modal.active {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-header {
  background: var(--gold);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.cart-close {
  cursor: pointer;
  font-size: 20px;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
  padding: 15px;
}

.cart-empty {
  text-align: center;
  color: var(--gray);
  padding: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.cart-item-info {
  flex: 1;
}

.cart-item-price {
  font-size: 12px;
  color: var(--gold);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-quantity {
  font-size: 14px;
  font-weight: 600;
}

.cart-remove {
  background: none;
  border: none;
  color: #FF4D4D;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.cart-remove:hover {
  transform: scale(1.1);
}

.cart-total {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
}

.cart-checkout {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cart-checkout:hover {
  background: #B8962E;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 100px;
  right: 90px;
  background: #1A1A1A;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  animation: slideIn 0.3s ease;
}

.toast-notification i {
  color: #4CAF50;
}

.toast-notification.hide {
  animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateX(50px);
  }
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.footer-info p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-social a {
  color: var(--white);
  font-size: 20px;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 12px;
  opacity: 0.5;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 52px;
  }
  
  .hero-info {
    flex-direction: column;
    gap: 12px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .menu-card-image {
    height: 200px;
  }
  
  .menu-header h2 {
    font-size: 36px;
  }
  
  .nav-item span {
    display: none;
  }
  
  .nav-item {
    padding: 10px 16px;
  }
  
  .nav-item i {
    font-size: 18px;
    margin: 0;
  }
  
  .cart-modal {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    bottom: 90px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .restaurant-badge {
    font-size: 10px;
  }
}