/* ==========================================================================
   UNLIMITED ADS — CYBER SALES LANDING PAGE (PURPLE & BLACK ELITE EDITION)
   Developed for O COPY | Pure Black (#000000) + Neon Purple (#9900ff)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,800;1,900&family=Syne:wght@700;800;900&family=Permanent+Marker&display=swap');

:root {
  --bg-black: #000000;
  --purple-neon: #9900ff;
  --purple-glow: rgba(153, 0, 255, 0.65);
  --purple-light: #b026ff;
  --purple-bright: #c084fc;
  --purple-dark: #0a0414;
  --text-white: #ffffff;
  --text-muted: #a1a1aa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* GSAP Scroll Reveal Initial Hidden State */
.scroll-reveal {
  opacity: 0;
  transform: translateY(45px);
  will-change: opacity, transform;
}




/* Background Cyber Radial Aura Tunnel */
.cyber-tunnel-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 50% 20%, rgba(153, 0, 255, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(176, 38, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(153, 0, 255, 0.25) 0%, transparent 50%),
    #000000;
}

/* Custom Typography & Grunge Brush Title */
.font-marker {
  font-family: 'Permanent Marker', cursive;
}

.font-display {
  font-family: 'Syne', sans-serif;
}

.glow-purple {
  text-shadow: 0 0 25px rgba(153, 0, 255, 0.9), 0 0 45px rgba(176, 38, 255, 0.6);
}

