/* ---- MODERN BUTTONS ---- */
.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%) !important;
  background-size: 200% 200% !important;
  color: #000 !important;
  font-family: var(--font-display);
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 18px 42px !important;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.35) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  letter-spacing: 1px !important;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5), 0 0 30px rgba(245, 158, 11, 0.2) !important;
  background-position: 100% 100% !important;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary.large {
  padding: 22px 48px !important;
  font-size: 1.05rem !important;
}

.btn-primary.pulse {
  animation: btn-pulse-glow 2s ease-in-out infinite;
}

@keyframes btn-pulse-glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(245, 158, 11, 0.35); }
  50% { box-shadow: 0 8px 40px rgba(245, 158, 11, 0.6), 0 0 20px rgba(245, 158, 11, 0.3); }
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600 !important;
  border-radius: 100px !important;
  padding: 14px 28px !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  color: #ffffff;
  border-color: rgba(6, 182, 212, 0.5);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%) !important;
  transform: translateY(-2px);
}

/* ---- BADGES ---- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.05) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 166, 35, 0.3) !important;
  color: var(--yellow-accent) !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.section-badge.bad, .section-badge.success {
  background: rgba(245, 166, 35, 0.05) !important;
  border-color: rgba(245, 166, 35, 0.5) !important;
  color: var(--yellow-accent) !important;
}

.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ===================================================
   FIXED CTA MOBILE (OURO VENDA)
   =================================================== */
.fixed-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(15, 23, 42, 1) 20%, rgba(15, 23, 42, 0) 100%);
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.btn-fixed-buy {
  background: #F5A623 !important;
  color: #000 !important;
  width: 100%;
  display: block;
  text-align: center;
  padding: 18px;
  border-radius: 100px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
  animation: cta-pulse 2s infinite;
}

/* ===================================================
   WHATSAPP FLOATING CTA
   =================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 14px 20px;
  border-radius: 60px;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.45);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  animation: float-bounce 3s ease-in-out infinite, whatsapp-pulse 2s infinite;
  transition: all 0.3s ease;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.whatsapp-float-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .fixed-mobile-cta {
    display: block !important;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
  }

  .fixed-mobile-cta.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
  }

  .whatsapp-float-btn {
    bottom: 90px;
    right: 16px;
    font-size: 0;
    padding: 16px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
    gap: 0;
  }

  .whatsapp-float-btn svg {
    width: 24px;
    height: 24px;
    margin: 0;
  }

  .whatsapp-float-btn::before {
    display: none;
  }

  .btn-primary {
    padding: 16px 28px !important;
  }

  .btn-primary.large {
    padding: 18px 32px !important;
  }
}

/* ===================================================


/* Subtexto para botões (como a versão oficial) */
.btn-subtext {
  display: block;
  font-size: 11px !important;
  font-weight: 500 !important;
  opacity: 0.9;
  margin-top: 5px;
  letter-spacing: 0.5px;
  text-transform: none;
}
