:root {
  --background: #0a0a14;
  --foreground: #ffffff;
  --primary: #3b82f6;
  --accent: #93c5fd;
  --border: rgba(59, 130, 246, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.main-container {
  position: relative;
  min-height: 100vh;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Hero Section - Premium Layout */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 2rem;
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

/* Announcement Bar */
.announcement-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
  }

  50% {
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.3);
  }
}

.announcement-tag {
  background: linear-gradient(135deg, #ef4444, #f97316);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.announcement-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Main Content */
.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.headline-line {
  color: rgba(255, 255, 255, 0.95);
}

.headline-gradient {
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.headline-highlight {
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.3);
  }
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  line-height: 1.7;
}

.hero-subheadline strong {
  color: white;
}

.hero-subheadline s {
  color: rgba(255, 255, 255, 0.4);
}

.text-glow {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Trust Row */
.trust-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.5rem 0;
}

.trust-item {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.cta-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

.cta-icon {
  font-size: 1.5rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-main {
  font-size: 1.1rem;
}

.cta-sub {
  font-size: 0.75rem;
  opacity: 0.8;
}

.cta-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Stats Row */
.stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 1rem;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Hero Ghost */
.hero-ghost-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
  transition: transform 0.1s ease-out;
}

.hero-ghost-img {
  width: 350px;
  max-width: 60vw;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    gap: 1rem;
    padding: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .trust-row {
    gap: 1rem;
  }
}

.badge-container {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.badge-new {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: white;
  border-radius: 9999px;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
}

.title-white {
  background: linear-gradient(to bottom right, white, white, #e5e7eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-gradient {
  background: linear-gradient(to bottom right, var(--primary), var(--accent), #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 40rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 1.5rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Atualização para Hero Centralizado */
.hero-right {
  display: none;
}

.hero-left {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  justify-content: center;
}

.hero-buttons {
  justify-content: center;
  display: flex;
}

.stats-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  min-width: 100px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(96, 165, 250, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  margin-bottom: 1rem;
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
  }

  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
  }
}

.badge-icon {
  font-size: 1.3rem;
  animation: ghost-float 3s ease-in-out infinite;
}

@keyframes ghost-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.hero-badge .badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.1rem;
}

/* Button improvements */
.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

@keyframes btn-glow {

  0%,
  100% {
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
  }

  50% {
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
  }
}

.ghost-container {
  position: relative;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 1;
  transition: opacity 0.3s ease;
}

.ghost-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-blob 3s ease-in-out infinite;
}

.ghost-glow-1 {
  background: linear-gradient(to right, var(--primary), var(--accent));
  opacity: 0.2;
}

.ghost-glow-2 {
  inset: 1rem;
  background: linear-gradient(to right, var(--accent), var(--primary));
  opacity: 0.2;
  animation-delay: 0.5s;
}

.ghost-image {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  /* Adicionando animação de flutuação ao fantasma */
  animation: float 6s ease-in-out infinite, float-glow 3s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease;
}

.floating-card-right {
  top: 25%;
  right: 2rem;
}

.floating-card-left {
  bottom: 33%;
  left: 2rem;
  animation: pulse-blob 3s ease-in-out infinite;
}

.card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.card-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Horizontal Scroll Section */
.horizontal-scroll-section {
  position: relative;
  padding: 8rem 1rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(30, 58, 138, 0.2), transparent);
  pointer-events: none;
}

.horizontal-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #3b82f6, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-card {
  min-width: 400px;
  height: 300px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.scroll-card:hover {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.scroll-card:hover .card-overlay {
  opacity: 0.7;
}

.card-content {
  position: relative;
  z-index: 10;
}

.card-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.scroll-card .card-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.card-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

.card-line {
  position: relative;
  z-index: 10;
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), transparent);
  border-radius: 9999px;
}

/* Features Section */
.features-section {
  padding: 4rem 1rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(59, 130, 246, 0.4);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
  padding: 8rem 1rem;
  text-align: center;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, white, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}

/* Tools Section */
.tools-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, transparent, rgba(30, 58, 138, 0.1), transparent);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.tool-card {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-card:hover {
  transform: translateY(-0.5rem);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
}

.tool-icon {
  font-size: 3rem;
  line-height: 1;
}

/* Adicionando estilos para imagens de favicon */
.tool-icon-img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: 0.5rem;
}

