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

:root {
  --primary: 262.1 83.3% 57.8%;
  --primary-foreground: 210 20% 98%;
  --secondary: 220 14.3% 95.9%;
  --secondary-foreground: 220.9 39.3% 11%;
  --muted: 220 14.3% 95.9%;
  --muted-foreground: 220 8.9% 46.1%;
  --accent: 220 14.3% 95.9%;
  --accent-foreground: 220.9 39.3% 11%;
  --background: 0 0% 100%;
  --foreground: 224 71.4% 4.1%;
  --card: 0 0% 100%;
  --card-foreground: 224 71.4% 4.1%;
  --border: 220 13% 91%;
  --radius: 0.5rem;
  --navbar-height: 80px;
  --bf-banner-offset: 80px;
  --gradient-primary: linear-gradient(135deg, hsl(262.1 83.3% 57.8%), hsl(250 100% 70%));
  --gradient-secondary: linear-gradient(180deg, hsl(var(--secondary)), hsl(var(--background)));
}

body {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
}

h1 {
  font-size: 3rem;
  font-weight: 550;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-primary-large {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn-outline:hover {
  background: hsl(var(--primary) / 0.1);
}

.btn-white {
  background: white;
  color: hsl(var(--primary));
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-white-large {
  background: white;
  color: hsl(var(--primary));
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

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

.btn-success {
  background: #10B981;
  color: white;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.badge-purple {
  background: hsl(262.1 83.3% 57.8% / 0.1);
  color: hsl(262.1 83.3% 57.8%);
}

.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.badge-black-friday {
  background: #000000;
  color: #FFD700;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
  z-index: 1000;
  padding: 1rem 0;
  min-height: var(--navbar-height);
  max-height: var(--navbar-height);
}

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

.navbar-logo {
  height: 40px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: hsl(var(--primary));
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-left: 1.5rem;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: hsl(var(--foreground));
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .navbar-badge {
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18);
  }

  .navbar-badge-toggle {
    position: absolute;
    top: 2px;
    right: -2px;
  }

  .navbar-badge-cta {
    display: none;
    margin-left: 8px;
  }

  .navbar-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: hsl(var(--background));
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .navbar-links .btn {
    width: 100%;
    text-align: center;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar.is-open .navbar-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar.is-open .navbar-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar.is-open .navbar-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.is-open .navbar-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .navbar.is-open .navbar-badge-cta {
    display: inline-flex;
    vertical-align: middle;
  }

  .navbar.is-open .navbar-badge-toggle {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 9rem 0 6rem;
  background: linear-gradient(to bottom, hsl(var(--secondary) / 0.3), hsl(var(--background)));
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.social-proof {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.proof-item {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.hero-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 1rem;
}

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

.hero-demo {
  position: relative;
}

.hero-demo-mobile {
  display: none;
  margin-top: 1rem;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-laptop-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  width: 16px;
  height: 16px;
  color: #10b981;
}

@media (max-width: 640px) {
  .hero .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }
}

/* Black Friday Banner */
.bf-banner {
  padding: clamp(4rem, 8vw, 9rem) 0;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(79, 70, 229, 0.25) 0%, rgba(15, 23, 42, 0) 55%),
    linear-gradient(135deg, #020617 0%, #1e1b4b 45%, #312e81 100%);
  color: #e2e8f0;
}

.bf-banner-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(2rem, 6vw, 4.5rem);
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 3rem;
}

.bf-banner-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  overflow: hidden;
}

.bf-banner-left::before {
  content: "";
  position: absolute;
  inset: -25% -15% -35% -25%;
  opacity: 0.75;
}

.bf-banner-left::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}

.bf-banner-left > * {
  position: relative;
  z-index: 1;
}

.bf-left-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.72);
  font-weight: 600;
}

.bf-left-title {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  font-family: 'Fraunces', serif;
  font-size: clamp(3.75rem, 7vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  color: #ffffff;
  margin: 0;
}

.bf-left-title span:nth-child(2) {
  color: #c7d2fe;
}

.bf-banner-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 540px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  color: #e2e8f0;
}

.bf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #facc15 0%, #f97316 100%);
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 10px 24px rgba(249, 115, 22, 0.35);
  width: fit-content;
}

.bf-title {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.05;
  color: #ffffff;
}

.bf-title span {
  display: block;
  color: #c7d2fe;
}

.bf-subtitle {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.bf-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.bf-benefits li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: #f8fafc;
}

.bf-benefits li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 0.95rem;
  line-height: 1;
}

