/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Variáveis CSS */
:root {
  --primary-color: #6366f1;
  --primary-hover: #5855eb;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --bg-primary: #000000;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --border-color: #27272a;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --shadow-primary: 0 20px 25px -5px rgba(99, 102, 241, 0.1),
    0 10px 10px -5px rgba(99, 102, 241, 0.04);
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animated Particles Background */
@keyframes particleFloat {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.6;
    transform: translateY(-20px) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-40px) scale(1.1);
  }
  90% {
    opacity: 0.4;
    transform: translateY(-60px) scale(0.9);
  }
}

.particles-background {
  position: relative;
  overflow: hidden;
}

.particles-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      2px 2px at 20% 30%,
      rgba(139, 92, 246, 0.45),
      transparent
    ),
    radial-gradient(2px 2px at 60% 70%, rgba(139, 92, 246, 0.35), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(139, 92, 246, 0.3), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(139, 92, 246, 0.4), transparent),
    radial-gradient(2px 2px at 90% 40%, rgba(139, 92, 246, 0.35), transparent),
    radial-gradient(1px 1px at 33% 60%, rgba(139, 92, 246, 0.3), transparent),
    radial-gradient(2px 2px at 10% 80%, rgba(139, 92, 246, 0.4), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(139, 92, 246, 0.35), transparent),
    radial-gradient(2px 2px at 40% 90%, rgba(139, 92, 246, 0.3), transparent),
    radial-gradient(1px 1px at 15% 50%, rgba(139, 92, 246, 0.4), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 25% 25%,
    75% 75%, 10% 90%, 90% 10%, 30% 70%;
  animation: particleMove 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes particleMove {
  0%,
  100% {
    background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%, 25% 25%,
      75% 75%, 10% 90%, 90% 10%, 30% 70%;
    opacity: 0.45;
  }
  25% {
    background-position: 10% 10%, 90% 10%, 60% 60%, 10% 90%, 90% 90%, 35% 35%,
      65% 65%, 20% 80%, 80% 20%, 40% 60%;
    opacity: 0.65;
  }
  50% {
    background-position: 20% 20%, 80% 20%, 70% 70%, 20% 80%, 80% 80%, 45% 45%,
      55% 55%, 30% 70%, 70% 30%, 50% 50%;
    opacity: 0.55;
  }
  75% {
    background-position: 15% 15%, 85% 15%, 65% 65%, 15% 85%, 85% 85%, 40% 40%,
      60% 60%, 25% 75%, 75% 25%, 45% 55%;
    opacity: 0.75;
  }
}

.particles-background > * {
  position: relative;
  z-index: 1;
}

/* Background 3D */
/* Global Background */
body {
  background: #000000;
  position: relative;
}

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

/* Features Section */
.features {
  padding: 90px 0;
  background: transparent;
  position: relative;
}

.features .container {
  position: relative;
}

/* Floating Logo */
.floating-logo {
  position: absolute;
  bottom: -200px;
  left: 20px;
  z-index: 10;
  animation: floatLogo 6s ease-in-out infinite;
}

.logo-image {
  width: 120px;
  height: 120px;
  opacity: 0.7;
  filter: drop-shadow(0 10px 20px rgba(161, 90, 254, 0.3));
  transition: all 0.3s ease;
}

.logo-image:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 15px 30px rgba(161, 90, 254, 0.5));
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

.logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link.cta-nav {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-text {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line {
  display: inline;
}

.title-line.highlight {
  background: linear-gradient(135deg, #a15afe 0%, #ec91ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 8px;
}

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-primary {
  background: linear-gradient(135deg, #a15afe 0%, #ec91ff 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(161, 90, 254, 0.1),
    0 10px 10px -5px rgba(161, 90, 254, 0.04);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(161, 90, 254, 0.25);
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #a15afe;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-img {
  width: 350px;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: auto;
  opacity: 1 !important;
  visibility: visible;
  min-width: 80px;
  min-height: 50px;
  display: block !important;
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.floating-card.card-1 {
  top: 10%;
  right: -80px;
  animation-delay: 0s;
  background: rgba(161, 90, 254, 0.2);
  border-color: rgba(161, 90, 254, 0.44);
}

.floating-card.card-2 {
  bottom: 20%;
  left: -80px;
  animation-delay: 1.5s;
  background: rgba(161, 90, 254, 0.2);
  border-color: rgba(161, 90, 254, 0.6);
}

.floating-card.card-3 {
  top: 40%;
  right: -90px;
  animation-delay: 3s;
  background: rgba(161, 90, 254, 0.2);
  border-color: rgba(161, 90, 254, 0.6);
}

.floating-card.card-4 {
  top: 30%;
  left: -90px;
  animation-delay: 4.5s;
  background: rgba(161, 90, 254, 0.2);
  border-color: rgba(161, 90, 254, 0.6);
}

.floating-card.card-5 {
  bottom: 10%;
  right: -70px;
  animation-delay: 6s;
  background: rgba(161, 90, 254, 0.2);
  border-color: rgba(161, 90, 254, 0.6);
}

.card-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 1.2;
}

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

/* Section Styles */
section {
  padding: 100px 0;
}

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

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Financeiro Section */
.financeiro-section {
  padding: 10px 0;
  background: transparent;
}

.financeiro-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
}

.financeiro-section .section-content {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-text {
  z-index: 2;
}

.section-badge {
  display: inline-block;
  background: rgba(161, 90, 254, 0.1);
  border: 1px solid rgba(161, 90, 254, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-text {
  color: #a15afe;
  font-size: 14px;
  font-weight: 600;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line {
  display: inline;
}

.title-line.highlight {
  background: linear-gradient(135deg, #a15afe 0%, #ec91ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 8px;
}

.section-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.feature-list {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(161, 90, 254, 0.05);
  border-color: rgba(161, 90, 254, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 24px;
  margin-top: 4px;
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.content-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mockup {
  position: relative;
  z-index: 2;
}

.dashboard-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Dashboard Container */
.dashboard-container {
  background: transparent;
  border-radius: 15px;
  padding: 30px;
  box-shadow: none;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.dashboard-header h3 {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.dashboard-controls {
  display: flex;
  gap: 15px;
}

.period-selector {
  background: rgba(161, 90, 254, 0.1);
  border: 1px solid rgba(161, 90, 254, 0.3);
  color: #a15afe;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* Metrics Grid - Removido */

/* Charts Grid */
.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.chart-container {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.chart-container.full-width {
  grid-column: 1 / -1;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chart-header h4 {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.chart-legend {
  display: flex;
  gap: 15px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

/* Financial Content Layout */
.financial-content {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 100px;
  min-height: 100px;
  width: 100%;
  padding-right: 0;
}

.financial-description {
  flex: 1.2;
  max-width: 600px;
  padding-right: 20px;
  padding-left: 20px;
}

.financial-description .section-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

.financial-description .section-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.financial-chart {
  flex: 1;
  max-width: none;
  min-width: 450px;
  margin-right: 0;
  padding-right: 0;
  margin-left: auto;
}

.financial-chart .feature-chart-container {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-right: 0;
  width: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.financial-chart .feature-chart-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(161, 90, 254, 0.15);
  border-color: rgba(161, 90, 254, 0.4);
}

.financial-chart .feature-chart-header {
  text-align: center;
  margin-bottom: 30px;
}

.financial-chart .feature-chart-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.financial-chart .feature-chart-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.financial-chart .chart-wrapper {
  height: 450px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Charts Section */
.charts-section {
  padding: 10px 0;
  background: transparent;
}

.charts-content {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 100px;
  min-height: 100px;
  width: 100%;
  padding-right: 0;
}

.chart-left {
  flex: 1;
  max-width: none;
  min-width: 450px;
  margin-right: 0;
  padding-right: 0;
  margin-left: auto;
}

.charts-text {
  flex: 1.2;
  max-width: 600px;
  padding-right: 20px;
  padding-left: 20px;
}

.charts-text .section-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  text-align: left;
}

.charts-text .section-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
  text-align: left;
}

/* Charts Rows */
.charts-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px 0;
  align-items: stretch;
}

.charts-row-single {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.charts-row-single .feature-chart-container {
  max-width: 500px;
  width: 100%;
}

.charts-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
}

/* AI Content Section Styles */
.ai-content-section {
  padding: 100px 0;
  background: transparent;
}

.ai-content-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.ai-content-section .section-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.ai-content-section .section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* AI Interface Container */
.ai-interface-container {
  background: rgba(161, 90, 254, 0.05);
  border-radius: 25px;
  border: 1px solid rgba(161, 90, 254, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Navigation Tabs */
.ai-nav-tabs {
  display: flex;
  background: rgba(161, 90, 254, 0.1);
  border-bottom: 1px solid rgba(161, 90, 254, 0.2);
}

.ai-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.ai-tab svg {
  width: 20px;
  height: 20px;
}

.ai-tab.active {
  background: linear-gradient(135deg, #a15afe 0%, #ec91ff 100%);
  color: #ffffff;
}

.ai-tab:hover:not(.active) {
  background: rgba(161, 90, 254, 0.1);
  color: #ffffff;
}

/* AI Content Panels */
.ai-content-panels {
  position: relative;
  min-height: 600px;
}

.ai-panel {
  display: none;
  padding: 40px;
}

.ai-panel.active {
  display: block;
}

.panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  height: 100%;
}

/* Left Panel */
.left-panel {
  background: rgba(161, 90, 254, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(161, 90, 254, 0.1);
}

.left-panel h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.input-section {
  margin-bottom: 30px;
}

.input-section label {
  display: block;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}

.input-section textarea {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  border: 1px solid rgba(161, 90, 254, 0.3);
  border-radius: 12px;
  background: rgba(26, 26, 26, 0.8);
  color: #ffffff;
  font-size: 16px;
  resize: vertical;
  transition: all 0.3s ease;
}

.input-section textarea:focus {
  outline: none;
  border-color: #a15afe;
  box-shadow: 0 0 0 3px rgba(161, 90, 254, 0.2);
}

.input-section textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Style Options */
.style-options {
  margin-bottom: 30px;
}

.style-options label {
  display: block;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}

.style-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.style-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(161, 90, 254, 0.3);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.style-card:hover {
  border-color: #a15afe;
  background: rgba(161, 90, 254, 0.1);
}

.style-card.selected {
  border-color: #a15afe;
  background: rgba(161, 90, 254, 0.2);
}

.style-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.style-card span {
  font-size: 12px;
  color: #a15afe;
}

/* Upload Section */
.upload-section {
  margin-bottom: 30px;
}

.upload-section label {
  display: block;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}

.upload-area {
  border: 2px dashed rgba(161, 90, 254, 0.3);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  background: rgba(26, 26, 26, 0.5);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.upload-area:hover {
  border-color: #a15afe;
  background: rgba(161, 90, 254, 0.1);
}

.upload-area svg {
  width: 40px;
  height: 40px;
  color: #a15afe;
  margin-bottom: 15px;
}

.upload-area p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 10px;
}

.upload-area span {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Generate Button */
.generate-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(135deg, #a15afe 0%, #ec91ff 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(161, 90, 254, 0.4);
}

.generate-btn svg {
  width: 20px;
  height: 20px;
}

/* Right Panel */
.right-panel {
  background: rgba(161, 90, 254, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(161, 90, 254, 0.1);
}

.right-panel h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.result-placeholder {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(161, 90, 254, 0.2);
}

.result-placeholder svg {
  width: 80px;
  height: 80px;
  color: rgba(161, 90, 254, 0.5);
  margin-bottom: 20px;
}

.result-placeholder p {
  color: var(--text-secondary);
  font-size: 16px;
  text-align: center;
}

/* Usage Counter */
.usage-counter {
  background: rgba(161, 90, 254, 0.1);
  border-top: 1px solid rgba(161, 90, 254, 0.2);
  padding: 30px;
  text-align: center;
}

.usage-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.usage-label {
  font-size: 16px;
  color: var(--text-secondary);
}

.usage-count {
  font-size: 24px;
  font-weight: 700;
  color: #a15afe;
}

.usage-limit {
  font-size: 16px;
  color: var(--text-secondary);
}

.usage-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.usage-progress {
  height: 100%;
  background: linear-gradient(135deg, #a15afe 0%, #ec91ff 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
}

/* Agendamentos Section */
.agendamentos-section {
  padding: 100px 0;
  background: transparent;
}

.agendamentos-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.agendamentos-section .section-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.agendamentos-section .section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Status Cards */
.status-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.status-card {
  background: rgba(161, 90, 254, 0.1);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(161, 90, 254, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.status-card:hover {
  transform: translateY(-2px);
  background: rgba(161, 90, 254, 0.2);
  border-color: rgba(161, 90, 254, 0.5);
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-indicator.agendado {
  background: #3b82f6;
}

.status-indicator.confirmado {
  background: #10b981;
}

.status-indicator.concluido {
  background: #6b7280;
}

.status-indicator.cancelado {
  background: #ef4444;
}

.status-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.status-count {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

/* Calendar Full Container */
.calendar-full-container {
  background: #00000017;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(161, 90, 254, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* FullCalendar Custom Styles */
.fc-non-business {
  background: linear-gradient(
    to right,
    rgba(212, 0, 255, 0.053) 0%,
    rgba(237, 145, 255, 0.047) 100%
  ) !important;
}

.fc-daygrid-day.fc-day-weekend {
  background: linear-gradient(
    to right,
    rgba(212, 0, 255, 0.053) 0%,
    rgba(237, 145, 255, 0.047) 100%
  ) !important;
}

.fc-daygrid-day.fc-day-other-month {
  background: radial-gradient(
    circle,
    rgba(161, 90, 254, 0.3) 0%,
    rgba(236, 145, 255, 0.2) 100%
  ) !important;
}

.fc-daygrid-day.fc-day-today {
  background: rgba(161, 90, 254, 0.3) !important;
}

.fc-daygrid-day-number {
  color: #ffffff !important;
}

.fc-daygrid-day.fc-day-other-month .fc-daygrid-day-number {
  color: rgba(240, 4, 216, 0.7) !important;
}

.fc-daygrid-day.fc-day-weekend .fc-daygrid-day-number {
  color: #ffffff !important;
}

.charts-section .section-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.feature-chart-container {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-chart-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(161, 90, 254, 0.1);
  border-color: rgba(161, 90, 254, 0.3);
}

.feature-chart-header {
  text-align: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-chart-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-chart-header p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.feature-chart-container .chart-wrapper {
  height: 220px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-chart-header h3 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-chart-header p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Chart.js Wrapper */
.chart-wrapper {
  position: relative;
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-wrapper canvas {
  max-height: 100%;
  max-width: 100%;
  display: block;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

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

.icon-bg {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-bg.whatsapp-bg {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.icon-bg.social-bg {
  background: linear-gradient(135deg, #e4405f 0%, #fd1d1d 100%);
}

.icon-bg.automation-bg {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.icon-bg.analytics-bg {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-bg.ai-bg {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.icon-bg.security-bg {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.icon {
  font-size: 32px;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* How It Works Section */
.how-it-works {
  background: transparent;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-number {
  order: 1;
  font-size: 72px;
  font-weight: 900;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 20px;
}

.step-visual {
  order: 2;
  margin-bottom: 20px;
}

.step-content {
  order: 3;
  margin-bottom: 30px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-visual {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.step-icon {
  font-size: 48px;
}

.step-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Synchronize GIF animations - all GIFs start together */
.gif-animation {
  animation: fadeIn 0.3s ease-in;
}

/* Purpose Section */
.purpose-section {
  padding: 120px 0;
  background: transparent;
  position: relative;
  --purpose-height: 520px;
  overflow: hidden;
}

.purpose-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0000000e;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.purpose-section > * {
  position: relative;
  z-index: 1;
}

.purpose-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
  min-height: 500px;
  padding: 0 10px;
}

/* Left Column - Text */
.purpose-text-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.purpose-main-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(135deg, #a15afe 0%, #ec91ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.purpose-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.purpose-name {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #a15afe6b 0%, #ed91ff51 100%);
  margin: 0;
  transition: opacity 0.3s ease;
}

.purpose-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgb(255, 255, 255);
  margin: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

/* Right Column - Image with Frames */
.purpose-image-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frames-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
}

.image-frame {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.108);
}

.frame-main {
  width: 100%;
  height: 100%;
  z-index: 3;
  background: #0000001f;
  position: relative;
}

.purpose-swiper {
  width: 100%;
  height: 100%;
}

.purpose-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.purpose-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
  padding: 30px 20px 20px;
  border-radius: 0 0 20px 20px;
}

.image-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.image-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  align-items: stretch;
}

.purpose-card {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(99, 102, 241, 0.1) 50%,
    rgba(139, 92, 246, 0.08) 100%
  );
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(161, 90, 254, 0.4);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.purpose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 30%,
    transparent 70%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border-radius: 24px;
  pointer-events: none;
  z-index: 1;
}

.purpose-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(139, 92, 246, 0.4) 0%,
    rgba(99, 102, 241, 0.3) 30%,
    rgba(139, 92, 246, 0.15) 50%,
    transparent 70%
  );
  opacity: 0.6;
  animation: glowPulse 4s ease-in-out infinite;
  filter: blur(25px);
  z-index: 0;
  pointer-events: none;
}

.purpose-card:hover {
  border-color: rgba(161, 90, 254, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.purpose-card > * {
  position: relative;
  z-index: 2;
}

.purpose-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.8))
    drop-shadow(0 0 24px rgba(139, 92, 246, 0.4));
}

.purpose-icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.5),
    transparent 60%
  );
  filter: blur(15px);
  z-index: -1;
}

.purpose-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 12px rgba(139, 92, 246, 0.3);
  position: relative;
  z-index: 3;
}

.purpose-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 3;
}

.purpose-cta {
  text-align: center;
  margin-top: 80px;
  padding: 60px;
  background: rgba(161, 90, 254, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(161, 90, 254, 0.2);
}

.purpose-cta h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.purpose-cta p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .purpose-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .purpose-image {
    order: -1;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .purpose-card {
    padding: 30px;
  }

  .purpose-cta {
    padding: 40px 20px;
  }

  .purpose-cta h3 {
    font-size: 28px;
  }
}

/* Pricing Section */
.pricing {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(219, 39, 119, 0.05) 100%
  );
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.pricing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    ),
    rgba(0, 0, 0, 0.7);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: 2;
}

.pricing > * {
  position: relative;
  z-index: 3;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.toggle-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.discount {
  background: var(--gradient-secondary);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin-left: 8px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border-color);
  border-radius: 30px;
  transition: 0.3s;
}

.toggle-switch label:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + label {
  background: var(--primary-color);
}

.toggle-switch input:checked + label:before {
  transform: translateX(30px);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a15afe 0%, #ec91ff 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.plan-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 20px;
  color: var(--text-secondary);
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: #a15afe;
}

.period {
  font-size: 16px;
  color: var(--text-secondary);
}

.plan-features ul {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

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

.plan-button {
  width: 100%;
  background: linear-gradient(135deg, #a15afe 0%, #ec91ff 100%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(161, 90, 254, 0.1),
    0 10px 10px -5px rgba(161, 90, 254, 0.04);
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
}

.guarantee-icon {
  font-size: 48px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(161, 90, 254, 0.15);
  border: 1px solid rgba(161, 90, 254, 0.35);
  box-shadow: 0 12px 30px rgba(161, 90, 254, 0.25);
  overflow: hidden;
}

.guarantee-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(161, 90, 254, 0.5));
}

.guarantee-text h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.guarantee-text p {
  color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(219, 39, 119, 0.05) 100%
  );
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    ),
    rgba(0, 0, 0, 0.7);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: 2;
}

.testimonials > * {
  position: relative;
  z-index: 3;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.testimonial-content {
  margin-bottom: 24px;
}

.stars {
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: var(--text-muted);
}

/* FAQ Section */
.faq {
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at top left,
      rgba(99, 102, 241, 0.25),
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(14, 165, 233, 0.18),
      transparent 55%
    ),
    rgba(1, 1, 10, 0.92);
  z-index: 0;
  pointer-events: none;
}

.faq::after {
  content: "";
  position: absolute;
  top: -120px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle at center,
    rgba(139, 92, 246, 0.4),
    transparent 70%
  );
  filter: blur(60px);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.faq > * {
  position: relative;
  z-index: 1;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(99, 102, 241, 0.05);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.cta {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 70%
  );
}

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

.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.cta-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.cta-social {
  background: rgba(161, 90, 254, 0.12);
  border: 1px solid rgba(161, 90, 254, 0.35);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 25px 40px -20px rgba(161, 90, 254, 0.35);
}

.cta-social-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.04rem;
}

.cta-social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(7, 7, 12, 0.55);
  border: 1px solid rgba(161, 90, 254, 0.25);
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.cta-social-link:hover {
  transform: translateY(-4px);
  border-color: rgba(161, 90, 254, 0.6);
  box-shadow: 0 18px 30px -16px rgba(161, 90, 254, 0.45);
}

.cta-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
}

.cta-social-link.instagram .cta-social-icon {
  background: linear-gradient(
    135deg,
    #f58529 0%,
    #dd2a7b 45%,
    #8134af 75%,
    #515bd4 100%
  );
}

.cta-social-link.tiktok .cta-social-icon {
  background: #ffffff;
}

.cta-social-link.youtube .cta-social-icon {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.cta-social-link.whatsapp .cta-social-icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.cta-social-link svg {
  width: 18px;
  height: 18px;
}

.cta-social-link img {
  width: 20px;
  height: 20px;
  display: block;
}

.feature-icon {
  font-size: 20px;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-disclaimer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.link {
  color: var(--primary-color);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-muted);
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  /* AI Content Tablet */
  .ai-content-section .section-title {
    font-size: 40px;
  }

  .ai-content-section .section-description {
    font-size: 16px;
  }

  .panel-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ai-nav-tabs {
    flex-wrap: wrap;
  }

  .ai-tab {
    flex: 1 1 50%;
    min-width: 150px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-social {
    padding: 28px;
    border-radius: 16px;
    max-width: 420px;
    margin: 0 auto;
  }

  .cta-social-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cta-social-link {
    flex: 1 1 140px;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .financial-content {
    gap: 80px;
    margin-bottom: 80px;
  }

  .financial-description .section-title {
    font-size: 48px;
  }

  .financial-description .section-description {
    font-size: 18px;
  }

  .financial-chart .feature-chart-container {
    padding: 35px;
  }

  .financial-chart .chart-wrapper {
    height: 420px;
  }

  /* Charts Rows Tablet */
  .charts-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  /* Charts Content Tablet */
  .charts-content {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .chart-left {
    order: 1;
    min-width: auto;
    margin-left: 0;
  }

  .charts-text {
    order: 2;
    text-align: center;
  }

  .charts-text .section-title {
    font-size: 40px;
  }

  .charts-text .section-description {
    font-size: 16px;
  }

  /* Agendamentos Content Tablet */
  .status-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .agendamentos-section .section-title {
    font-size: 40px;
  }

  .agendamentos-section .section-description {
    font-size: 16px;
  }

  .calendar-full-container {
    padding: 30px;
  }

  /* Floating Logo Tablet */
  .floating-logo {
    bottom: -40px;
    left: 18px;
  }

  .logo-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  /* AI Content Mobile */
  .ai-panel {
    padding: 20px;
  }

  .left-panel,
  .right-panel {
    padding: 20px;
  }

  .style-cards {
    grid-template-columns: 1fr;
  }

  .ai-content-section .section-title {
    font-size: 32px;
  }

  .ai-tab {
    flex: 1 1 100%;
    padding: 15px;
    font-size: 14px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  /* Dashboard Responsive */
  .dashboard-container {
    padding: 20px;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Metrics Responsive - Removido */

  .charts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .chart-container {
    padding: 15px;
  }

  .pie-chart {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .pie-chart .chart-svg {
    width: 150px;
    height: 150px;
  }

  .pie-legend {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .bar-chart {
    height: 150px;
  }

  /* Chart.js Responsive */
  .chart-wrapper {
    height: 250px;
  }

  /* Charts Rows Mobile */
  .charts-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }

  .feature-chart-container {
    padding: 20px;
  }

  .feature-chart-container .chart-wrapper {
    height: 180px;
  }

  .chart-wrapper {
    height: 250px;
  }

  /* Financial Content Responsive */
  .financial-content {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
    min-height: auto;
    padding-right: 0;
  }

  .financial-description {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }

  .financial-description .section-title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .financial-description .section-description {
    font-size: 18px;
  }

  .financial-chart {
    max-width: 100%;
    min-width: auto;
    margin-left: 0;
  }

  .financial-chart .feature-chart-container {
    padding: 30px;
    border-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .financial-chart .chart-wrapper {
    height: 400px;
  }

  .financial-chart .feature-chart-header h3 {
    font-size: 20px;
  }

  .financial-chart .feature-chart-header p {
    font-size: 14px;
  }

  /* Charts Section Responsive */
  .charts-section {
    padding: 60px 0;
  }

  .charts-section .section-header {
    margin-bottom: 50px;
  }

  .charts-section .section-title {
    font-size: 36px;
  }

  .charts-section .section-description {
    font-size: 16px;
  }

  .feature-chart-container .chart-wrapper {
    height: 200px;
  }

  .feature-chart-header h3 {
    font-size: 16px;
  }

  .feature-chart-header p {
    font-size: 13px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    padding: 16px;
  }

  .stat-card {
    padding: 12px;
    min-width: 80px;
    min-height: 50px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  /* Floating Logo Responsive */
  .floating-logo {
    bottom: -30px;
    left: 15px;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  /* Charts Content Mobile */
  .charts-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .chart-left {
    order: 1;
    min-width: auto;
    margin-left: 0;
  }

  .charts-text {
    order: 2;
    text-align: center;
  }

  .charts-text .section-title {
    font-size: 32px;
  }

  .charts-text .section-description {
    font-size: 14px;
  }

  /* Agendamentos Content Mobile */
  .agendamentos-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .calendar-left {
    order: 1;
    min-width: auto;
    margin-left: 0;
  }

  .agendamentos-text {
    order: 2;
    text-align: center;
  }

  .agendamentos-text .section-title {
    font-size: 32px;
  }

  .agendamentos-text .section-description {
    font-size: 14px;
  }

  /* Agendamentos Content Mobile */
  .status-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .status-card {
    padding: 15px;
  }

  .status-content h3 {
    font-size: 12px;
  }

  .status-count {
    font-size: 20px;
  }

  .agendamentos-section .section-title {
    font-size: 32px;
  }

  .agendamentos-section .section-description {
    font-size: 14px;
  }

  .calendar-full-container {
    padding: 15px;
    overflow-x: auto;
  }

  /* FullCalendar Extra Small Mobile */
  .fc-toolbar-title {
    font-size: 18px !important;
  }

  .fc-button {
    padding: 6px 10px !important;
    font-size: 11px !important;
  }

  .fc-prev-button,
  .fc-next-button {
    min-width: 32px !important;
    height: 32px !important;
    padding: 6px !important;
  }

  .fc-today-button {
    padding: 6px 12px !important;
    font-size: 11px !important;
  }

  .fc-dayGridMonth-button,
  .fc-timeGridWeek-button,
  .fc-timeGridDay-button {
    padding: 6px 8px !important;
    font-size: 10px !important;
  }

  .fc-col-header-cell {
    padding: 6px 2px !important;
    font-size: 10px !important;
  }

  .fc-daygrid-day {
    min-height: 50px !important;
  }

  .fc-daygrid-day-number {
    font-size: 11px !important;
  }

  .fc-event {
    font-size: 9px !important;
    padding: 1px 3px !important;
  }

  /* Floating Logo Responsive */
  .floating-logo {
    bottom: -30px;
    left: 15px;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 16px;
  }

  .phone-img {
    width: 250px;
  }

  .floating-card {
    padding: 3px 6px;
    opacity: 1;
    visibility: visible;
    display: block !important;
    width: 95px;
    min-height: 28px;
    line-height: 1.15;
  }

  .card-text {
    font-size: 8.5px;
    word-break: break-word;
  }

  .floating-card.card-1 {
    top: -20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .floating-card.card-2 {
    top: 70px;
    left: -110px;
    right: auto;
    transform: none;
  }

  .floating-card.card-3 {
    top: 70px;
    right: -110px;
    left: auto;
    transform: none;
  }

  .floating-card.card-4 {
    bottom: 70px;
    left: -105px;
    right: auto;
    transform: none;
  }

  .floating-card.card-5 {
    bottom: 70px;
    right: -105px;
    left: auto;
    transform: none;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .cta-social {
    padding: 22px;
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-social-link {
    font-size: 14px;
    padding: 10px 12px;
  }

  .feature-card {
    padding: 24px;
  }

  .pricing-card {
    padding: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .signup-form {
    padding: 24px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 18px;
  }
}

/* Animações GSAP */
.gsap-fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.gsap-slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.gsap-slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.gsap-scale {
  opacity: 0;
  transform: scale(0.8);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

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

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

/* Content Management Section */
.content-management {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.content-management .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px 0;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(161, 90, 254, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.comparison-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comparison-card:hover::before {
  opacity: 1;
}

.comparison-card.challenge {
  border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.solution {
  border-color: rgba(34, 197, 94, 0.3);
}

.comparison-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.comparison-card.challenge .comparison-icon {
  color: #ef4444;
}

.comparison-card.solution .comparison-icon {
  color: #22c55e;
}

.comparison-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-card.challenge .comparison-list li svg {
  color: #ef4444;
}

.comparison-card.solution .comparison-list li svg {
  color: #22c55e;
}

.comparison-list li span {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.challenge-badge,
.solution-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.challenge-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.solution-badge {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.key-benefits {
  margin-top: 80px;
  text-align: center;
}

.key-benefits h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(161, 90, 254, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-item h4 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.benefit-item p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .content-management .container {
    padding: 0 15px;
  }

  .comparison-card,
  .benefit-item {
    padding: 30px;
  }
}

/* Mini Sites Section */
.mini-sites {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.mini-sites::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(219, 39, 119, 0.05) 100%
  );
  opacity: 0.6;
  pointer-events: none;
}

.mini-sites::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.mini-sites .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.mini-sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.mini-site-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(161, 90, 254, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mini-site-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.site-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-site-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.mini-site-card p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  color: var(--text-secondary);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
  border-bottom: none;
}

.workflow-steps {
  margin-top: 80px;
  text-align: center;
}

.workflow-steps h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: auto;
  height: auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto 15px;
  padding: 0;
}

.step-number img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0;
}

.step-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.step-arrow {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.step-arrow svg {
  width: 40px;
  height: 40px;
}

/* Responsive Mini Sites */
@media (max-width: 968px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .step-arrow:nth-child(2),
  .step-arrow:nth-child(4),
  .step-arrow:nth-child(6) {
    display: none;
  }

  .step-item:nth-child(1),
  .step-item:nth-child(3),
  .step-item:nth-child(5),
  .step-item:nth-child(7) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .mini-sites-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-arrow {
    transform: rotate(90deg);
    height: 30px;
  }

  .step-arrow:nth-child(2),
  .step-arrow:nth-child(4),
  .step-arrow:nth-child(6) {
    display: block;
  }

  .mini-site-card {
    padding: 30px;
  }

  .mini-sites .container {
    padding: 0 15px;
  }
}

/* Cards 3D Animation */
.cards-3d-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 60px 0;
}

.info-section {
  padding-right: 40px;
}

.info-section h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.info-section p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.info-list li svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.animation-section {
  perspective: 800px;
  height: 450px;
  position: relative;
}

.cards-3d-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: carouselRotate 20s infinite linear;
  transform: scale(0.85);
}

@keyframes carouselRotate {
  0% {
    transform: scale(0.85) rotateY(0deg);
  }
  100% {
    transform: scale(0.85) rotateY(360deg);
  }
}

.card-3d {
  position: absolute;
  width: 220px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(99, 102, 241, 0.1) 50%,
    rgba(139, 92, 246, 0.08) 100%
  );
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(161, 90, 254, 0.4);
  border-radius: 24px;
  padding: 25px;
  text-align: center;
  transition: transform 0.5s ease;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-3d::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 30%,
    transparent 70%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border-radius: 24px;
  pointer-events: none;
  z-index: 1;
}

.glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(139, 92, 246, 0.6) 0%,
    rgba(99, 102, 241, 0.4) 30%,
    rgba(139, 92, 246, 0.2) 50%,
    transparent 70%
  );
  opacity: 0.7;
  animation: glowPulse 4s ease-in-out infinite;
  filter: blur(20px);
  z-index: 0;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

.card-3d .site-icon {
  margin: 0 auto 20px;
  color: var(--primary-color);
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.8))
    drop-shadow(0 0 24px rgba(139, 92, 246, 0.4));
  position: relative;
  z-index: 3;
}

.card-3d h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 12px rgba(139, 92, 246, 0.3);
  position: relative;
  z-index: 3;
}

.card-3d p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 3;
}

/* Posicionamento dos cards em órbita */
.card-3d-1 {
  transform: rotateY(0deg) translateZ(280px);
}

.card-3d-2 {
  transform: rotateY(60deg) translateZ(280px);
}

.card-3d-3 {
  transform: rotateY(120deg) translateZ(280px);
}

.card-3d-4 {
  transform: rotateY(180deg) translateZ(280px);
}

.card-3d-5 {
  transform: rotateY(240deg) translateZ(280px);
}

.card-3d-6 {
  transform: rotateY(300deg) translateZ(280px);
}

/* Responsive Cards 3D */
@media (max-width: 968px) {
  .cards-3d-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .animation-section {
    order: -1;
  }

  .info-section {
    padding-right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cards-3d-container {
    margin: 40px 0;
  }

  .animation-section {
    height: 350px;
  }

  .card-3d {
    width: 180px;
    height: 250px;
    padding: 20px;
  }

  .card-3d h3 {
    font-size: 18px;
  }

  .card-3d p {
    font-size: 12px;
  }

  .cards-3d-wrapper {
    transform: scale(0.7) scale(0.85);
  }

  .info-section h3 {
    font-size: 28px;
  }

  .info-section p {
    font-size: 16px;
  }
}

/* Purpose carousel */
/* Purpose Carousel Container */
.purpose-carousel-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.purpose-info {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.purpose-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  margin: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Swiper Styles */
.purpose-swiper {
  width: 100%;
  height: 100%;
  padding: 20px 0 50px;
}

.purpose-swiper .swiper-wrapper {
  align-items: center;
}

.purpose-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: var(--purpose-height);
  padding: 30px;
  text-align: center;
}

.purpose-swiper .purpose-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.purpose-swiper .purpose-card h3 {
  margin-top: 20px;
  margin-bottom: 0;
}

.purpose-swiper .purpose-card h3 strong.movie-night {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 12px rgba(139, 92, 246, 0.3);
}

/* Swiper Pagination */
.purpose-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: auto;
}

.purpose-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.purpose-pagination .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
  .purpose-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .purpose-image-column {
    order: -1;
  }

  .image-frames-container {
    max-width: 100%;
    height: 500px;
  }
}

.purpose-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.8))
    drop-shadow(0 0 24px rgba(139, 92, 246, 0.4));
  position: relative;
  z-index: 3;
}

/* ============================================
   RESPONSIVIDADE COMPLETA PARA CELULAR
   ============================================ */

/* Mobile First - Breakpoint 768px e abaixo */
@media (max-width: 768px) {
  /* Container e espaçamentos gerais */
  .container {
    padding: 0 16px;
  }

  section {
    padding: 60px 0;
  }

  /* Navigation Mobile */
  .nav-container {
    height: 60px;
    padding: 0 16px;
  }

  .nav-logo {
    gap: 8px;
  }

  .logo {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 18px;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 24px;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 18px;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link.cta-nav {
    margin-top: 20px;
    text-align: center;
    border: none;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Hero Section Mobile */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .title-line {
    display: block;
  }

  .title-line.highlight {
    margin-left: 0;
    margin-top: 4px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-visual {
    order: -1;
  }

  .phone-img {
    width: 280px;
    max-width: 100%;
  }

  .cta-social {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    gap: 16px;
  }

  .cta-social-links {
    flex-direction: column;
    gap: 12px;
  }

  .cta-social-link {
    flex: 1;
    justify-content: flex-start;
  }

  .floating-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 4px 10px;
    width: 115px;
    min-height: 30px;
    text-align: center;
    line-height: 1.15;
    border-radius: 14px;
  }

  .floating-card .card-text {
    font-size: 10px;
    word-break: break-word;
  }

  .floating-card.card-1 {
    top: -10px;
    left: 10%;
    right: auto;
    transform: translateX(-40%);
  }

  .floating-card.card-2 {
    top: 200px;
    left: -60px;
    right: auto;
    transform: none;
  }

  .floating-card.card-3 {
    top: 75px;
    right: -70px;
    left: auto;
    transform: none;
  }

  .floating-card.card-4 {
    bottom: 800px;
    left: -70px;
    right: auto;
    transform: none;
  }

  .floating-card.card-5 {
    bottom: 85px;
    right: -60px;
    left: auto;
    transform: none;
  }

  /* Section Headers Mobile */
  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 16px;
  }

  /* Features Section Mobile */
  .features {
    padding: 60px 0;
  }

  .floating-logo {
    position: relative;
    bottom: auto;
    left: auto;
    text-align: center;
    margin: 40px auto;
  }

  .logo-image {
    width: 80px;
    height: 80px;
  }

  /* Financeiro Section Mobile */
  .financeiro-section {
    padding: 60px 0;
  }

  .financial-content {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0;
  }

  .financial-description {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .financial-description .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .financial-description .section-description {
    font-size: 16px;
  }

  .financial-chart {
    max-width: 100%;
    min-width: auto;
    margin: 0;
  }

  .financial-chart .feature-chart-container {
    padding: 24px;
    border-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  .financial-chart .feature-chart-header h3 {
    font-size: 18px;
  }

  .financial-chart .feature-chart-header p {
    font-size: 14px;
  }

  .financial-chart .chart-wrapper {
    height: 300px;
  }

  /* Charts Section Mobile */
  .charts-section {
    padding: 60px 0;
  }

  .charts-content {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .chart-left {
    order: 1;
    min-width: auto;
    margin: 0;
  }

  .charts-text {
    order: 2;
    text-align: center;
    padding: 0;
  }

  .charts-text .section-title {
    font-size: 32px;
    text-align: center;
  }

  .charts-text .section-description {
    font-size: 16px;
    text-align: center;
  }

  .charts-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 30px 0;
  }

  .charts-row-single {
    margin: 30px 0;
  }

  .charts-row-single .feature-chart-container {
    max-width: 100%;
  }

  .feature-chart-container {
    padding: 20px;
  }

  .feature-chart-header h3 {
    font-size: 16px;
  }

  .feature-chart-header p {
    font-size: 13px;
  }

  .feature-chart-container .chart-wrapper {
    height: 200px;
  }

  /* Agendamentos Section Mobile */
  .agendamentos-section {
    padding: 60px 0;
  }

  .agendamentos-section .section-title {
    font-size: 32px;
  }

  .agendamentos-section .section-description {
    font-size: 16px;
  }

  .status-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
  }

  .status-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .status-content h3 {
    font-size: 12px;
    margin: 0;
  }

  .status-count {
    font-size: 20px;
  }

  .calendar-full-container {
    padding: 20px;
    overflow-x: auto;
  }

  /* FullCalendar Mobile Styles */
  .fc-toolbar {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 10px 0 !important;
  }

  .fc-toolbar-chunk {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .fc-toolbar-chunk:first-child {
    order: 2;
    justify-content: center !important;
    flex-direction: row !important;
    gap: 8px !important;
  }

  .fc-toolbar-chunk:nth-child(2) {
    order: 1;
    width: 100% !important;
    margin-bottom: 8px;
  }

  .fc-toolbar-chunk:last-child {
    order: 2;
    justify-content: center !important;
    margin-left: 8px !important;
  }

  /* Reorganizar: prev, hoje, next na mesma linha */
  .fc-toolbar-chunk:first-child {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: auto !important;
  }

  .fc-toolbar-chunk:first-child .fc-button-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .fc-toolbar-chunk:last-child {
    display: none !important;
  }

  .fc-toolbar-title {
    font-size: 18px !important;
    text-align: center !important;
    margin: 0 !important;
    line-height: 1.2 !important;
  }

  .fc-button {
    padding: 6px 10px !important;
    font-size: 11px !important;
    min-width: auto !important;
    height: auto !important;
    min-height: 32px !important;
    line-height: 1.2 !important;
    border-radius: 6px !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(161, 90, 254, 0.3) !important;
  }

  .fc-button-group {
    display: flex !important;
    gap: 5px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .fc-button-group .fc-button {
    padding: 8px 10px !important;
    font-size: 11px !important;
  }

  .fc-prev-button,
  .fc-next-button {
    padding: 6px 10px !important;
    min-width: 32px !important;
    height: 32px !important;
  }

  .fc-prev-button .fc-icon,
  .fc-next-button .fc-icon {
    font-size: 12px !important;
  }

  .fc-today-button {
    padding: 6px 12px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
    margin: 0 4px !important;
  }

  .fc-dayGridMonth-button,
  .fc-timeGridWeek-button,
  .fc-timeGridDay-button {
    padding: 8px 12px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  .fc-scrollgrid {
    font-size: 12px !important;
  }

  .fc-col-header-cell {
    padding: 8px 4px !important;
    font-size: 11px !important;
  }

  .fc-col-header-cell-cushion {
    font-size: 11px !important;
    padding: 4px !important;
  }

  .fc-daygrid-day {
    min-height: 60px !important;
  }

  .fc-daygrid-day-number {
    font-size: 12px !important;
    padding: 4px !important;
  }

  .fc-event {
    font-size: 10px !important;
    padding: 2px 4px !important;
    margin: 1px !important;
  }

  .fc-event-title {
    font-size: 10px !important;
  }

  /* AI Content Section Mobile */
  .ai-content-section {
    padding: 60px 0;
  }

  .ai-content-section .section-title {
    font-size: 32px;
  }

  .ai-content-section .section-description {
    font-size: 16px;
  }

  .ai-interface-container {
    border-radius: 16px;
  }

  .ai-nav-tabs {
    flex-wrap: wrap;
    border-radius: 16px 16px 0 0;
  }

  .ai-tab {
    flex: 1 1 50%;
    min-width: 50%;
    padding: 12px 8px;
    font-size: 12px;
  }

  .ai-tab svg {
    width: 16px;
    height: 16px;
  }

  .ai-panel {
    padding: 20px;
  }

  .panel-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .left-panel,
  .right-panel {
    padding: 20px;
  }

  .left-panel h3,
  .right-panel h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .style-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .style-card {
    padding: 16px;
  }

  .style-card h4 {
    font-size: 13px;
  }

  .style-card span {
    font-size: 11px;
  }

  .upload-area {
    min-height: 200px;
    padding: 30px 15px;
  }

  .upload-area svg {
    width: 32px;
    height: 32px;
  }

  .upload-area p {
    font-size: 14px;
  }

  .upload-area span {
    font-size: 12px;
  }

  .result-placeholder {
    height: 300px;
  }

  .result-placeholder svg {
    width: 60px;
    height: 60px;
  }

  .result-placeholder p {
    font-size: 14px;
  }

  /* Content Management Mobile */
  .content-management {
    padding: 60px 0;
  }

  .content-management .section-title {
    font-size: 32px;
  }

  .content-management .section-subtitle {
    font-size: 16px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
  }

  .comparison-card {
    padding: 24px;
  }

  .comparison-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .comparison-list li {
    padding: 12px 0;
  }

  .comparison-list li span {
    font-size: 14px;
  }

  .challenge-badge,
  .solution-badge {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }

  .key-benefits {
    margin-top: 50px;
  }

  .key-benefits h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-item {
    padding: 24px;
  }

  .benefit-item h4 {
    font-size: 18px;
  }

  .benefit-item p {
    font-size: 14px;
  }

  /* Mini Sites Mobile */
  .mini-sites {
    padding: 60px 0;
  }

  .mini-sites .section-title {
    font-size: 32px;
  }

  .mini-sites .section-subtitle {
    font-size: 16px;
  }

  .cards-3d-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px 0;
  }

  .info-section {
    padding: 0;
    text-align: center;
    order: 2;
  }

  .info-section h3 {
    font-size: 28px;
  }

  .info-section p {
    font-size: 16px;
  }

  .info-list li {
    font-size: 14px;
    justify-content: center;
  }

  .animation-section {
    order: 1;
    height: 300px;
  }

  .cards-3d-wrapper {
    transform: scale(0.6);
  }

  .card-3d {
    width: 160px;
    height: 220px;
    padding: 16px;
  }

  .card-3d h3 {
    font-size: 16px;
  }

  .card-3d p {
    font-size: 11px;
  }

  .workflow-steps {
    margin-top: 50px;
  }

  .workflow-steps h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-arrow {
    transform: rotate(90deg);
    height: 30px;
    width: 100%;
  }

  .step-item h4 {
    font-size: 16px;
  }

  .step-item p {
    font-size: 13px;
  }

  .step-number img {
    width: 50px;
    height: 50px;
  }

  /* How It Works Mobile */
  .how-it-works {
    padding: 60px 0;
  }

  .how-it-works .section-title {
    font-size: 32px;
  }

  .how-it-works .section-subtitle {
    font-size: 16px;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .step {
    padding: 0 20px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 14px;
  }

  .step-icon img {
    width: 60px;
    height: 60px;
  }

  /* Purpose Section Mobile */
  .purpose-section {
    padding: 60px 0;
    overflow: visible;
  }

  .purpose-section::after {
    display: block;
  }

  .purpose-section .container {
    padding: 0 16px;
  }

  .purpose-content-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    min-height: auto;
    align-items: center;
    padding: 0;
    overflow: visible;
  }

  .purpose-content-wrapper > * {
    overflow: visible;
    min-width: 0;
  }

  .purpose-text-column {
    order: 1;
    text-align: left;
    gap: 20px;
  }

  .purpose-image-column {
    order: 2;
    width: 100%;
    overflow: visible;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 0;
    flex: 1;
  }

  .purpose-main-title {
    font-size: 24px;
    letter-spacing: 1px;
    text-align: left;
  }

  .purpose-info-section {
    gap: 15px;
    text-align: left;
  }

  .purpose-name {
    font-size: 20px;
    text-align: left;
  }

  .purpose-description {
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }

  .image-frames-container {
    max-width: 100%;
    width: 100%;
    height: 300px;
    min-height: 300px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    display: block !important;
  }

  .image-frame {
    display: block;
    visibility: visible;
  }

  .frame-main {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px;
    position: relative;
    display: block !important;
    z-index: 3;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
  }

  .frame-back-1 {
    width: 95%;
    height: 95%;
    top: 2.5%;
    left: 2.5%;
    z-index: 1;
    background: rgba(161, 90, 254, 0.1);
    border: 1px solid rgba(161, 90, 254, 0.2);
    transform: translate(-5px, -5px);
    display: block;
  }

  .frame-back-2 {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    z-index: 2;
    background: rgba(161, 90, 254, 0.05);
    border: 1px solid rgba(161, 90, 254, 0.15);
    transform: translate(-10px, -10px);
    display: block;
  }

  .purpose-swiper {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px;
    padding: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .purpose-swiper .swiper-wrapper {
    height: 100% !important;
    min-height: 300px;
    display: flex !important;
    visibility: visible !important;
  }

  .purpose-swiper .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px;
    display: flex !important;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .purpose-swiper .swiper-slide img,
  .purpose-swiper img,
  .frame-main img {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px;
    object-fit: cover;
    border-radius: 20px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10 !important;
  }

  .purpose-swiper .swiper-slide {
    min-height: 300px;
  }

  .purpose-swiper .swiper-wrapper {
    min-height: 300px;
  }

  .image-overlay {
    padding: 20px 15px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }

  .image-overlay h3 {
    font-size: 16px;
  }

  .image-overlay p {
    font-size: 11px;
  }

  .purpose-pagination {
    bottom: 10px;
    position: absolute;
    z-index: 10;
  }

  .purpose-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }

  /* Pricing Mobile */
  .pricing {
    padding: 60px 0;
  }

  .pricing .section-title {
    font-size: 32px;
  }

  .pricing .section-subtitle {
    font-size: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-card.popular {
    transform: none;
  }

  .plan-name {
    font-size: 20px;
  }

  .plan-description {
    font-size: 14px;
  }

  .price {
    font-size: 40px;
  }

  .plan-features li {
    font-size: 14px;
    padding: 10px 0;
  }

  .pricing-guarantee {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .guarantee-icon {
    font-size: 36px;
  }

  .guarantee-text h4 {
    font-size: 18px;
  }

  .guarantee-text p {
    font-size: 14px;
  }

  /* Testimonials Mobile */
  .testimonials {
    padding: 60px 0;
  }

  .testimonials .section-title {
    font-size: 32px;
  }

  .testimonials .section-subtitle {
    font-size: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .author-name {
    font-size: 15px;
  }

  .author-role {
    font-size: 13px;
  }

  /* FAQ Mobile */
  .faq {
    padding: 60px 0;
  }

  .faq .section-title {
    font-size: 32px;
  }

  .faq .section-subtitle {
    font-size: 16px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  /* CTA Mobile */
  .cta {
    padding: 60px 0;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-title {
    font-size: 32px;
    text-align: center;
  }

  .cta-description {
    font-size: 16px;
    text-align: center;
  }

  .signup-form {
    padding: 24px;
  }

  /* Footer Mobile */
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-column a {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Mobile Extra Small - Breakpoint 480px e abaixo */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  section {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .phone-img {
    width: 240px;
  }

  .financial-description .section-title {
    font-size: 28px;
  }

  .charts-text .section-title {
    font-size: 28px;
  }

  .status-cards {
    grid-template-columns: 1fr;
  }

  .ai-tab {
    flex: 1 1 100%;
    font-size: 11px;
    padding: 10px 6px;
  }

  .purpose-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .purpose-text-column {
    order: 1;
    text-align: center;
  }

  .purpose-image-column {
    order: 2;
  }

  .purpose-main-title {
    font-size: 22px;
    text-align: center;
  }

  .purpose-info-section {
    text-align: center;
  }

  .purpose-name {
    font-size: 18px;
    text-align: center;
  }

  .purpose-description {
    font-size: 12px;
    text-align: center;
  }

  .image-frames-container {
    height: 280px;
    max-width: 100%;
    position: relative;
  }

  .frame-main {
    display: block;
    width: 100%;
    height: 100%;
  }

  .purpose-swiper {
    width: 100%;
    height: 100%;
    display: block;
  }

  .purpose-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cta-title {
    font-size: 28px;
  }

  .pricing-card {
    padding: 20px;
  }

  .price {
    font-size: 36px;
  }
}

/* Mobile Landscape - Breakpoint 768px landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .hero-container {
    gap: 30px;
  }

  .hero-title {
    font-size: 32px;
  }

  .phone-img {
    width: 200px;
  }
}
