/* assets/css/global.css */
:root {
  --primary: #0066FF;
  --primary-dark: #0052D4;
  --secondary: #8A2BE2;
  --accent: #00D4AA;
  --text: #1A1A1A;
  --text-light: #666666;
  --text-lighter: #888888;
  --bg: #FFFFFF;
  --bg-secondary: #F8FAFF;
  --bg-dark: #0A0A0F;
  --card-bg: #FFFFFF;
  --border: #EAEEF5;
  --shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
  --shadow-heavy: 0 20px 50px rgba(0, 102, 255, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.btn-large {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25);
  position: relative;
  overflow: hidden;
}

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

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

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.35);
}

.hero-cta .btn-large {
  animation: cta-reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) both,
             cta-beacon 1.8s ease-in-out 1.1s 2;
  will-change: transform, box-shadow, opacity;
}

.hero-cta .btn-large {
  animation-delay: 0.25s, 1.2s;
}

.final-cta {
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  will-change: transform, box-shadow, opacity;
}

.final-cta.cta-visible {
  animation: cta-reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) both,
             cta-beacon 1.8s ease-in-out 1.1s 2;
  animation-delay: 0.25s, 1.2s;
}

@keyframes cta-reveal {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    box-shadow: 0 0 0 rgba(0, 102, 255, 0);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 36px rgba(0, 102, 255, 0.26);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25);
  }
}

@keyframes cta-beacon {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25);
  }
  50% {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 34px rgba(0, 102, 255, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta .btn-large,
  .final-cta {
    animation: none;
  }

  .final-cta {
    opacity: 1;
    transform: none;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

/* assets/css/landing.css */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(234, 238, 245, 0.6);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

 .header .logo-image {
   width: 52px;
   height: 52px;
  object-fit: contain;
  display: block;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-mark.small {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.wave {
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.logo h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
   color: var(--primary);
}

.logo-dot {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

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

.btn-login {
  color: var(--primary);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-login:hover {
  background: rgba(0, 102, 255, 0.05);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
}

.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A0A0F 0%, #1A1A2E 100%);
  color: white;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0) 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
  position: relative;
}

.mockup-container {
  position: relative;
  height: 500px;
}

.mockup-desktop {
  position: absolute;
  right: 0;
  top: 0;
  width: 600px;
  height: auto;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: #0A0A0F;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.screen-content {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dashboard-preview {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(138, 43, 226, 0.1));
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.dashboard-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mockup-base {
  position: absolute;
  bottom: -10px;
  left: 50px;
  right: 50px;
  height: 20px;
  background: #151522;
  border-radius: 0 0 10px 10px;
}

.mockup-mobile {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 260px;
  height: auto;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.25));
}

.mobile-screen {
  width: 100%;
  height: 100%;
  background: #0A0A0F;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.mobile-content {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.app-preview {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.1));
  border-radius: 12px;
}

.floating-elements {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
  animation: float 5s ease-in-out infinite;
}

.float-card i {
  color: var(--primary);
}

.card-1 {
  top: 50px;
  left: -40px;
  animation-delay: 0.5s;
}

.card-2 {
  bottom: 100px;
  right: -30px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.features {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(0, 102, 255, 0.2);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transition: height 0.5s ease;
}

.card:hover::before {
  height: 100%;
}

.card-icon {
  margin-bottom: 24px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(138, 43, 226, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.card-text {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.pricing {
  padding: 120px 0;
  background: var(--bg);
}

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

.plan-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border: 1px solid var(--primary);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

.plan-header {
  text-align: center;
  margin-bottom: 32px;
}

.plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-desc {
  color: var(--text-light);
  font-size: 16px;
}

.plan-price {
  text-align: center;
  margin-bottom: 40px;
}

.currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  vertical-align: top;
}

.amount {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 18px;
  color: var(--text-light);
}

.plan-features {
  list-style: none;
  margin-bottom: 48px;
  flex-grow: 1;
}

.plan-features li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features i {
  color: var(--accent);
}

.btn-plan {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.btn-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.featured-btn {
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.pricing-note {
  background: rgba(0, 102, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-note i {
  color: var(--primary);
  font-size: 20px;
}

.testimonials {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.testimonial-rating {
  color: #FFC107;
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(138, 43, 226, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
}

.author-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.author-info p {
  color: var(--text-light);
  font-size: 14px;
}

.cta-final {
  padding: 120px 0;
  background: linear-gradient(135deg, #0A0A0F 0%, #1A1A2E 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  line-height: 1.6;
}

.final-cta {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  margin-bottom: 24px;
}

.cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer {
  background: var(--bg-dark);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  transition: var(--transition);
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .mockup-container {
    height: 400px;
  }
  
  .mockup-desktop {
    width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .mockup-mobile {
    left: 20%;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .hero-visual {
    display: none !important;
  }
  
  .hero-grid {
    flex-direction: column;
  }
  
  .mockup-container {
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
  }
  
  .mockup-desktop {
    position: relative !important;
    width: 200px;
    height: 180px;
    right: auto !important;
    top: auto !important;
    left: auto !important;
    z-index: 1;
  }
  
  .mockup-mobile {
    position: relative !important;
    width: 110px;
    height: 220px;
    left: auto !important;
    bottom: auto !important;
    z-index: 1;
  }

  .mockup-base {
    display: none;
  }

  .floating-elements {
    display: none;
  }
  
  .plan-card.featured {
    transform: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .btn-large {
    padding: 16px 24px;
    font-size: 16px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .mockup-desktop {
    width: 140px !important;
    height: 120px !important;
  }

  .mockup-mobile {
    width: 80px !important;
    height: 160px !important;
  }

  .mockup-container {
    gap: 15px !important;
  }
}