.bf-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(90deg, #34d399 0%, #22c55e 100%);
  color: #022c22;
  box-shadow: 0 18px 45px rgba(34, 197, 94, 0.35);
  min-width: 240px;
}

.bf-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(34, 197, 94, 0.45);
}

.bf-cta:active {
  transform: translateY(0);
}

.bf-urgency {
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5f5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .bf-banner-wrapper {
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  }
}

@media (max-width: 1024px) {
  .bf-banner-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bf-banner-left {
    max-width: 420px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .bf-banner-content {
    align-items: center;
    text-align: center;
  }

  .bf-left-title {
    font-size: clamp(3.25rem, 9vw, 5.25rem);
  }

  .bf-benefits li {
    justify-content: center;
  }

  .bf-cta {
    width: 100%;
  }

  .bf-urgency {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .bf-banner {
    padding: 3rem 0;
  }

  .bf-banner-left {
    width: 100%;
    padding: 2.25rem 1.75rem;
  }

  .bf-banner-content {
    gap: 1.5rem;
  }

  .bf-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
}

@media (max-width: 480px) {
  .bf-banner-left {
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .bf-left-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
  }

  .bf-left-title {
    font-size: clamp(2.75rem, 12vw, 4.2rem);
  }

  .bf-banner-content {
    align-items: center;
    text-align: center;
  }

  .bf-benefits li {
    justify-content: center;
  }

  .bf-urgency {
    width: 100%;
    justify-content: center;
  }
}

/* Black Friday Fixed Banner */
.bf-fixed {
  position: sticky;
  top: var(--bf-banner-offset);
  z-index: 950;
  background: linear-gradient(90deg, #7f30c8 0%, #05000f 100%);
  color: #f8fafc;
  padding: 1rem 0;
  box-shadow: 0 20px 38px rgba(8, 2, 20, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bf-fixed.bf-hidden {
  display: none;
}

.bf-fixed-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}

.bf-fixed-badge-wrapper {
  display: flex;
  justify-content: space-between;
}

.bf-fixed-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffdf6b 0%, #ff7a18 100%);
  color: #121212;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
}

.bf-fixed-offer p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.bf-fixed-offer strong {
  font-weight: 700;
}

.bf-fixed-deadline,
.bf-fixed-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.bf-fixed-deadline::before,
.bf-fixed-actions::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  border-left: 1px dashed rgba(255, 255, 255, 0.28);
}

.bf-fixed-icon {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.9);
}

.bf-fixed-deadline-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bf-deadline-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.bf-deadline-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.75);
}

.bf-deadline-countdown {
  font-size: 0.9rem;
  font-weight: 5  00;
  letter-spacing: 0.02em;
  color: rgba(248, 250, 252, 0.9);
}

.bf-fixed-actions {
  gap: 0.75rem;
}

.bf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.5rem;
  border-radius: 999px;
  border: 1.5px dashed rgba(255, 255, 255, 0.28);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bf-btn-primary {
  background: #ffffff;
  color: #111827;
  border-color: rgba(255, 255, 255, 0.45);
}

.bf-btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.bf-btn-secondary {
  background: transparent;
  color: #f8fafc;
}

.bf-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.bf-fixed-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1.5px dashed rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(248, 250, 252, 0.75);
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bf-fixed-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

@media (max-width: 1024px) {
  .bf-fixed-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .bf-fixed-deadline,
  .bf-fixed-actions {
    padding-left: 0;
  }

  .bf-fixed-deadline::before,
  .bf-fixed-actions::before {
    display: none;
  }

  .bf-fixed-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) and (min-width: 641px) {
    .bf-fixed-actions {
    justify-content: space-between;
  }
  .bf-fixed-deadline.tablet-only {
    display: flex !important;
  }
  .tablet-only {
    display: block !important;
  }
  .desktop-only {
    display: none;
  }
}

