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

:root {
  --orange: #FF6B2B;
  --orange-light: #FF8C5B;
  --orange-dark: #E55520;
  --gold: #F5A623;
  --dark: #0D0D0F;
  --dark-2: #141417;
  --dark-3: #1C1C21;
  --dark-4: #242429;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #F0F0F5;
  --text-muted: #9090A0;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== LIGHT MODE ===== */
[data-theme='light'] {
  --dark: #F5F5F0;
  --dark-2: #EBEBE5;
  --dark-3: #FFFFFF;
  --dark-4: #E0E0DA;
  --glass: rgba(0, 0, 0, 0.04);
  --glass-border: rgba(0, 0, 0, 0.12);
  --text: #18181B;
  --text-muted: #52525B;
  --white: #18181B;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

[data-theme='light'] .navbar.scrolled {
  background: rgba(245, 245, 240, 0.95);
}

[data-theme='light'] .hero {
  background: var(--dark);
}

[data-theme='light'] .hero-title {
  color: #FFFFFF;
}

[data-theme='light'] .hero-sub {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme='light'] .logo-text {
  color: var(--white);
}

[data-theme='light'] .nav-links a {
  color: var(--text-muted);
}

[data-theme='light'] .nav-links a:hover {
  color: var(--text);
}

[data-theme='light'] .section-title {
  color: var(--white);
}

[data-theme='light'] .step-card h3,
[data-theme='light'] .pkg-header h3,
[data-theme='light'] .menu-info h3,
[data-theme='light'] .diff-card h3,
[data-theme='light'] .menu-cta-inner h3 {
  color: var(--white);
}

/* btn-ghost na hero permanece visível no modo claro (hero é sempre escuro) */
[data-theme='light'] .hero .btn-ghost {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

[data-theme='light'] .hero .btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 107, 43, 0.1);
}

/* badge hero */
[data-theme='light'] .hero-badge {
  color: #FF8C5B;
}

/* hero stats barra de vidro */
[data-theme='light'] .hero-stats {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

[data-theme='light'] .hero-stats .stat small {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.theme-toggle:hover {
  background: rgba(255, 107, 43, 0.15);
  border-color: var(--orange);
  transform: scale(1.1);
}

/* ---- Ícone: lua crescente (CSS puro) ---- */
.theme-toggle::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  /* O círculo escuro "morde" o halo branco → meia-lua */
  background: #111116;
  box-shadow: 5px -3px 0 3px rgba(215, 215, 195, 0.95);
  transition: background 0.35s, box-shadow 0.35s, transform 0.35s;
  transform: rotate(0deg);
}

/* ---- Modo claro: sol laranja brilhante ---- */
[data-theme='light'] .theme-toggle {
  background: rgba(255, 107, 43, 0.1);
  border-color: rgba(255, 107, 43, 0.35);
}

[data-theme='light'] .theme-toggle:hover {
  background: rgba(255, 107, 43, 0.22);
  border-color: var(--orange);
}

[data-theme='light'] .theme-toggle::after {
  background: var(--orange);
  box-shadow: 0 0 7px 3px rgba(255, 107, 43, 0.45);
  transform: rotate(180deg);
}

/* Smooth theme transition */
body {
  transition: background-color 0.4s ease, color 0.4s ease;
}

.menu-card,
.step-card,
.pkg-card,
.diff-card,
.review-card,
.faq-item {
  transition: all var(--transition), background-color 0.4s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text strong {
  color: var(--orange);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.btn-nav {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: all var(--transition) !important;
}

.btn-nav:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* Imagem de pizza pepperoni de fundo */
.hero-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1628840042765-356cda07504e?w=1400&q=80');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  animation: heroBgZoom 20s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

/* Overlay gradiente escuro sobre a imagem */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(13, 13, 15, 0.92) 40%, rgba(13, 13, 15, 0.55) 80%),
    linear-gradient(to bottom, rgba(13, 13, 15, 0.3) 0%, rgba(13, 13, 15, 0.7) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.pizza-orbit {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255, 107, 43, 0.15);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.r1 {
  width: 300px;
  height: 300px;
  top: 150px;
  left: 150px;
}

.r2 {
  width: 460px;
  height: 460px;
  top: 70px;
  left: 70px;
  animation-direction: reverse;
  animation-duration: 30s;
  border-color: rgba(255, 107, 43, 0.08);
}

.r3 {
  width: 600px;
  height: 600px;
  top: 0;
  left: 0;
  animation-duration: 45s;
  border-color: rgba(255, 107, 43, 0.05);
}

.pizza-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7rem;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(255, 107, 43, 0.4));
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -55%) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 120px 20px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 43, 0.12);
  border: 1px solid rgba(255, 107, 43, 0.3);
  color: var(--orange-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hide-mobile {
  display: inline;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(255, 107, 43, 0.4);
  transition: all var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 43, 0.5);
}

.btn-primary.large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
  background: var(--glass);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 28px;
  max-width: fit-content;
  backdrop-filter: blur(10px);
}

