:root {
  --accent: #0f766e;
  --accent-dark: #0d5f58;
  --accent-light: #14b8a6;
  --muted: #6b7280;
  --bg: #ffffff;
  --card: #f8fafc;
  --radius: 16px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f8fafc;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}
.delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}
.delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}
.delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

/* Container */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(15, 118, 110, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
nav .nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-highlight {
  color: #fde047;
  position: relative;
  display: inline-block;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-primary {
  background: white;
  color: var(--accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}
.btn-ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 12px 24px;
}
.btn-ghost:hover {
  background: var(--accent);
  color: white;
}
/* Stats Section */
.stats {
  background: white;
  padding: 60px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-item {
  padding: 20px;
}
.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-label {
  color: var(--muted);
  font-size: 15px;
}

/* Features Section */
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 16px;
  color: #0f172a;
}
.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.feature-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  border: 2px solid transparent;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(15, 118, 110, 0.15);
  border-color: var(--accent-light);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
}
.feature-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}
.feature-desc {
  color: var(--muted);
  line-height: 1.7;
}

/* Demo Menu Section */
.demo-section {
  background: #f8fafc;
  padding: 80px 0;
}
.demo-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.menu-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f1f5f9;
}
.menu-title {
  font-size: 28px;
  font-weight: 900;
}
.status-badge {
  background: #10b981;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.category {
  margin-bottom: 32px;
}
.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}
.category-title {
  font-size: 22px;
  font-weight: 800;
}

.menu-items {
  display: grid;
  gap: 16px;
}
.menu-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 16px;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.menu-item:hover {
  background: white;
  border-color: var(--accent-light);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.1);
}
.item-image {
  width: 120px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.item-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}
.item-desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.item-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
}
.btn-order {
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
}
.btn-order:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-card {
  background: white;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.info-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qr-container {
  text-align: center;
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  margin: 20px 0;
}
#qrcode {
  display: inline-block;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
#qrcode img {
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
#qrcode canvas {
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
.qr-container img {
  width: 180px;
  height: 180px;
}
.qr-label {
  margin-top: 16px;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}
.benefits-list {
  list-style: none;
  margin-top: 16px;
}
.benefits-list li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
}
.benefits-list li:last-child {
  border-bottom: none;
}
.check-icon {
  color: #10b981;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

/* Plans Section */
.plans-section {
  background: white;
  padding: 80px 0;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.plan-card {
  background: #f8fafc;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.4s;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(15, 118, 110, 0.2);
}
.plan-featured {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  transform: scale(1.05);
}
.plan-featured .plan-label,
.plan-featured .plan-desc {
  color: rgba(255, 255, 255, 0.9);
}
.plan-featured .plan-price {
  color: white;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #92400e;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 900;
}
.plan-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.plan-name {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}
.plan-desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
  min-height: 48px;
}
.plan-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}
.plan-period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.plan-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}
.plan-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

/* Sticky Order Button */
.sticky-order {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  animation: slideIn 0.5s ease-out;
}
.sticky-order a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: white;
  padding: 18px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(15, 118, 110, 0.3);
  transition: all 0.3s;
}
.sticky-order a:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(15, 118, 110, 0.4);
}

/* Footer */
footer {
  background: #0f172a;
  color: white;
  padding: 60px 0 30px;
  text-align: center;
}
.footer-content {
  max-width: 600px;
  margin: 0 auto 30px;
}
.footer-logo {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--accent-light);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 24px 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--accent-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
  .demo-container {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 60px 0 80px;
  }
  .section {
    padding: 60px 0;
  }
  #contato {
    padding-bottom: 100px;
  }
}

@media (max-width: 640px) {
  .menu-item {
    flex-direction: column;
  }
  .item-image {
    width: 100%;
    height: 180px;
  }
  .sticky-order {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .sticky-order a {
    width: 100%;
    justify-content: center;
  }
  #contato {
    padding-bottom: 100px;
  }
}