@media (max-width: 640px) {
  .bf-btn {
    width: 100%;
  }

  .bf-fixed-close {
    width: 36px;
    height: 36px;
  }

  .mobile-only {
    display: block !important;
  }
  .desktop-only {
    display: none !important;
  }
  .tablet-only {
    display: none !important;
  }
  .bf-hide-mobile {
    display: none !important;
  }
}
.tablet-only {
  display: none;
}
.mobile-only {
  display: none;
}

/* Section Styles */
section:not(.bf-banner):not(.bf-fixed) {
  padding: 6rem 0;
}

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

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

/* How It Works */
.how-it-works {
  background: linear-gradient(to bottom, hsl(var(--secondary) / 0.3), hsl(var(--background)));
}

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

.step {
  text-align: center;
}

.step-number {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* Why Us */
.why-us {
  padding: 6rem 0;
  background: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.why-us-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-4px);
  border-color: #7C3AED;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.why-us-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}

.why-us-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Benefits Features */
.benefits-features {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

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

.benefit-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Economy Features */
.economy-features {
  padding: 6rem 0;
  background: #ffffff;
}

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

.economy-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.economy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.economy-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827;
}

.economy-card p {
  color: #6b7280;
  line-height: 1.6;
}

.economy-card code {
  background: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: #8B5CF6;
  font-weight: 600;
}

/* System Section (Psicoflow Sistema) */
.system-section {
  background: linear-gradient(to bottom, hsl(var(--secondary) / 0.2), hsl(var(--background)));
}

.system-section .section-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.system-card {
  background: #ffffff;
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.system-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--primary));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.system-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}

.system-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Destaque de resultado */
.system-highlight {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}

.system-highlight strong {
  color: hsl(var(--foreground));
}

/* Bloco Black Friday dentro da seção do sistema */
.system-bf {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.system-bf-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.system-bf p {
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
}

.system-bf .btn {
  margin-top: 0.5rem;
}

/* Templates */
.template-highlight {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px;
}

.template-highlight-card {
  background: #d5dced;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.3);
}

.template-highlight-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.template-card {
  aspect-ratio: 3/4;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.template-card:hover {
  transform: translateY(-8px);
}

.template-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.template-card:hover .template-overlay {
  opacity: 1;
}

.template-overlay h3 {
  color: white;
  margin-bottom: 0.25rem;
}

.template-overlay p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Features */
.psychology-features {
  background: hsl(var(--secondary) / 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid hsl(var(--primary));
}

.pricing-card.featured {
  border: 2px solid #10B981;
}

.price-subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.price-wrapper {
  margin-bottom: 1.5rem;
}

.old-price {
  font-size: 1.25rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-decoration: line-through;
  margin-bottom: 0.25rem;
  text-align: center;
}

.old-price-big {
  font-size: 2rem;
  font-weight: 500;
  color: grey;
  text-decoration: line-through;
  margin-top: 0.5rem;
}
.price {
  font-size: 3rem;
  font-weight: 800;
  color: hsl(var(--foreground));
}

.price span {
  font-size: 1.25rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}

.price-note {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.3rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.5rem 0;
  color: hsl(var(--foreground));
}

.pricing-card .btn {
  width: 100%;
}

/* Pricing Comparison */
.pricing-comparison {
  margin-top: 4rem;
}

.pricing-comparison h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.comparison-table {
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  border-bottom: 1px solid hsl(var(--border));
}

th {
  padding: 1rem;
  font-weight: 600;
  text-align: center;
}

th:first-child {
  text-align: left;
}

td {
  padding: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  text-align: center;
}

td:first-child {
  text-align: left;
  font-size: 0.875rem;
}

tr:last-child td {
  border-bottom: none;
}

.featured-col {
  background: hsl(var(--primary) / 0.05);
}

.subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}

.icon-check,
.icon-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  font-size: 0;
  vertical-align: middle;
}

.icon-check {
  background: #3bab5a;
  border: 2px solid #3bab5a;
  color: #fff;
  font-size: 16px;
}

.icon-x {
  background: transparent;
  border: 2px solid #c4c9d4;
  color: transparent;
}

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

.testimonial-card {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
}

.stars {
  color: #FCD34D;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.author strong {
  display: block;
  margin-bottom: 0.25rem;
}

.author span {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.testimonials-showcase {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.testimonials-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

@media (max-width: 768px) {
  .testimonials-showcase {
    max-width: 540px;
    padding: 0 1rem;
  }

  .testimonials-image {
    max-width: 520px;
    width: 100%;
  }

  .price {
    font-size: 2.4rem;
  }
}

/* FAQ */
.faq {
  background: hsl(var(--secondary) / 0.3);
}

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

.faq-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: hsl(var(--foreground));
}

.faq-question:hover {
  background: hsl(var(--accent));
}

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

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

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

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: hsl(var(--muted-foreground));
}

/* CTA */
.cta {
  background: var(--gradient-primary);
  color: white;
  padding: 6rem 0;
}

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

.cta h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta .cta-buttons {
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-footer {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Video Modal */
body.modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(7, 11, 30, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(79, 70, 229, 0.35));
}

.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  background: #0b1024;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
  padding: 1rem;
  overflow: hidden;
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.video-modal__ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-modal__ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background: hsl(var(--foreground));
  color: white;
  padding: 4rem 0 2rem;
}

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

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

.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column p {
  opacity: 0.8;
}

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

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

.footer-column a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
}

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

