* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #000000;
  color: #fff;
}

.fake-content {
  padding-top: 220px; /* espaço do header */
}

.fake-content section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 120px;
}

.fake-content h1,
.fake-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #ffcc66; /* tom pizza */
}

.fake-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}



html {
  scroll-behavior: smooth;
}



/* ================= BOTÃO FLUTUANTE ================= */
.pedido-float {
  position: fixed;
  right: 28px;
  bottom: 48px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px 22px;
  border-radius: 50px;

  background: #000000;
  color: #ffcc66;

  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    0 0 0 0 rgba(255,204,102,0.6);

  animation: pulseGlow 3s infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

/* ícone */
.pedido-icon {
  font-size: 22px;
  line-height: 1;
}

/* texto */
.pedido-text {
  font-size: 14px;
  text-transform: uppercase;
}

/* hover */
.pedido-float:hover {
  transform: translateY(-6px);
  background: #ffcc66;
  color: #000000;

  box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    0 0 18px rgba(255,204,102,0.75);
}

/* ================= ANIMAÇÃO SUAVE ================= */
@keyframes pulseGlow {
  0% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      0 0 0 0 rgba(255,204,102,0.6);
  }
  70% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      0 0 0 14px rgba(255,204,102,0);
  }
  100% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      0 0 0 0 rgba(255,204,102,0);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .pedido-float {
    right: 18px;
    bottom: 18px;
    padding: 14px 18px;
  }

  .pedido-text {
    font-size: 13px;
  }
}