.tool-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.tool-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
}

.tool-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  color: white;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.stats-grid {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 1rem;
}

.pricing-card {
  max-width: 480px;
  margin: 1.5rem auto 0;
  padding: 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--primary);
  border-radius: 1.5rem;
  text-align: center;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.currency {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.period {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
}

.pricing-features li {
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-guarantee {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Section Updates */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border);
  padding: 4rem 1rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .floating-card-right,
  .floating-card-left {
    display: none;
  }

  .scroll-card {
    min-width: 300px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* ========== LOGOS CAROUSEL ========== */
.logos-section {
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.03), transparent);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logos-track {
  display: flex;
  animation: scroll-logos 120s linear infinite;
  width: max-content;
}

.logos-slide {
  display: flex;
  gap: 1.5rem;
  padding: 0 0.75rem;
}

.tool-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 60px;
}

.tool-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  opacity: 0.85;
  transition: all 0.3s ease;
  filter: grayscale(20%);
}

.tool-logo span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  white-space: nowrap;
  max-width: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tool-logo:hover img {
  opacity: 1;
  transform: scale(1.3);
  filter: grayscale(0%);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.tool-logo:hover span {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-logos-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.logos-track-reverse {
  display: flex;
  animation: scroll-logos-reverse 120s linear infinite;
  width: max-content;
  margin-top: 1rem;
}

/* ========== COUNTDOWN TIMER ========== */
.timer-section {
  padding: 4rem 1rem;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.05), transparent);
}

.timer-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.timer-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  min-width: 90px;
}

.time-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.time-block .time-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.time-separator {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
}

.timer-cta {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.timer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
  .time-block {
    min-width: 70px;
    padding: 1rem;
  }

  .time-value {
    font-size: 1.8rem;
  }

  .time-separator {
    font-size: 1.5rem;
  }
}

/* ========== COMPACT TIMER ========== */
.compact-timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  margin-top: 1rem;
}

.compact-timer .timer-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.compact-timer .timer-digits {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3b82f6;
  font-family: monospace;
}

/* ========== OFFER TIMER BANNER (Blue Theme) ========== */
.offer-timer-banner {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  text-align: center;
}

.offer-title {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 0.4rem 0;
  letter-spacing: 0.05em;
}

.offer-countdown {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem;
}

.offer-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.offer-digits {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.offer-time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.offer-unit {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-top: 4px;
}

/* Glow Effect for Pricing Card */
.pricing-card.glow-effect {
  box-shadow:
    0 0 40px rgba(59, 130, 246, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* ========== FOOTER REDESIGNED ========== */
.footer {
  background: transparent;
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  z-index: 20;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.3));
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0.6rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #3b82f6;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.footer-copyright p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-logo-img {
    max-width: 200px;
  }

  .footer-links {
    gap: 0.3rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }
}

/* Hero Top Logo */
.hero-top-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.top-logo-img {
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(59, 130, 246, 0.4));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.social-icon:hover {
  background: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
  .top-logo-img {
    max-width: 220px;
  }

  .footer-social {
    gap: 0.8rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ========== BENEFITS SECTION - PREMIUM ========== */
.benefits-section {
  padding: 2rem 1.5rem;
  background: transparent;
}

.benefits-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.benefit-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-text strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.benefit-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.benefit-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.4), transparent);
}

@media (max-width: 768px) {
  .benefits-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .benefit-divider {
    display: none;
  }
}

/* ========== CTA BUTTONS UPPERCASE ========== */
.btn-primary,
.cta-primary,
.btn-large {
  text-transform: uppercase !important;
  letter-spacing: 1px;
  font-weight: 700 !important;
}

/* ========== HERO TITLE MINÚSCULO ========== */
.hero-headline {
  text-transform: none;
}

.headline-line,
.headline-gradient {
  font-style: normal;
  text-transform: uppercase;
}

