:root {
  --primary: #7b2ff7;
  --primary-dark: #5a1fd1;
  --accent: #ff6b9d;
  --accent-dark: #e84a7e;
  --dark: #1b1033;
  --dark-2: #261748;
  --text: #2d2540;
  --muted: #7a7393;
  --light: #f6f3ff;
  --white: #ffffff;
  --green: #25d366;
  --green-dark: #1eb858;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(75, 30, 150, 0.14);
  --shadow-lg: 0 20px 48px rgba(75, 30, 150, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
}

.logo-icon {
  font-size: 30px;
  filter: drop-shadow(0 4px 8px rgba(123, 47, 247, 0.35));
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 18px; font-weight: 800; color: var(--dark); }
.logo-text small { font-size: 11px; color: var(--muted); font-weight: 500; }

.nav { display: flex; gap: 28px; }

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 8px 22px rgba(123, 47, 247, 0.35); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(123, 47, 247, 0.45); }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { background: var(--green-dark); }

.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-cart { padding: 10px 18px; font-size: 15px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--dark);
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 72px 0 96px;
  background: radial-gradient(ellipse at top left, #efe9ff 0%, #fff 55%, #ffe9f2 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
}

.hero-text h1 span { background: linear-gradient(90deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 24px; color: var(--primary-dark); font-weight: 800; }
.hero-stats span { font-size: 14px; color: var(--muted); font-weight: 500; }

.hero-img { position: relative; height: 420px; }

.drink-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  animation: float 5s ease-in-out infinite;
}

.drink-card-1 { width: 180px; height: 240px; top: 0; left: 40px; background: linear-gradient(160deg, #ff9a9e, #ff6b9d); rotate: -8deg; font-size: 30px; }
.drink-card-2 { width: 150px; height: 200px; top: 40px; right: 10px; background: linear-gradient(160deg, #a1c4fd, #7b2ff7); rotate: 10deg; font-size: 26px; }
.drink-card-3 { width: 140px; height: 190px; bottom: 20px; left: 120px; background: linear-gradient(160deg, #f6d365, #fda085); rotate: 6deg; font-size: 24px; }
.drink-card-4 { width: 130px; height: 170px; bottom: 0; right: 40px; background: linear-gradient(160deg, #b06ab3, #4568dc); rotate: -6deg; font-size: 22px; }

.drink-ring {
  position: absolute;
  top: 140px;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #0f9d58);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(15, 157, 88, 0.4);
  z-index: 5;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Sections */
.section { padding: 80px 0; }
.section-dark { background: linear-gradient(160deg, var(--dark), var(--dark-2)); }
.section-light { background: var(--light); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section-head h2 { font-size: 38px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 16px; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: #c9c2e0; }

/* Filters */
.filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border: 2px solid #e3dcf5;
  background: #fff;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 6px 18px rgba(123, 47, 247, 0.3); }

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #f0ebff;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

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

.product-visual {
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-visual .drink-art {
  width: 150px;
  height: auto;
  max-height: 210px;
  filter: drop-shadow(0 10px 18px rgba(27, 16, 51, 0.22));
  transition: transform 0.3s ease;
}

.product-card:hover .product-visual .drink-art {
  transform: scale(1.06) rotate(-2deg);
}

.product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.tag-alcool { background: #ffe3ec; color: #d81b60; }
.tag-sem { background: #dfffe9; color: #0f9d58; }
.tag-cremoso { background: #fff1d6; color: #b26a00; }

.product-card h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.product-desc { font-size: 14px; color: var(--muted); flex: 1; margin-bottom: 16px; }

.product-sizes { display: flex; flex-direction: column; gap: 8px; }

.size-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 2px solid #e9e3f7;
  border-radius: 14px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fbfaff;
}

.size-option:hover { border-color: var(--primary); }

.size-option.selected { border-color: var(--primary); background: #f3edff; }

.size-label { font-size: 13px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 6px; }

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

.add-btn {
  margin-top: 14px;
  padding: 10px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.add-btn:hover { box-shadow: 0 8px 20px rgba(123, 47, 247, 0.35); transform: translateY(-1px); }

/* Combos */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.combo-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.combo-banner {
  padding: 36px 28px;
  color: #fff;
  text-align: center;
}

.combo-banner .combo-emoji { font-size: 52px; margin-bottom: 10px; }
.combo-banner h3 { font-size: 26px; font-weight: 800; }
.combo-banner p { opacity: 0.95; font-size: 14px; }

.combo-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.combo-items { list-style: none; margin-bottom: 20px; flex: 1; }
.combo-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed #eee4fb;
  font-size: 14px;
  color: var(--text);
}

.combo-items li:last-child { border-bottom: none; }

.combo-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

.combo-price { display: flex; flex-direction: column; }
.combo-price del { font-size: 14px; color: var(--muted); }
.combo-price strong { font-size: 24px; color: var(--accent-dark); font-weight: 800; }

.combo-btn { padding: 12px 20px; font-size: 14px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(123, 47, 247, 0.3);
}

.step h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* Contact */
.contact-box {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: 28px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}

.contact-box h2 { font-size: 34px; font-weight: 800; margin-bottom: 8px; }
.contact-box p { color: #c9c2e0; }

.contact-phone { font-size: 24px; font-weight: 700; color: #fff; margin: 16px 0 4px !important; }
.contact-note { font-size: 14px; color: var(--green) !important; font-weight: 600; }

/* Footer */
.footer {
  background: var(--dark);
  padding: 32px 0;
  text-align: center;
  color: #c9c2e0;
}

.footer-inner p { margin: 4px 0; font-size: 14px; }
.footer-inner strong { color: #fff; }
.footer-small { font-size: 12px !important; opacity: 0.7; }

/* Cart */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 40, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 200;
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 92vw;
  height: 100%;
  background: #fff;
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.2);
}

.cart.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid #f0ebff;
}

.cart-head h3 { font-size: 20px; font-weight: 700; color: var(--dark); }

.cart-close {
  background: none;
  border: none;
  font-size: 30px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
}

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-empty { text-align: center; color: var(--muted); padding: 48px 0; }
.cart-empty span { font-size: 48px; display: block; margin-bottom: 12px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f4efff;
}

.cart-item-emoji { font-size: 30px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.cart-item-detail { font-size: 12px; color: var(--muted); }

.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #f0ebff;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.qty-btn:hover { background: #e2d9ff; }

.cart-item-price { font-size: 14px; font-weight: 700; color: var(--primary-dark); min-width: 72px; text-align: right; }

.cart-foot { padding: 20px 24px; border-top: 1px solid #f0ebff; }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 14px; }
.cart-total strong { font-size: 22px; color: var(--dark); }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: all 0.35s;
  z-index: 300;
}

.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 48px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { height: 300px; margin-top: 20px; }
  .hero-text h1 { font-size: 38px; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 30px; }
  .steps { grid-template-columns: 1fr; }
  .contact-box { flex-direction: column; text-align: center; }
}

@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 24px; gap: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .drink-card-1 { width: 130px; height: 180px; left: 20px; }
  .drink-card-2 { width: 110px; height: 150px; right: 0; }
  .drink-card-3 { width: 110px; height: 150px; left: 90px; }
  .drink-card-4 { width: 100px; height: 130px; right: 20px; }
  .hero-text h1 { font-size: 32px; }
}
