
:root {
  /* Colors */
  --color-background: rgba(252, 252, 249, 1);
  --color-surface: rgba(255, 255, 253, 1);
  --color-text: rgba(19, 52, 59, 1);
  --color-text-secondary: rgba(98, 108, 113, 1);
  --color-primary: rgba(33, 128, 141, 1);
  --color-primary-hover: rgba(29, 116, 128, 1);
  --color-primary-active: rgba(26, 104, 115, 1);
  --color-secondary: rgba(94, 82, 64, 0.12);
  --color-secondary-hover: rgba(94, 82, 64, 0.2);
  --color-secondary-active: rgba(94, 82, 64, 0.25);
  --color-border: rgba(94, 82, 64, 0.2);
  --color-btn-primary-text: rgba(252, 252, 249, 1);
  --color-card-border: rgba(94, 82, 64, 0.12);
  --color-card-border-inner: rgba(94, 82, 64, 0.12);
  --color-error: rgba(192, 21, 47, 1);
  --color-success: rgba(33, 128, 141, 1);
  --color-warning: rgba(168, 75, 47, 1);
  --color-info: rgba(98, 108, 113, 1);
  --color-focus-ring: rgba(33, 128, 141, 0.4);
  --color-select-caret: rgba(19, 52, 59, 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    --color-background: rgba(31, 33, 33, 1);
    --color-surface: rgba(38, 40, 40, 1);
    --color-text: rgba(245, 245, 245, 1);
    --color-text-secondary: rgba(167, 169, 169, 0.7);
    --color-primary: rgba(50, 184, 198, 1);
    --color-primary-hover: rgba(45, 166, 178, 1);
    --color-primary-active: rgba(41, 150, 161, 1);
    --color-secondary: rgba(119, 124, 124, 0.15);
    --color-secondary-hover: rgba(119, 124, 124, 0.25);
    --color-secondary-active: rgba(119, 124, 124, 0.3);
    --color-border: rgba(119, 124, 124, 0.3);
    --color-error: rgba(255, 84, 89, 1);
    --color-success: rgba(50, 184, 198, 1);
    --color-warning: rgba(230, 129, 97, 1);
    --color-info: rgba(167, 169, 169, 1);
    --color-focus-ring: rgba(50, 184, 198, 0.4);
    --color-btn-primary-text: rgba(19, 52, 59, 1);
    --color-card-border: rgba(119, 124, 124, 0.2);
    --color-card-border-inner: rgba(119, 124, 124, 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(119, 124, 124, 0.2);
    --color-border-secondary: rgba(119, 124, 124, 0.2);
    --color-select-caret: rgba(245, 245, 245, 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: 50, 184, 198;
    --color-error-rgb: 255, 84, 89;
    --color-warning-rgb: 230, 129, 97;
    --color-info-rgb: 167, 169, 169;
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  --color-background: rgba(31, 33, 33, 1);
  --color-surface: rgba(38, 40, 40, 1);
  --color-text: rgba(245, 245, 245, 1);
  --color-text-secondary: rgba(167, 169, 169, 0.7);
  --color-primary: rgba(50, 184, 198, 1);
  --color-primary-hover: rgba(45, 166, 178, 1);
  --color-primary-active: rgba(41, 150, 161, 1);
  --color-secondary: rgba(119, 124, 124, 0.15);
  --color-secondary-hover: rgba(119, 124, 124, 0.25);
  --color-secondary-active: rgba(119, 124, 124, 0.3);
  --color-border: rgba(119, 124, 124, 0.3);
  --color-error: rgba(255, 84, 89, 1);
  --color-success: rgba(50, 184, 198, 1);
  --color-warning: rgba(230, 129, 97, 1);
  --color-info: rgba(167, 169, 169, 1);
  --color-focus-ring: rgba(50, 184, 198, 0.4);
  --color-btn-primary-text: rgba(19, 52, 59, 1);
  --color-card-border: rgba(119, 124, 124, 0.15);
  --color-card-border-inner: rgba(119, 124, 124, 0.15);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(119, 124, 124, 0.2);
  --color-select-caret: rgba(245, 245, 245, 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for dark mode */
  --color-success-rgb: 50, 184, 198;
  --color-error-rgb: 255, 84, 89;
  --color-warning-rgb: 230, 129, 97;
  --color-info-rgb: 167, 169, 169;
}

[data-color-scheme="light"] {
  --color-background: rgba(252, 252, 249, 1);
  --color-surface: rgba(255, 255, 253, 1);
  --color-text: rgba(19, 52, 59, 1);
  --color-text-secondary: rgba(98, 108, 113, 1);
  --color-primary: rgba(33, 128, 141, 1);
  --color-primary-hover: rgba(29, 116, 128, 1);
  --color-primary-active: rgba(26, 104, 115, 1);
  --color-secondary: rgba(94, 82, 64, 0.12);
  --color-secondary-hover: rgba(94, 82, 64, 0.2);
  --color-secondary-active: rgba(94, 82, 64, 0.25);
  --color-border: rgba(94, 82, 64, 0.2);
  --color-btn-primary-text: rgba(252, 252, 249, 1);
  --color-card-border: rgba(94, 82, 64, 0.12);
  --color-card-border-inner: rgba(94, 82, 64, 0.12);
  --color-error: rgba(192, 21, 47, 1);
  --color-success: rgba(33, 128, 141, 1);
  --color-warning: rgba(168, 75, 47, 1);
  --color-info: rgba(98, 108, 113, 1);
  --color-focus-ring: rgba(33, 128, 141, 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

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

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

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

.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

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

.btn--secondary:active {
  background: var(--color-secondary-active);
}

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

.btn--outline:hover {
  background: var(--color-secondary);
}

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: var(--space-4);
}
.gap-8 {
  gap: var(--space-8);
}
.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}
.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}
.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.block {
  display: block;
}
.hidden {
  display: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

/* Custom styles for Linknab landing page */

/* Additional variables for our design */
:root {
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --color-accent-orange: #f59e0b;
  --color-accent-green: #10b981;
  --color-accent-red: #ef4444;
  --color-accent-purple: #8b5cf6;
  --color-text-light: #6b7280;
  --color-background-light: #f9fafb;
  --section-padding: 5rem 0;
  --section-padding-mobile: 3rem 0;
}

/* Base overrides */
body {
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Gradient text utility */
.gradient-text {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(139,92,246,0.07);
}

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

.nav__brand .brand-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #8B5CF6;
  letter-spacing: 1px;
  margin: 0;
  transition: color 0.2s;
}

.nav__menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: #22223b;
  font-size: 1.08rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav__link::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  transition: width 0.3s;
  margin-top: 4px;
  border-radius: 2px;
}

.nav__link:hover,
.nav__link:focus {
  color: #8B5CF6;
}
.nav__link:hover::after,
.nav__link:focus::after {
  width: 100%;
}

.nav__cta {
  margin-left: 32px;
  padding: 10px 22px;
  font-size: 1.08rem;
  border-radius: 24px;
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff !important;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(139,92,246,0.08);
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.nav__cta:hover {
  background: linear-gradient(90deg, #EC4899 60%, #8B5CF6 100%);
  transform: scale(1.06);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 18px;
}
.nav__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #8B5CF6;
  border-radius: 2px;
  transition: all 0.3s;
}

/* MOBILE MENU */
@media (max-width: 900px) {
  .nav__menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    width: 220px;
    box-shadow: 0 8px 32px rgba(139,92,246,0.08);
    border-radius: 0 0 18px 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-24px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 99;
  }
  .nav__menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav__menu li {
    border-bottom: 1px solid #ede9fe;
    padding: 0;
  }
  .nav__link {
    display: block;
    padding: 18px 24px;
    color: #8B5CF6;
    font-size: 1.14rem;
  }
  .nav__cta {
    margin: 18px 0 0 0;
    width: 90%;
    display: block;
    padding: 14px 0;
    font-size: 1.12rem;
    text-align: center;
  }
  .nav__toggle {
    display: flex;
  }
}

/* Ajuste para esconder menu em mobile até abrir */
@media (max-width: 900px) {
  .nav__menu {
    display: flex;
    opacity: 0;
    pointer-events: none;
  }
  .nav__menu.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
}


/* Botão CTA no header */
.nav__cta {
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 22px;
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(139,92,246,0.08);
  transition: background 0.3s, transform 0.2s, font-size 0.2s, padding 0.2s;
  white-space: nowrap;
  min-width: unset;
  max-width: 180px;
  line-height: 1.1;
  height: auto;
}

.nav__cta:hover {
  background: linear-gradient(90deg, #EC4899 60%, #8B5CF6 100%);
  transform: scale(1.05);
}

/* Responsivo: botão menor e mais discreto em telas pequenas */
@media (max-width: 900px) {
  .nav__cta {
    padding: 10px 0;
    font-size: 0.98rem;
    border-radius: 20px;
    width: 90%;
    max-width: 96vw;
    margin: 18px auto 0 auto;
    display: block;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .nav__cta {
    font-size: 0.92rem;
    padding: 9px 0;
    border-radius: 18px;
  }
}

/* Ajuste para desktop */
@media (min-width: 901px) {
  .nav__menu {
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    border-radius: 0;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none;
  }
  .nav__cta {
    margin-left: 32px;
    width: auto;
    display: inline-flex;
    padding: 10px 22px;
    font-size: 1.08rem;
  }
  .nav__toggle {
    display: none;
  }
}


/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.hero__subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  font-weight: var(--font-weight-medium);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Phone Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #1f2937, #374151);
  border-radius: 2rem;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #6b7280;
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
}

.mockup-content {
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mockup-url {
  background: var(--color-background-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.mockup-profile {
  text-align: center;
  margin-bottom: 2rem;
}

.mockup-avatar {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.mockup-profile h3 {
  margin-bottom: 0.5rem;
  font-size: var(--font-size-lg);
}

.mockup-profile p {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  margin: 0;
}

.mockup-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-link {
  height: 45px;
  background: var(--gradient-primary);
  border-radius: var(--radius-base);
  opacity: 0.8;
}

.mockup-link:nth-child(2) {
  background: var(--gradient-secondary);
}

.mockup-link:nth-child(3) {
  background: var(--gradient-success);
}

/* Sections */
.benefits, .examples, .how-it-works, .pricing, .testimonials, .faq, .final-cta {
  padding: var(--section-padding);
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--color-text);
}

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

/* Benefits */
.benefits {
  background: var(--color-background);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-standard);
  border: 1px solid var(--color-border);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
  color: var(--color-text);
}

.benefit-card p {
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* Examples */
.examples__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.example-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-standard);
}

.example-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.example-preview {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.example-preview--modern {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.example-preview--creative {
  background: linear-gradient(135deg, #dc2626, #f59e0b);
}

.example-preview--elegant {
  background: linear-gradient(135deg, #374151, #6b7280);
}

.preview-content {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: white;
  border-radius: var(--radius-base);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.preview-header {
  font-size: var(--font-size-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.preview-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
}

.preview-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.preview-link {
  height: 20px;
  background: var(--color-background-light);
  border-radius: var(--radius-sm);
}

.example-info {
  padding: 1.5rem;
}

.example-info h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.example-info p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.example-category {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
}

/* How it works */
.how-it-works {
  background: var(--color-background);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.step__content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: 1rem;
}

.step__content p {
  color: var(--color-text-light);
  margin: 0;
}

/* Pricing */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
  transition: all var(--duration-normal) var(--ease-standard);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.pricing-card--popular::before {
  content: 'RECOMENDADO';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
}

.pricing-card__header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-card__header h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: 0.5rem;
}

.pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  background: var(--color-secondary);
  color: var(--color-text);
}

.pricing-badge--popular {
  background: var(--gradient-primary);
  color: white;
}

.pricing-card__price {
  text-align: center;
  margin-bottom: 2rem;
}

.price {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}

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

.savings {
  color: var(--color-success);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  margin-top: 0.5rem;
}

.monthly-equivalent {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  margin-top: 0.25rem;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-card__features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
}

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

/* Testimonials */
.testimonials {
  background: var(--color-background);
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.testimonial__content {
  margin-bottom: 1.5rem;
}

.testimonial__content p {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__info h4 {
  margin: 0 0 0.25rem 0;
  font-size: var(--font-size-md);
}

.testimonial__info span {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
}

/* FAQ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-standard);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform var(--duration-fast) var(--ease-standard);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-standard);
}

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

.faq-answer p {
  padding: 0 0 1.5rem 0;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Final CTA */
.final-cta {
  background: var(--gradient-primary);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: var(--font-size-xl);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form .form-control {
  margin-bottom: 1rem;
}

.contact-form .btn {
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: var(--color-text);
  color: white;
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__brand h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer__brand p {
  opacity: 0.8;
  margin: 0;
}

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

.footer__section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
}

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

.footer__section ul li {
  margin-bottom: 0.5rem;
}

.footer__section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--duration-fast) var(--ease-standard);
}

.footer__section ul li a:hover {
  color: white;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  margin: 0;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    transition: left var(--duration-normal) var(--ease-standard);
    box-shadow: var(--shadow-lg);
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__actions {
    justify-content: center;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .benefits, .examples, .how-it-works, .pricing, .testimonials, .faq, .final-cta {
    padding: var(--section-padding-mobile);
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

.footer {
  background: linear-gradient(120deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  padding: 56px 0 0 0;
  position: relative;
  overflow: hidden;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1.5px solid rgba(255,255,255,0.15);
}

.footer__brand {
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__brand h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 1px;
}
.footer__brand p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin: 0 0 6px 0;
}
.footer__cta {
  display: inline-block;
  margin-top: 8px;
  background: #fff;
  color: #8B5CF6;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 24px;
  box-shadow: 0 2px 10px rgba(139,92,246,0.10);
  transition: background 0.3s, color 0.3s, transform 0.2s;
  font-size: 1.08rem;
  text-decoration: none;
}
.footer__cta:hover {
  background: #EC4899;
  color: #fff;
  transform: scale(1.05);
}

.footer__links {
  display: flex;
  gap: 48px;
  flex: 2 1 400px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer__section {
  min-width: 140px;
}
.footer__section h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: 0.5px;
}
.footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__section ul li {
  margin-bottom: 10px;
}
.footer__section ul li a {
  color: #fff;
  opacity: 0.85;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.2s;
  text-decoration: none;
  position: relative;
}
.footer__section ul li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
  margin-top: 2px;
  border-radius: 2px;
}
.footer__section ul li a:hover,
.footer__section ul li a:focus {
  color: #FFD700;
  opacity: 1;
}
.footer__section ul li a:hover::after,
.footer__section ul li a:focus::after {
  width: 100%;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.footer__icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.12);
  transition: background-color 0.2s, transform 0.2s;
}
.footer__icon.ig { background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="purple" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="20" height="20" rx="5"/><circle cx="12" cy="12" r="5"/><circle cx="17.5" cy="6.5" r="1"/></svg>'); }
.footer__icon.tw { background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="blue" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M23 3a10.9 10.9 0 01-3.14 1.53A4.48 4.48 0 0016.5 2c-2.5 0-4.5 2.24-4.5 5a4.5 4.5 0 00.11 1A12.94 12.94 0 013 4s-4 9 5 13a13 13 0 01-7 2c13 8 27-7 27-16.5a9.7 9.7 0 00-.08-1.5A7.72 7.72 0 0023 3z"/></svg>'); }
.footer__icon.ln { background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="navy" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="2" width="20" height="20" rx="5"/><path d="M16 8a6 6 0 00-6 6v4"/><circle cx="9" cy="9" r="1"/></svg>'); }
.footer__icon:hover, .footer__icon:focus {
  background-color: #fff;
  transform: scale(1.15) rotate(-8deg);
}

.footer__bottom {
  text-align: center;
  padding: 22px 0 10px 0;
  font-size: 1.02rem;
  color: #fff;
  opacity: 0.84;
  letter-spacing: 0.5px;
}

/* Responsivo */
@media (max-width: 900px) {
  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .footer__links {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin-top: 18px;
  }
  .footer__section {
    min-width: 0;
  }
}
@media (max-width: 500px) {
  .footer {
    padding: 38px 0 0 0;
  }
  .footer__content {
    gap: 20px;
    padding-bottom: 16px;
  }
  .footer__brand h3 { font-size: 1.3rem; }
  .footer__cta { padding: 10px 18px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }

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

.celular-animado {
  animation: flutuar 3s ease-in-out infinite;
}
@keyframes flutuar {
  0% { transform: translateY(0) rotate(-2deg);}
  50% { transform: translateY(-16px) rotate(2deg);}
  100% { transform: translateY(0) rotate(-2deg);}
}
/* CSS */
.navbar {
  position: fixed;
  width: 100%;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
  box-shadow: none;
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.how-it-works {
  background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 100%);
  padding: 60px 0 40px 0;
}
.section-header h2 {
  font-size: 2.5rem;
  color: #8B5CF6;
  margin-bottom: 10px;
}
.section-header p {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.stepper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stepper-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(139,92,246,0.08);
  padding: 28px 20px 20px 20px;
  flex: 1;
  min-width: 200px;
  margin: 0 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1;
  animation: fadeInUp 0.8s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

.stepper-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -28px;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #8B5CF6 40%, #EC4899 100%);
  z-index: 0;
  transform: translateY(-50%);
  border-radius: 2px;
}

.stepper-icon {
  background: linear-gradient(135deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(139,92,246,0.12);
  animation: pulse 1.5s infinite alternate;
}
@keyframes pulse {
  from { box-shadow: 0 2px 8px rgba(139,92,246,0.08);}
  to { box-shadow: 0 4px 24px rgba(236,72,153,0.18);}
}

.stepper-content h3 {
  color: #8B5CF6;
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: bold;
}
.stepper-content p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0;
}

.stepper-item.active .stepper-icon {
  background: linear-gradient(135deg, #EC4899 60%, #8B5CF6 100%);
  animation: bounce 1s infinite alternate;
}
@keyframes bounce {
  from { transform: translateY(0);}
  to { transform: translateY(-8px);}
}

.stepper-item.completed .stepper-icon {
  background: linear-gradient(135deg, #4bb543 60%, #8B5CF6 100%);
}

.cta-how {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.btn-cta {
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  font-size: 1.2rem;
  padding: 16px 36px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(139,92,246,0.08);
  transition: background 0.3s, transform 0.2s;
  animation: fadeIn 1.2s;
}
.btn-cta:hover {
  background: linear-gradient(90deg, #EC4899 60%, #8B5CF6 100%);
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .stepper-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .stepper-item {
    margin: 0 0 32px 0;
  }
  .stepper-item:not(:last-child)::after {
    display: none;
  }
}
.pricing {
  background: linear-gradient(135deg, #ede9fe 0%, #f8fafc 100%);
  padding: 60px 0 40px 0;
}
.section-header h2 {
  font-size: 2.5rem;
  color: #8B5CF6;
  margin-bottom: 10px;
}
.section-header p {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
}
.pricing__grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.pricing-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.08);
  padding: 38px 28px 32px 28px;
  min-width: 320px;
  max-width: 350px;
  flex: 1 1 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 0.8s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.pricing-card:hover {
  transform: scale(1.045) translateY(-8px);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.16);
}
.pricing-card__ribbon {
  position: absolute;
  top: -18px;
  left: 18px;
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  padding: 6px 22px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(139,92,246,0.12);
  animation: pulse 1.5s infinite alternate;
}
@keyframes pulse {
  from { box-shadow: 0 2px 8px rgba(139,92,246,0.08);}
  to { box-shadow: 0 4px 24px rgba(236,72,153,0.18);}
}
.pricing-card__ribbon--popular {
  background: linear-gradient(90deg, #EC4899 60%, #8B5CF6 100%);
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  padding: 8px 32px;
  animation: bounce 1.2s infinite alternate;
}
@keyframes bounce {
  from { transform: translateX(-50%) scale(1);}
  to { transform: translateX(-50%) scale(1.08);}
}
.pricing-card__ribbon .star {
  margin-right: 6px;
  font-size: 1.2em;
}
.pricing-card--popular {
  border: 2.5px solid #EC4899;
  z-index: 2;
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.16);
}
.pricing-card__header h3 {
  color: #8B5CF6;
  font-size: 1.4rem;
  margin-bottom: 14px;
  font-weight: bold;
}
.pricing-card__price {
  color: #22223b;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-card__price .period {
  font-size: 1rem;
  color: #8B5CF6;
  margin-left: 4px;
}
.pricing-card__price .savings {
  margin-top: 6px;
  color: #10b981;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: savingsGlow 1.5s infinite alternate;
}
@keyframes savingsGlow {
  from { color: #10b981;}
  to { color: #22d3ee;}
}
.pricing-card__price .monthly-equivalent {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 2px;
}
.pricing-card__features {
  margin: 20px 0 28px 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  font-size: 1.06rem;
  color: #444;
  margin-bottom: 12px;
  gap: 8px;
}
.pricing-card__features .material-icons {
  color: #8B5CF6;
  font-size: 1.3em;
}
.pricing-card--popular .pricing-card__features .material-icons {
  color: #EC4899;
}
.btn {
  font-size: 1.1rem;
  padding: 14px 0;
  border-radius: 28px;
  border: 2px solid #8B5CF6;
  background: transparent;
  color: #8B5CF6;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  margin-top: 8px;
}
.btn:hover {
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  border: 2px solid #EC4899;
  transform: scale(1.04);
}
.pricing__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  font-size: 1.08rem;
  color: #10b981;
  gap: 8px;
  background: #f1f5f9;
  border-radius: 18px;
  padding: 12px 24px;
  box-shadow: 0 2px 10px rgba(139,92,246,0.06);
}
.pricing__guarantee .material-icons {
  font-size: 1.3em;
  color: #10b981;
}
@media (max-width: 900px) {
  .pricing__grid {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .pricing-card {
    max-width: 98vw;
  }
}

.benefits {
  background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 100%);
  padding: 64px 0 48px 0;
}
.section-header h2 {
  font-size: 2.5rem;
  color: #8B5CF6;
  margin-bottom: 10px;
}
.section-header p {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
}
.benefits__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}
.benefit-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(139,92,246,0.08);
  padding: 36px 26px 28px 26px;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  animation: fadeInUp 0.7s;
}
.benefit-card:hover {
  transform: scale(1.045) translateY(-6px);
  box-shadow: 0 12px 32px rgba(139,92,246,0.16);
}
.benefit-card--hero {
  border: 2.5px solid #8B5CF6;
  box-shadow: 0 12px 32px rgba(139,92,246,0.18);
}
.benefit-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 2.5s ease-in-out infinite alternate;
}
@keyframes float {
  from { transform: translateY(0);}
  to { transform: translateY(-12px);}
}
.benefit-animate {
  animation: pop 1.2s cubic-bezier(.68,-0.55,.27,1.55) infinite alternate;
}
@keyframes pop {
  from { transform: scale(1) rotate(-2deg);}
  to { transform: scale(1.18) rotate(2deg);}
}
.benefit-card h3 {
  color: #8B5CF6;
  font-size: 1.18rem;
  margin-bottom: 8px;
  font-weight: bold;
}
.benefit-card p {
  color: #444;
  font-size: 1.06rem;
  margin-bottom: 0;
}
.benefits__cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.btn-benefit-cta {
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  font-size: 1.18rem;
  padding: 18px 38px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(139,92,246,0.08);
  transition: background 0.3s, transform 0.2s;
  animation: fadeIn 1.2s;
}
.btn-benefit-cta:hover {
  background: linear-gradient(90deg, #EC4899 60%, #8B5CF6 100%);
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .benefits__grid {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .benefit-card {
    max-width: 98vw;
  }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

.faq {
  background: linear-gradient(135deg, #ede9fe 0%, #f8fafc 100%);
  padding: 64px 0 48px 0;
}
.section-header h2 {
  font-size: 2.5rem;
  color: #8B5CF6;
  margin-bottom: 10px;
}
.section-header p {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
}
.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(139,92,246,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 12px 32px rgba(139,92,246,0.16);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  color: #22223b;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
  position: relative;
}
.faq-question:hover, .faq-question[aria-expanded="true"] {
  background: #f3e8ff;
}
.faq-icon {
  font-size: 1.5rem;
  margin-right: 18px;
  animation: faqPop 1.2s cubic-bezier(.68,-0.55,.27,1.55) infinite alternate;
}
@keyframes faqPop {
  from { transform: scale(1);}
  to { transform: scale(1.18);}
}
.faq-toggle {
  font-size: 1.6rem;
  color: #8B5CF6;
  margin-left: 18px;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f8fafc;
  color: #444;
  font-size: 1.08rem;
  padding: 0 30px;
  transition: max-height 0.5s cubic-bezier(.68,-0.55,.27,1.55), padding 0.3s;
}
.faq-item.open .faq-answer {
  padding: 18px 30px 22px 65px;
  max-height: 200px;
}
.faq-answer p {
  margin: 0;
}
.faq-cta-link {
  color: #8B5CF6;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s;
}
.faq-cta-link:hover {
  color: #EC4899;
}
.faq__cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.btn-faq-cta {
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  font-size: 1.16rem;
  padding: 16px 36px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(139,92,246,0.08);
  transition: background 0.3s, transform 0.2s;
  animation: fadeIn 1.2s;
}
.btn-faq-cta:hover {
  background: linear-gradient(90deg, #EC4899 60%, #8B5CF6 100%);
  transform: scale(1.06);
}
@media (max-width: 700px) {
  .faq__list { padding: 0 8px; }
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}

.faq {
  background: linear-gradient(135deg, #ede9fe 0%, #f8fafc 100%);
  padding: 64px 0 48px 0;
}
.section-header h2 {
  font-size: 2.5rem;
  color: #8B5CF6;
  margin-bottom: 10px;
}
.section-header p {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
}
.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(139,92,246,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: 0 12px 32px rgba(139,92,246,0.16);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  color: #22223b;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
  position: relative;
}
.faq-question:hover, .faq-question[aria-expanded="true"] {
  background: #f3e8ff;
}
.faq-icon {
  font-size: 1.5rem;
  margin-right: 18px;
  animation: faqPop 1.2s cubic-bezier(.68,-0.55,.27,1.55) infinite alternate;
}
@keyframes faqPop {
  from { transform: scale(1);}
  to { transform: scale(1.18);}
}
.faq-toggle {
  font-size: 1.6rem;
  color: #8B5CF6;
  margin-left: 18px;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f8fafc;
  color: #444;
  font-size: 1.08rem;
  padding: 0 30px;
  transition: max-height 0.5s cubic-bezier(.68,-0.55,.27,1.55), padding 0.3s;
}
.faq-item.open .faq-answer {
  padding: 18px 30px 22px 65px;
  max-height: 200px;
}
.faq-answer p {
  margin: 0;
}
.faq-cta-link {
  color: #8B5CF6;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s;
}
.faq-cta-link:hover {
  color: #EC4899;
}
.faq__cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.btn-faq-cta {
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  font-size: 1.16rem;
  padding: 16px 36px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(139,92,246,0.08);
  transition: background 0.3s, transform 0.2s;
  animation: fadeIn 1.2s;
}
.btn-faq-cta:hover {
  background: linear-gradient(90deg, #EC4899 60%, #8B5CF6 100%);
  transform: scale(1.06);
}
@media (max-width: 700px) {
  .faq__list { padding: 0 8px; }
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}

.testimonials {
  background: linear-gradient(135deg, #ede9fe 0%, #f8fafc 100%);
  padding: 64px 0 48px 0;
}
.section-header h2 {
  font-size: 2.5rem;
  color: #8B5CF6;
  margin-bottom: 10px;
}
.section-header p {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
}
.testimonials__carousel {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  min-height: 320px;
  max-width: 600px;
  margin: 0 auto 24px auto;
  overflow: hidden;
}
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(139,92,246,0.08);
  padding: 38px 28px 32px 28px;
  min-width: 100%;
  max-width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: scale(0.98) translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
  z-index: 1;
}
.testimonial-card.active {
  display: flex;
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 2;
  animation: popIn 1s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.92) translateY(40px);}
  to { opacity: 1; transform: scale(1) translateY(0);}
}
.testimonial__stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  animation: starsGlow 1.5s infinite alternate;
}
@keyframes starsGlow {
  from { color: #FFD700;}
  to { color: #FBBF24;}
}
.testimonial__content p {
  color: #444;
  font-size: 1.18rem;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.testimonial__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #8B5CF6;
  box-shadow: 0 2px 8px rgba(139,92,246,0.12);
  animation: avatarFloat 2.5s ease-in-out infinite alternate;
}
@keyframes avatarFloat {
  from { transform: translateY(0);}
  to { transform: translateY(-8px);}
}
.testimonial__info h4 {
  color: #8B5CF6;
  font-size: 1.1rem;
  margin: 0;
  font-weight: bold;
}
.testimonial__info span {
  color: #6b7280;
  font-size: 0.95rem;
}
.testimonials__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.testimonial-arrow {
  background: #8B5CF6;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  width: 42px;
  height: 42px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(139,92,246,0.10);
  transition: background 0.2s, transform 0.2s;
}
.testimonial-arrow:hover {
  background: #EC4899;
  transform: scale(1.10);
}
.testimonials__cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.btn-testimonial-cta {
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  font-size: 1.18rem;
  padding: 18px 38px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(139,92,246,0.08);
  transition: background 0.3s, transform 0.2s;
  animation: fadeIn 1.2s;
}
.btn-testimonial-cta:hover {
  background: linear-gradient(90deg, #EC4899 60%, #8B5CF6 100%);
  transform: scale(1.06);
}
@media (max-width: 700px) {
  .testimonials__carousel {
    min-height: 420px;
  }
  .testimonial-card {
    padding: 28px 10px 24px 10px;
  }
}
.final-cta {
  background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  padding: 64px 0 48px 0;
  color: #fff;
}
.cta-content {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.cta-content h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: #fff;
}
.cta-content p {
  font-size: 1.18rem;
  margin-bottom: 32px;
  color: #f3f4f6;
}
.contact-form {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(139,92,246,0.10);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  animation: fadeInUp 0.8s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.form-row {
  display: flex;
  gap: 14px;
}
.form-control {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid #ede9fe;
  border-radius: 14px;
  font-size: 1.08rem;
  background: #f8fafc;
  color: #22223b;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border: 2px solid #8B5CF6;
  box-shadow: 0 0 0 2px #EC4899;
}
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}
.btn--primary {
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  font-size: 1.18rem;
  padding: 16px 0;
  border-radius: 32px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 10px;
}
.btn--primary:hover {
  background: linear-gradient(90deg, #EC4899 60%, #8B5CF6 100%);
  transform: scale(1.04);
}
.form-feedback {
  min-height: 28px;
  font-size: 1.05rem;
  color: #10b981;
  margin-top: 8px;
  text-align: center;
  transition: color 0.3s;
}
.cta-extra {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.cta-whatsapp {
  color: #25D366;
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.12rem;
  transition: color 0.2s;
}
.cta-whatsapp:hover {
  color: #fff;
  background: #25D366;
  padding: 4px 12px;
  border-radius: 16px;
}
@media (max-width: 600px) {
  .cta-content { padding: 0 8px; }
  .contact-form { padding: 18px 8px 12px 8px; }
  .form-row { flex-direction: column; gap: 8px;}
}
.examples {
  background: linear-gradient(135deg, #f8fafc 0%, #ede9fe 100%);
  padding: 64px 0 48px 0;
}
.section-header h2 {
  font-size: 2.5rem;
  color: #8B5CF6;
  margin-bottom: 10px;
}
.section-header p {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-align: center;
}
.examples__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}
.example-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(139,92,246,0.08);
  padding: 0;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  cursor: pointer;
  outline: none;
  animation: fadeInUp 0.7s;
}
.example-card:focus,
.example-card:hover {
  transform: scale(1.045) translateY(-6px);
  box-shadow: 0 12px 32px rgba(139,92,246,0.16);
  z-index: 2;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.example-preview {
  border-radius: 20px 20px 0 0;
  padding: 28px 18px 18px 18px;
  background: linear-gradient(120deg, #8B5CF6 60%, #EC4899 100%);
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: background 0.3s;
}
.example-preview--modern { background: linear-gradient(120deg, #6366F1 60%, #a7f3d0 100%);}
.example-preview--creative { background: linear-gradient(120deg, #EC4899 60%, #FBBF24 100%);}
.example-preview--elegant { background: linear-gradient(120deg, #f3f4f6 60%, #8B5CF6 100%);}
.preview-content {
  width: 100%;
}
.preview-header {
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.preview-title {
  font-size: 1.22rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 12px;
}
.preview-links {
  display: flex;
  gap: 8px;
}
.preview-link {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
  transition: background 0.3s, transform 0.2s;
}
.example-card:hover .preview-link,
.example-card:focus .preview-link {
  background: #EC4899;
  opacity: 1;
  transform: scale(1.18);
}
.example-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  background: rgba(139,92,246,0.07);
}
.example-card:hover .example-hover,
.example-card:focus .example-hover {
  opacity: 1;
  pointer-events: auto;
}
.hover-title {
  color: #fff;
  font-size: 1.08rem;
  font-weight: bold;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.hover-arrow {
  font-size: 2.1rem;
  color: #fff;
  animation: arrowMove 1s infinite alternate;
}
@keyframes arrowMove {
  from { transform: translateX(0);}
  to { transform: translateX(12px);}
}
.example-info {
  padding: 22px 16px 18px 16px;
  text-align: center;
}
.example-info h3 {
  color: #8B5CF6;
  font-size: 1.14rem;
  margin-bottom: 8px;
  font-weight: bold;
}
.example-info p {
  color: #444;
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.example-category {
  display: inline-block;
  background: #ede9fe;
  color: #8B5CF6;
  padding: 4px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  margin-top: 6px;
  font-weight: 600;
}
.examples__cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.btn-examples-cta {
  background: linear-gradient(90deg, #8B5CF6 60%, #EC4899 100%);
  color: #fff;
  font-size: 1.18rem;
  padding: 18px 38px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(139,92,246,0.08);
  transition: background 0.3s, transform 0.2s;
  animation: fadeIn 1.2s;
}
.btn-examples-cta:hover {
  background: linear-gradient(90deg, #EC4899 60%, #8B5CF6 100%);
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .examples__grid {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .example-card {
    max-width: 98vw;
  }
}

