/* ===========================
   SOLVES Landing Page - CSS
   =========================== */

/* CSS Variables */
:root {
  /* Colors - HSL format */
  --primary-h: 217;
  --primary-s: 91%;
  --primary-l: 50%;
  --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-light: hsl(217, 91%, 60%);
  --primary-foreground: hsl(0, 0%, 100%);

  --accent-h: 199;
  --accent-s: 89%;
  --accent-l: 48%;
  --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
  --accent-foreground: hsl(0, 0%, 100%);

  --background: hsl(210, 40%, 99%);
  --foreground: hsl(217, 33%, 17%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(217, 33%, 17%);

  --muted: hsl(214, 32%, 95%);
  --muted-foreground: hsl(215, 16%, 47%);

  --border: hsl(214, 32%, 91%);

  --hero-bg: hsl(217, 33%, 5%);
  --hero-foreground: hsl(0, 0%, 100%);

  --feature-bg: hsl(210, 40%, 98%);

  --success: hsl(142, 76%, 36%);
  --success-foreground: hsl(0, 0%, 100%);

  --warning: hsl(38, 92%, 50%);
  --destructive: hsl(0, 84%, 60%);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(217, 91%, 50%), hsl(199, 89%, 48%));
  --gradient-hero: linear-gradient(180deg, hsl(217, 33%, 5%) 0%, hsl(217, 33%, 10%) 100%);
  --gradient-radial: radial-gradient(ellipse at center, hsla(217, 91%, 50%, 0.15), transparent 70%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px hsla(217, 91%, 50%, 0.3);
  --shadow-glow-lg: 0 0 40px hsla(217, 91%, 50%, 0.4);

  /* Spacing */
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
}
header{
  max-width: 100%;
}
main{
  max-width: 100%;
}
footer{
  max-width: 100%;
}
section{
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-success {
  color: var(--success);
}

.icon-accent {
  color: var(--accent);
}

.icon-destructive {
  color: var(--destructive);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  color: var(--hero-foreground);
}

.btn-outline:hover {
  background: hsla(0, 0%, 100%, 0.1);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-glow {
  box-shadow: var(--shadow-glow);
}

.btn-glow-lg {
  box-shadow: var(--shadow-glow-lg);
}

.btn .arrow {
  transition: transform var(--transition-base);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: var(--shadow-glow-lg);
  }
  50% {
    box-shadow: 0 0 60px hsla(217, 91%, 50%, 0.6);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: hsla(217, 33%, 5%, 0.95);
  backdrop-filter: blur(12px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header-content {
    height: 5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  color: var(--hero-foreground);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition-base);
}

.nav-link:hover {
  color: var(--hero-foreground);
}

.hide-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hide-mobile {
    display: inline;
  }
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--hero-foreground);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: var(--hero-bg);
  padding: 1rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  z-index: 99;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition-base);
}

.mobile-nav-link:hover {
  color: var(--hero-foreground);
  background: hsla(0, 0%, 100%, 0.05);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg-decoration {
  position: absolute;
  inset: 0;
  background: var(--gradient-radial);
  opacity: 0.5;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blob-1 {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(217, 91%, 50%, 0.05);
}

.hero-blob-2 {
  bottom: 25%;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: hsla(199, 89%, 48%, 0.05);
}

.hero-content {
  position: relative;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 0;
  }
}

.hero-text {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(217, 91%, 50%, 0.1);
  border: 1px solid hsla(217, 91%, 50%, 0.2);
  color: var(--primary-light);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--hero-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.7);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(0, 0%, 100%, 0.8);
}

.benefit span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Dashboard Mockup */
.dashboard-mockup {
  margin-top: 4rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .dashboard-mockup {
    margin-top: 6rem;
  }
}

.mockup-container {
  position: relative;
}

.mockup-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  border-radius: 1rem;
  filter: blur(60px);
  opacity: 0.2;
}

.mockup-container {
  position: relative;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
  .mockup-container {
    padding: 1rem;
  }
}

.mockup-window {
  background: var(--hero-bg);
  border-radius: 0.75rem;
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}

.mockup-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.mockup-dot.red { background: hsla(0, 84%, 60%, 0.6); }
.mockup-dot.yellow { background: hsla(38, 92%, 50%, 0.6); }
.mockup-dot.green { background: hsla(142, 76%, 36%, 0.6); }

.mockup-content {
  padding: 1rem;
}