/* Black Friday System Section */
.system-bf-section {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:#F4E8FF;
  color: #5C507F;
}

.system-bf-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
}

/* Lado esquerdo */
.system-bf-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: #321845;
}

.system-bf-badge {
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.system-bf-subtitle {
  max-width: 540px;
  font-size: 1rem;
  line-height: 1.6;
  color: #5C507F;
  margin-bottom: 0.75rem;
}

.system-bf-highlight {
  max-width: 540px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #5C507F;
  margin-bottom: 1.5rem;
}

.system-bf-list {
  list-style: none;
  margin: 0;
  margin-top: 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.system-bf-list li {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  gap: 0.9rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.system-bf-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #E2D4FF;
  color: #7A4FE5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.system-bf-icon i {
  width: 16px;
  height: 16px;
}

/* Lado direito: cartão do combo */
.system-bf-right {
  display: flex;
  justify-content: flex-end;
}

.system-bf-card {
  background: linear-gradient(
    135deg,
    #1e1637 0%,   /* roxo profundo */
    #271b4f 45%,  /* roxo mais saturado */
    #020617 100%  /* quase preto azulado */
  );
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
  
  padding: 2rem;
  max-width: 380px;
  width: 100%;
}

.system-bf-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.system-bf-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f9fafb;
}

.system-bf-prices {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.system-bf-old-wrapper,
.system-bf-new-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.system-bf-old-label {
  color: #9ca3af;       /* cinza neutro, pouco destaque */
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.system-bf-new-label {
  color: #facc6b;       /* amarelo quente */
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.system-bf-old {
  color: #6b7280;       /* cinza mais escuro */
  text-decoration: line-through;
  font-size: 14px;
}

.system-bf-new {
  color: #fde68a;       /* amarelo claro, bem luminoso */
  font-size: 28px;
  font-weight: 700;
}

.system-bf-new span {
  color: #f9fafb;       /* "/mês" em branco suave */
  font-size: 14px;
  margin-left: 4px;
}

.system-bf-saving {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.system-bf-includes {
  margin-top: 32px;
  margin-bottom: 16px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.system-bf-includes-title {
  color: #e5e7eb;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.system-bf-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #cbd5f5;
  font-size: 13px;
}

.system-bf-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  margin-top: 18px;
  padding: 12px 20px;
  border-radius: 999px;

  background: #f9f5ff;           /* quase branco com lilás */
  color: #4c1d95;                /* roxo forte */
  border: 1px solid rgba(244, 234, 255, 0.7);

  font-weight: 600;
  font-size: 14px;
  cursor: pointer;

  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease,
              background-color 0.12s ease, border-color 0.12s ease;
}
.system-bf-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  background: #ffffff;
}

.system-bf-note {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  opacity: 0.85;
  color: #9ca3af;
}



/* Responsivo para a seção do sistema */
@media (max-width: 768px) {
  .system-bf-wrapper {
    grid-template-columns: 1fr;
  }

  .system-bf-right {
    justify-content: flex-start;
  }

  .system-bf-card {
    max-width: 100%;
  }
}


/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .social-proof {
    margin-top: 0.85rem;
  }

  /* Compacta espaçamento em mobile */
  .hero {
    padding: 5rem 0 3rem;
  }

  section:not(.bf-banner):not(.bf-fixed) {
    padding: 3.25rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-demo-desktop {
    display: none;
  }

  .hero-demo-mobile {
    display: block;
  }

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

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

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

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

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

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

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

  .hero-badge {
    bottom: 12px;
    right: 12px;
    padding-bottom: 8px;
    padding-left:  12px;
    padding-right:  12px;
    font-size: 12px;
  }

  .cta h2 {
    font-size: 2rem;
  }

  
}

.template-card{
  position: relative;  
  padding: 0;        /* zera o padding */
  border-radius: 16px;
  overflow: hidden;      /* corta qualquer sobra da imagem/overlay */
}

.template-card .template-image{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.template-card .template-overlay{
  position: absolute;
  inset: 0;
  padding: 16px;         /* padding só no overlay, não no card */
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 55%);
}


  /* (Opcional) se quiser forçar um formato visual uniforme para todos os cards */
   .template-card { aspect-ratio: 4 / 4; }  
   .template-card .template-image { height: 100%; } 

/* Garante que a imagem preencha o card e alinhe o recorte no topo */
.templates .template-card .template-image{
  display: block;        /* elimina o espaço da linha de base */
  width: 100%;
  height: 100%;          /* a altura do card manda */
  object-fit: cover;     /* preenche sem distorcer */
  object-position: top;  /* recorte começa no topo */
}
/* === Black Friday: 2 colunas, conteúdo centralizado e menos espaço no bottom === */
.bf-banner {
  /* reduz levemente o padding vertical para cortar o “vazio” no fundo */
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.bf-banner-wrapper {
  /* garante 2 colunas simétricas em desktop */
  grid-template-columns: 1fr 1fr;
  align-items: center;           /* centraliza verticalmente cada coluna */
}

.bf-banner-left,
.bf-banner-content {
  text-align: center;            /* centraliza textos/itens */
}

/* Centraliza os bullets quando o texto está centralizado */
.bf-benefits li { justify-content: center; }

/* Mantém 1 coluna no mobile como já estava */
@media (max-width: 1024px) {
  .bf-banner-wrapper { grid-template-columns: 1fr; }
}
/* --- Banner Black Friday: centro na coluna + texto à esquerda --- */

/* 2 colunas e conteúdo verticalmente centralizado */
.bf-banner-wrapper {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* Centraliza o BLOCO dentro da coluna, mas mantém text-align: left */
.bf-banner-left,
.bf-banner-content {
  justify-self: center;   /* centra o bloco na coluna */
  text-align: left;       /* textos alinhados à esquerda */
  width: 100%;
  max-width: 640px;       /* limite opcional pro bloco; ajuste se quiser */
}

/* Bullets voltam a alinhar à esquerda */
.bf-benefits li {
  justify-content: flex-start;
}

/* Menos espaço no bottom do banner */
.bf-banner {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

/* Mobile: 1 coluna, bloco ocupa toda a largura */
@media (max-width: 1024px) {
  .bf-banner-wrapper {
    grid-template-columns: 1fr;
  }
  .bf-banner-left,
  .bf-banner-content {
    justify-self: stretch;
    max-width: none;
  }
}