/* Section Titles - MAIÚSCULO */
.section-title {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-title {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== FINAL CTA SECTION ========== */
.final-cta-section {
  padding: 4rem 1.5rem;
  text-align: center;
  background: transparent;
}

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

.final-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.final-cta-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.final-cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 40px rgba(30, 64, 175, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.4);
  transition: all 0.3s ease;
}

.final-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(30, 64, 175, 0.5);
}

@media (max-width: 768px) {
  .final-cta-title {
    font-size: 1.5rem;
  }

  .final-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ========== PRICING CARD - DESTAQUE SUTIL ========== */
.pricing-card {
  position: relative;
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
  background: #0a0a0f !important;
}

/* Offer Timer Banner - Destaque Simples */
.offer-timer-banner {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(96, 165, 250, 0.5);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

/* Efeito de brilho passando */
.offer-timer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: offerShine 3s ease-in-out infinite;
}

@keyframes offerShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 150%;
  }
}

.offer-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.offer-countdown {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 0.8rem;
  margin-top: 0.8rem;
}

.offer-digits {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

/* ========== CTA BUTTONS - EFEITO SHINE ========== */
.btn-primary,
.final-cta-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
  border: 1px solid rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 15px rgba(30, 64, 175, 0.3);
}

.btn-primary::before,
.final-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: buttonShine 3s ease-in-out infinite;
}

@keyframes buttonShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 150%;
  }
}

/* Borda azul circulando */
.btn-primary:hover,
.final-cta-button:hover {
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

/* CTA Primary do Hero - Azul Escuro */
.cta-primary {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
  border: 1px solid rgba(96, 165, 250, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: buttonShine 3s ease-in-out infinite;
}

.cta-primary:hover {
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.5);
}

/* ========== MOBILE IMPROVEMENTS ========== */
@media (max-width: 768px) {

  /* Hero - mais compacto */
  .hero-section {
    padding: 1rem 1rem;
    min-height: auto;
  }

  .hero-wrapper {
    gap: 1rem;
  }

  .hero-top-logo {
    width: 200px;
    margin-bottom: 0;
  }

  .hero-ghost-container {
    display: none;
  }

  .hero-headline {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-top: 0.5rem;
    display: block;
  }

  .headline-line,
  .headline-gradient {
    display: inline;
  }

  .headline-gradient {
    font-size: 1.8rem;
  }

  /* Lista de ferramentas - grid 2 colunas */
  .tools-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
  }

  .tool-item {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }

  .tool-item img {
    width: 20px;
    height: 20px;
  }

  /* Pricing card - melhor formatação */
  .pricing-card {
    padding: 1rem 0.8rem;
    margin: 0 0.3rem;
    border-radius: 12px;
  }

  .pricing-section {
    padding: 1rem 0.5rem;
  }

  .pricing-features {
    grid-template-columns: 1fr !important;
    gap: 0.3rem;
  }

  .pricing-feature {
    font-size: 0.8rem;
    padding: 0.4rem;
  }

  .pricing-title {
    font-size: 1.1rem;
  }

  .pricing-amount {
    font-size: 2.5rem;
  }

  /* Offer banner - mais compacto */
  .offer-timer-banner {
    padding: 0.8rem;
    margin: 0 0.3rem;
  }

  /* Botão menor no pricing */
  .pricing-card .btn-primary,
  .pricing-card .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Scroll margin para mostrar toda a seção */
  #pricing-section {
    scroll-margin-top: -50px;
  }

  .offer-title {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .offer-digits {
    font-size: 1.4rem;
  }

  /* Benefícios */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* CTA final */
  .final-cta-title {
    font-size: 1.3rem;
  }

  .final-cta-button {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  /* Seções - menos padding */
  section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  /* Footer - mais compacto */
  .footer {
    padding: 1.5rem 1rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-bottom {
    padding-top: 1rem;
  }

  .footer-social {
    margin-top: 1rem;
  }

  /* Tools pills - grid 2 colunas */
  .tools-pills-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 0.5rem;
  }

  .tool-pill {
    min-width: auto;
    padding: 8px 12px;
    font-size: 0.7rem;
    gap: 6px;
  }

  .tool-icon-sm {
    width: 16px;
    height: 16px;
  }

  /* Centraliza último item se estiver sozinho */
  .tool-pill:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 50%;
  }
}