@media (min-width: 768px) {
  .mockup-content {
    padding: 2rem;
  }
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: hsla(0, 0%, 100%, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.stat-label {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.stat-value {
  color: var(--hero-foreground);
  font-size: 1.25rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 1.5rem;
  }
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: hsla(0, 0%, 100%, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
}

.list-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--gradient-primary);
  opacity: 0.8;
  flex-shrink: 0;
}

.list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-title {
  height: 0.75rem;
  background: hsla(0, 0%, 100%, 0.2);
  border-radius: 0.25rem;
  width: 33%;
}

.list-subtitle {
  height: 0.5rem;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 0.25rem;
  width: 50%;
}

.list-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsla(142, 76%, 36%, 0.2);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section-light {
  background: var(--feature-bg);
}

.section-dark {
  background: var(--hero-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(217, 91%, 50%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-dark .section-badge {
  color: var(--primary-light);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title-light {
  color: var(--hero-foreground);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.section-subtitle-light {
  color: hsla(0, 0%, 100%, 0.7);
}

/* Problem x Solution */
.problem-solution-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .problem-solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.subsection-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.problem-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

.problem-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--destructive);
  font-weight: 700;
}

.solution-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.solution-list li strong {
  color: var(--foreground);
  font-weight: 600;
}

.solution-list li span {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: hsla(0, 0%, 100%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.feature-card:hover {
  background: hsla(0, 0%, 100%, 0.08);
  border-color: hsla(217, 91%, 50%, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--hero-foreground);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--hero-foreground);
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
  line-height: 1.6;
}

/* Differentials */
.differentials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .differentials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.differential-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.differential-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.differential-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.differential-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.differential-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Steps */
.steps-container {
  max-width: 48rem;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 4rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), transparent);
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-foreground);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  padding-top: 0.25rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--hero-foreground);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
  line-height: 1.6;
}

/* Audiences */
.audiences-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .audiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .audiences-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.audience-card {
  text-align: center;
  padding: 1.5rem;
}

.audience-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.audience-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--hero-foreground);
}

.audience-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.audience-examples {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.pricing-card {
  background: hsla(0, 0%, 100%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
}

.pricing-card-featured {
  background: var(--card);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.pricing-featured-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--gradient-primary);
  color: var(--hero-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-label {
  font-size: 0.875rem;
  color: var(--primary-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card-featured .pricing-label {
  color: var(--primary);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hero-foreground);
  margin-top: 0.25rem;
}

.pricing-card-featured .pricing-title {
  color: var(--foreground);
}

.pricing-value {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsla(0, 0%, 100%, 0.7);
}

.pricing-card-featured .pricing-currency {
  color: var(--muted-foreground);
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--hero-foreground);
}

.pricing-card-featured .pricing-amount {
  color: var(--foreground);
}

.pricing-period {
  font-size: 1rem;
  color: hsla(0, 0%, 100%, 0.7);
}

.pricing-card-featured .pricing-period {
  color: var(--muted-foreground);
}

.pricing-info {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hero-foreground);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
}

.pricing-card-featured .pricing-features li {
  color: var(--foreground);
}

.pricing-card-featured .btn {
  margin-top: 2rem;
}

/* CTA Section */
.section-cta {
  position: relative;
  padding: 5rem 0;
  background: var(--gradient-hero);
  overflow: hidden;
}

@media (min-width: 768px) {
  .section-cta {
    padding: 8rem 0;
  }
}

.cta-bg-decoration {
  position: absolute;
  inset: 0;
  background: var(--gradient-radial);
  opacity: 0.3;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-blob-1 {
  top: 25%;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: hsla(217, 91%, 50%, 0.1);
}

.cta-blob-2 {
  bottom: 25%;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: hsla(199, 89%, 48%, 0.1);
}

.cta-content {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--hero-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-subtitle {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.7);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta-subtitle {
    font-size: 1.25rem;
  }
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(0, 0%, 100%, 0.8);
}

.cta-benefit span {
  font-size: 0.875rem;
  font-weight: 500;
}

.cta-note {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* Footer */
.footer {
  background: var(--hero-bg);
  padding: 3rem 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand .logo {
  align-items: flex-start;
}

.footer-company {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--hero-foreground);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  text-align: center;
}

.footer-copyright {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.875rem;
}

/* Animations */
.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}
.animate-fade-up-delayed {
  animation: fadeUp 0.8s ease 0.5s forwards;
  opacity: 1; /* 0; */
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-scroll {
  opacity: 1; /* 0; */
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
#btn_whatsapp_topo {
    display: block !important;
}
@media (max-width: 768px) {
    #btn_whatsapp_topo {
        display: none !important;
    }
}