/* High Contrast Neon Purple Primary Button */
.btn-cyber-purple {
  background: linear-gradient(135deg, #9900ff 0%, #7000cc 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 52px;
  padding: 0 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 30px rgba(153, 0, 255, 0.65), 0 0 10px rgba(176, 38, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-cyber-purple:hover {
  background: linear-gradient(135deg, #b026ff 0%, #9900ff 100%);
  box-shadow: 0 0 50px rgba(176, 38, 255, 0.95), 0 0 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Secondary Cyber Outline Button */
.btn-cyber-outline {
  background: rgba(12, 6, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  height: 52px;
  padding: 0 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(153, 0, 255, 0.5);
  box-shadow: 0 0 20px rgba(153, 0, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-cyber-outline:hover {
  background: rgba(153, 0, 255, 0.25);
  border-color: #b026ff;
  box-shadow: 0 0 35px rgba(153, 0, 255, 0.6);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Floating Navbar Hover Link Animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #9900ff, #b026ff);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px #b026ff;
}

.nav-link:hover::after {
  width: 100%;
}

/* Navbar Shrink & Elevation on Scroll */
.navbar-scrolled .navbar-floating-container {
  padding-top: 8px;
  padding-bottom: 8px;
  border-color: rgba(176, 38, 255, 0.7);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.95), 0 0 35px rgba(153, 0, 255, 0.4);
}



/* ==========================================================================
   UTMIFY SALES NOTIFICATION TOAST & HERO SHOWCASE STYLES
   ========================================================================== */

/* UTMify Branding Badge Icon */
.utmify-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #100624 0%, #220638 100%);
  border: 1px solid rgba(176, 38, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(153, 0, 255, 0.4);
  flex-shrink: 0;
}

/* Official UTMify Sale Notification Toast Wrapper — Permanent 100% Opaque Visibility */
.utmify-toast-card {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 40 !important;
  position: absolute !important;
  pointer-events: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.9));
  transition: filter 0.3s ease;
}

.utmify-toast-card:hover {
  filter: drop-shadow(0 20px 40px rgba(176, 38, 255, 0.55));
}

/* Pulsing Live Dot */
.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b026ff;
  box-shadow: 0 0 10px #b026ff;
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(176, 38, 255, 0.7);
  }
  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(176, 38, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(176, 38, 255, 0);
  }
}

/* Kinetic Shimmer & Gradient Text */
.text-shimmer {
  background: linear-gradient(90deg, #ffffff 0%, #c084fc 40%, #ffffff 80%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer-text-flow 4s linear infinite;
}

@keyframes shimmer-text-flow {
  to {
    background-position: 200% center;
  }
}

/* Hero Asymmetrical Stage Glass Panel */
.hero-stage-panel {
  background: linear-gradient(145deg, rgba(16, 8, 32, 0.95) 0%, rgba(8, 4, 18, 0.98) 100%);
  border: 1px solid rgba(153, 0, 255, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(153, 0, 255, 0.3);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

/* Grid Cyber Overlay Pattern */
.cyber-grid-pattern {
  background-image: 
    linear-gradient(rgba(153, 0, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 0, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Flowchart Step Boxes (Connected with Neon Purple Arrows) */
.flowchart-box {
  background: rgba(12, 6, 22, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(153, 0, 255, 0.5);
  box-shadow: 0 0 30px rgba(153, 0, 255, 0.2);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.flowchart-box:hover {
  border-color: #b026ff;
  box-shadow: 0 0 45px rgba(153, 0, 255, 0.45);
}

.flowchart-connector {
  position: absolute;
  width: 2px;
  height: 40px;
  background: #9900ff;
  box-shadow: 0 0 15px #9900ff, 0 0 25px #b026ff;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  z-index: 10;
}

.flowchart-connector::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #9900ff;
}

/* Lifestyle Image Cards Stack (Mentor Showcase) */
.lifestyle-stack-item {
  border: 2px solid rgba(153, 0, 255, 0.45);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(12, 6, 22, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  transition: all 0.4s ease;
}

.lifestyle-stack-item:hover {
  border-color: #b026ff;
  transform: scale(1.04) rotate(1deg);
  box-shadow: 0 15px 40px rgba(153, 0, 255, 0.5);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  /* Only make page content CTA buttons 100% width, never the navbar button */
  .hero-reveal .btn-cyber-purple,
  .hero-reveal .btn-cyber-outline,
  .plan-card .btn-cyber-purple,
  .plan-card .btn-cyber-outline,
  .cta-banner-card .btn-cyber-purple {
    width: 100%;
    padding: 16px 20px;
  }
}

/* Floating Navbar Safe Area & Responsive Constraints */
#main-navbar {
  top: max(0.75rem, env(safe-area-inset-top, 0.75rem));
}

#main-navbar .navbar-cta-btn,
#main-navbar .btn-cyber-purple {
  width: auto !important;
  box-shadow: 0 0 20px rgba(153, 0, 255, 0.6);
  flex-shrink: 0;
}

@media (max-width: 359px) {
  #main-navbar {
    width: 96% !important;
  }
  .navbar-floating-container {
    padding-left: 0.6rem !important;
    padding-right: 0.6rem !important;
    gap: 0.35rem !important;
  }
  #main-navbar .navbar-cta-btn,
  #main-navbar .btn-cyber-purple {
    height: 32px !important;
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
    font-size: 10px !important;
    gap: 4px !important;
  }
}

/* Smooth Anchor Scroll Margin Offset for Sections */
#planos, #estrutura, #faq, #feedbacks {
  scroll-margin-top: 100px;
}

/* ==========================================================================
   INTERACTIVE KINETIC BRAND PILLARS (AWWWARDS EDITORIAL SHOWCASE - GPU ACCELERATED)
   ========================================================================== */
.brand-pillars-container {
  user-select: none;
  min-height: 360px;
  contain: layout style;
}

.brand-pillar {
  flex: 1 1 0%;
  min-width: 68px;
  transition: flex-grow 0.5s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: flex-grow;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.brand-pillar.active {
  flex-grow: 4.5;
  background: linear-gradient(180deg, rgba(22, 8, 52, 0.96) 0%, rgba(11, 3, 28, 0.96) 50%, rgba(3, 1, 10, 0.98) 100%);
  border-color: rgba(153, 0, 255, 0.55);
  box-shadow: 0 20px 60px -15px rgba(153, 0, 255, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.25);
}

.brand-pillar:not(.active) {
  flex-grow: 0.85;
  background: linear-gradient(180deg, rgba(12, 4, 30, 0.5) 0%, rgba(6, 2, 16, 0.7) 100%);
  border-color: rgba(39, 39, 42, 0.7);
}

.brand-pillar:not(.active):hover {
  flex-grow: 1.15;
  background: linear-gradient(180deg, rgba(153, 0, 255, 0.15) 0%, rgba(12, 4, 30, 0.8) 100%);
  border-color: rgba(153, 0, 255, 0.45);
  box-shadow: 0 10px 30px -10px rgba(153, 0, 255, 0.2);
}

.pillar-active-content {
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: opacity, transform;
}

.pillar-collapsed-content {
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.brand-pillar.active .pillar-active-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.brand-pillar:not(.active) .pillar-active-content {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.brand-pillar.active .pillar-collapsed-content {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.brand-pillar:not(.active) .pillar-collapsed-content {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.pillar-progress-bar {
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}

.vertical-brand-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .brand-pillars-container {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .brand-mobile-container {
    display: none !important;
  }
}