.stat {
  text-align: center;
  padding: 0 28px;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}

.stat span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

.stat small {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--glass-border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ===== SECTION BASE ===== */
.section {
  padding: 100px 0;
}

.section-label {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 60px;
  max-width: 600px;
}

/* ===== CARDÁPIO ===== */
.cardapio {
  background: var(--dark);
}

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

.menu-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 107, 43, 0.25);
}

.menu-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.menu-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 15, 0.7) 0%, transparent 60%);
}

.menu-info {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.menu-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.menu-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}

.menu-footer {
  margin-top: 16px;
}

.menu-tag {
  background: rgba(255, 107, 43, 0.12);
  border: 1px solid rgba(255, 107, 43, 0.25);
  color: var(--orange-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Card CTA (ver cardápio completo) */
.menu-card-cta {
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.1), rgba(245, 166, 35, 0.05));
  border-color: rgba(255, 107, 43, 0.25);
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.menu-cta-inner {
  text-align: center;
  padding: 32px 28px;
}

.menu-cta-inner h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.menu-cta-inner p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--dark-2);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.step-card:hover {
  border-color: rgba(255, 107, 43, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 107, 43, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.step-link {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
  font-size: 0.9rem;
}

.step-link:hover {
  color: var(--orange-light);
}

/* ===== PACKAGES ===== */
.packages {
  background: var(--dark);
}

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

.pkg-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

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

.pkg-card.featured {
  border-color: rgba(255, 107, 43, 0.4);
  box-shadow: 0 0 40px rgba(255, 107, 43, 0.1);
}

.pkg-ribbon {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--white);
  text-align: center;
  padding: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pkg-header {
  padding: 32px 28px 24px;
  text-align: center;
  position: relative;
}

.pkg-header.basic {
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.08), rgba(255, 107, 43, 0.03));
}

.pkg-header.premium {
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.15), rgba(245, 166, 35, 0.08));
}

.pkg-header.vip {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(255, 107, 43, 0.05));
}

.pkg-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 8px;
}

.pkg-emoji {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.pkg-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.pkg-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pkg-body {
  padding: 24px 28px 32px;
}

.pkg-price {
  margin-bottom: 24px;
}

.pkg-price small {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.pkg-price strong {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
}

.pkg-price strong span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pkg-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn-pkg {
  display: block;
  text-align: center;
  background: var(--dark-4);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 13px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  font-size: 0.9rem;
}

.btn-pkg:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-pkg.featured-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 107, 43, 0.35);
}

.btn-pkg.featured-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 43, 0.45);
}

.pkg-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

/* ===== DIFERENCIAIS ===== */
.diffs {
  background: var(--dark-2);
}

.diffs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.diff-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}

.diff-card:hover {
  background: var(--dark-4);
  border-color: rgba(255, 107, 43, 0.25);
  transform: translateY(-4px);
}

.diff-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.diff-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.diff-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.testi-stars {
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
}

.testi-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.testi-author small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--dark-2);
}

.cta-box {
  background: var(--dark-3);
  border: 1px solid rgba(255, 107, 43, 0.2);
  border-radius: 24px;
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: all var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp.large {
  padding: 18px 32px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 72px 0 32px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* Quando captador de leads está aberto */
body.lc-open .whatsapp-float {
  bottom: 150px;
}

body.lc-open #bp-chat-btn {
  bottom: 215px;
}

body.lc-open #bp-chat-panel {
  bottom: 285px;
}

.wf-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ===== MENU LOADING ===== */
.menu-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.menu-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255, 107, 43, 0.2);
  border-top-color: var(--orange);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  /* Mobile Menu Styles moved to index.html for production consistency */

  .nav-links a:hover {
    background: rgba(255, 107, 43, 0.1);
    color: var(--orange);
  }

  .btn-nav {
    margin-top: 30px;
    background: linear-gradient(135deg, var(--orange), #ff8c00);
    box-shadow: 0 10px 30px rgba(255, 107, 43, 0.3);
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }
}

.pizza-orbit {
  right: -60%;
  opacity: 0.4;
}


@media (max-width: 640px) {
  .hero-stats {
    gap: 0;
    padding: 16px 16px;
  }

  .stat {
    padding: 0 14px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .hide-mobile {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-box {
    padding: 48px 24px;
  }
}


/* End of styles */