@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-blue: #2563eb;
  --primary-dark: #0f172a;
  --accent-wa: #25D366;
  --accent-wa-hover: #1ebd5a;
  --accent-wa-dark: #075e54;
  --bg-light: #ffffff;
  --bg-soft: #f8fafc;
  --bg-tint: #f0fdf4;
  --border-light: #e2e8f0;
  --text-main: #0f172a;
  --text-muted: #475569;
}

* {
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  background-color: #ffffff;
  color: #0f172a;
  -webkit-tap-highlight-color: transparent;
}

/* Mobile input auto-zoom prevention */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #25D366;
}

/* Clean Hero Background */
.hero-clean-bg {
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 40%),
              radial-gradient(circle at 90% 10%, rgba(37, 211, 102, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 50% 90%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
              #ffffff;
}

/* Clean Card Styles */
.card-clean {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-clean:hover {
  border-color: #86efac;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1), 0 8px 10px -6px rgba(16, 185, 129, 0.08);
}

/* Pulse animation */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.pulse-wa {
  animation: pulse-glow 2s infinite;
}

/* Video Wrapper 16:9 */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Gradient Texts */
.text-gradient-wa {
  background: linear-gradient(135deg, #16a34a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #2563eb 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* High Converting CTA Button */
.btn-cta-primary {
  background: linear-gradient(135deg, #25D366 0%, #15803d 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #22c55e 0%, #166534 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 25px -5px rgba(37, 211, 102, 0.5);
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  animation: pulse-glow 2.5s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: #20bd5a;
}

/* Sticky Mobile Bottom Bar */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e2e8f0;
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .floating-wa-btn {
    bottom: 74px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}
