:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --purple: #8b5cf6;
  --purple-dark: #7c3aed;
  --purple-light: #a78bfa;
  --white: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --border: rgba(139, 92, 246, 0.2);
  --border-hover: rgba(139, 92, 246, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-purple: 0 8px 32px rgba(139, 92, 246, 0.3);
  --max-width: 1200px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  margin: 0;
  padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
    line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  width: 100%;
  object-fit: contain;
}

/* Garantir que imagens não quebrem o layout */
.hero__image-wrapper img,
.benefit-item__media img,
.feature-image-wrapper img,
.mobile-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  h1,
  h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
  }
  
  h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
  
p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  }
  
  .container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

section {
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 1rem;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section__header h2 {
  margin-bottom: 1rem;
}

/* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }
  
  .btn--primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
  }
  
  .btn--primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
  }
  
  .btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
  }
  
  .btn--ghost:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--purple);
    transform: translateY(-2px);
  }
  
.btn--large {
  padding: 18px 36px;
  font-size: 1.1rem;
  min-height: 52px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn--full {
  width: 100%;
}

/* Header */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  }
  
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  gap: 2rem;
  }
  
  .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
    font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.logo span:first-child {
  font-size: 1.5rem;
  }
  
  .nav {
    display: flex;
    align-items: center;
  gap: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  .nav a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
  color: var(--purple);
  }
  
  .nav a::after {
    content: '';
    position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
    height: 2px;
  background: var(--purple);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header__cta {
  margin-left: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: fit-content;
  }
  
  .header__menu-button {
    display: none;
    flex-direction: column;
  gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  padding: 0.5rem;
  }
  
  .header__menu-button span {
    display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  }
  
  .header__menu-button--active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  }
  
  .header__menu-button--active span:nth-child(2) {
    opacity: 0;
  }
  
  .header__menu-button--active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  }
  
/* Hero */
  .hero {
  padding: 120px 0 80px;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 50%);
  }
  
  .hero__inner {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: start;
  }
  
  .hero__media {
    align-self: start;
  }
  
  .hero__eyebrow {
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--purple);
  }
  
  .hero__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__description strong {
  color: var(--purple);
  }
  
  .hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    width: 100%;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .hero__stats {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
    border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  }
  
.stat-card strong {
    display: block;
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.stat-card span {
  font-size: 0.875rem;
  color: var(--text-muted);
  }
  
  .hero__media {
  position: relative;
  }
  
.hero__image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 100%;
}

.hero__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 100%;
}

/* Pain Points */
.pain-points {
  background: var(--bg-secondary);
}

.pain-points__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pain-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
    border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pain-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  
.pain-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.pain-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.solution-pillars {
  background: var(--bg-tertiary);
  border: 2px solid var(--purple);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-top: 3rem;
}

.pillars__header {
  text-align: center;
  margin-bottom: 2rem;
}

.pillars__header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
    text-align: center;
}

.pillar-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.pillar-card h4 {
  margin-bottom: 0.75rem;
  color: var(--purple);
}

.pillar-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* Benefits */
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.benefit-item {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefit-item--reverse {
  direction: rtl;
}

.benefit-item--reverse > * {
  direction: ltr;
}

.benefit-item__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100%;
}

.benefit-item__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 100%;
  border-radius: var(--radius-lg);
}

.benefit-number {
  display: inline-block;
  font-size: 1rem;
    font-weight: 700;
  color: var(--purple);
  background: rgba(139, 92, 246, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.benefit-item__content h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.benefit-item__content ul {
  list-style: none;
  margin-top: 1.5rem;
}

.benefit-item__content li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

/* Features - Funcionalidades Detalhadas */
.features {
  background: var(--bg-primary);
  padding: 100px 0;
}

.feature-hero {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-hero--reverse {
  direction: rtl;
}

.feature-hero--reverse > * {
  direction: ltr;
}

.feature-icon {
  display: inline-block;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.feature-hero__content h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-subtitle {
  font-size: 1.25rem;
    font-weight: 600;
  color: var(--purple);
  margin-bottom: 1.5rem;
}

.feature-hero__content > p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.feature-list {
  list-style: none;
    display: grid;
  gap: 0.75rem;
}

.feature-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
    font-size: 1rem;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li:hover {
  color: var(--text-primary);
  padding-left: 0.5rem;
}

.feature-hero__media {
    position: relative;
}

.feature-image-wrapper {
  border-radius: var(--radius-lg);
    overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.feature-image-wrapper:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}

.feature-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.zoomable-image:hover {
  transform: scale(1.02);
}

.features__cta {
  text-align: center;
  margin-top: 5rem;
  padding: 3rem;
  background: var(--bg-secondary);
  border: 2px solid var(--purple);
  border-radius: var(--radius-xl);
}

.features__cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.features__cta-text strong {
  color: var(--purple);
  font-size: 1.5rem;
}

/* How It Works */
.how-it-works {
  background: var(--bg-secondary);
}

.steps__grid {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  }
  
  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-size: 1.5rem;
    font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.step-card p {
  font-size: 0.95rem;
  margin: 0;
}

.step-card p strong {
  color: var(--purple);
}

/* Reflection */
.reflection {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
}

.reflection__inner {
  max-width: 800px;
  margin: 0 auto;
}

.reflection__content {
  text-align: center;
}

.reflection__questions {
  margin: 3rem 0;
  text-align: left;
}

.question-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
    border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.question-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.question-item p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.reflection__cta-text {
  font-size: 1.125rem;
  margin: 2rem 0;
}

.reflection__cta-text strong {
  color: var(--purple);
}

/* Pricing */
.pricing {
  background: var(--bg-secondary);
}

.pricing__subtitle {
  font-size: 1.125rem;
  margin-top: 1rem;
}

.pricing__card-wrapper {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-tertiary);
  border: 2px solid var(--purple);
  border-radius: var(--radius-xl);
  padding: 3rem;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-purple);
}

.pricing-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.pricing-card__price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-currency {
  font-size: 1.5rem;
  vertical-align: top;
  color: var(--text-secondary);
}

.price-value {
  font-size: 4rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}

.price-period {
    display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.pricing-card__description {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__guarantee {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--purple);
    border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.guarantee-icon {
    font-size: 2rem;
  flex-shrink: 0;
}

.pricing-card__guarantee strong {
  display: block;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.pricing-card__guarantee p {
    margin: 0;
  font-size: 0.9rem;
}

.pricing-card__urgency {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
    color: var(--text-muted);
  }
  
.pricing-card__urgency strong {
  color: var(--purple);
}

/* Testimonials */
  .testimonials {
  background: var(--bg-primary);
  }
  
  .testimonials__grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  }
  
  .testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
    font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  }
  
.testimonial-author {
    display: flex;
  gap: 1rem;
    align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
    border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Mobile */
.mobile {
  background: var(--bg-secondary);
}

.mobile__inner {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
  }
  
.mobile__features {
  list-style: none;
  margin: 2rem 0;
}

.mobile__features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.mobile-mockup {
  border-radius: var(--radius-lg);
    overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-mockup img {
  width: 100%;
  max-width: 300px;
  height: auto;
    display: block;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* About Creator */
.about-creator {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.about-creator::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.creator__inner {
    display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}


.creator__media {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.creator__photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.creator__photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid var(--purple);
  box-shadow: 
    0 20px 60px rgba(139, 92, 246, 0.3),
    0 0 0 10px rgba(139, 92, 246, 0.1),
    0 0 0 20px rgba(139, 92, 246, 0.05);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  z-index: 2;
}

.creator__photo-wrapper:hover .creator__photo-frame {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateZ(30px);
  box-shadow: 
    0 30px 80px rgba(139, 92, 246, 0.4),
    0 0 0 10px rgba(139, 92, 246, 0.15),
    0 0 0 20px rgba(139, 92, 246, 0.08);
}

.creator__photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.5s ease;
}

.creator__photo-wrapper:hover .creator__photo {
  filter: grayscale(0%) contrast(1.2);
}

.creator__photo-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite;
}

.creator__photo-wrapper:hover .creator__photo-glow {
  opacity: 1;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.creator__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.creator__name {
    font-size: 2rem;
    font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
  }
  
.creator__title {
  font-size: 1.125rem;
  color: var(--purple);
  font-weight: 600;
    margin: 0;
}

.creator__experience {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
    margin: 0;
}

.creator__experience strong {
  color: var(--purple);
  font-weight: 600;
}

.creator__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1rem 0;
}

.creator__highlight {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
    border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.creator__highlight:hover {
  border-color: var(--purple);
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.creator__highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.creator__highlight strong {
  display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.creator__highlight p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.creator__mission {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 1px solid var(--border);
    border-radius: var(--radius-md);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.creator__mission strong {
  color: var(--purple);
    font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

/* Business Use */
.business-use {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.business-use__inner {
  max-width: 900px;
  margin: 0 auto;
}

.business-use__description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  text-align: center;
}

.business-use__description strong {
  color: var(--purple);
  font-weight: 600;
}

.business-use__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.business-use__benefit {
    display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.business-use__benefit:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.business-use__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.business-use__benefit strong {
    display: block;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.business-use__benefit p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .business-use__benefits {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .business-use__benefit {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .business-use__icon {
    font-size: 1.75rem;
    margin: 0 auto;
  }

  .business-use__description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .business-use__benefit {
    padding: 1rem;
  }

  .business-use__benefit strong {
    font-size: 1rem;
  }

  .business-use__benefit p {
    font-size: 0.875rem;
  }
}

/* FAQ */
.faq {
  background: var(--bg-primary);
  }
  
  .faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
    border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--purple);
}

.faq-item summary {
    font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-primary);
    cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--purple);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA Final */
.cta-final {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
  border-top: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
}

.cta-final__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final__eyebrow {
  font-size: 1rem;
    font-weight: 600;
  color: var(--purple);
  margin-bottom: 1rem;
}

.cta-final h2 {
  margin-bottom: 1.5rem;
}

.cta-final__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-final__description strong {
  color: var(--purple);
}

.cta-final__urgency {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--purple);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 2rem;
}

.cta-final__urgency p {
  margin: 0;
    font-size: 1rem;
}

.cta-final__urgency strong {
  color: var(--purple);
}

.btn--cta-final {
  margin-bottom: 1rem;
}

.cta-final__guarantee {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Footer */
  .footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  }
  
  .footer__inner {
    display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  margin: 1rem 0;
  max-width: 300px;
}


.footer__links {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  }
  
.footer__column strong {
    display: block;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
  }
  
.footer__column a {
    display: block;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  
.footer__column a:hover {
  color: var(--purple);
  }
  
  .footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  color: var(--text-muted);
    font-size: 0.9rem;
  margin: 0.5rem 0;
}

.footer__verse {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.verse-text {
  font-size: 12px!important;
  line-height: 1.6;
  color: #3333!important;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.verse-text em {
  color: #333;
  font-style: italic;
}

.verse-reference {
  font-size: 0.875rem;
  color: var(--purple);
  font-weight: 600;
  margin: 0;
  font-style: normal;
}

.logo--footer {
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__inner,
  .benefit-item,
  .mobile__inner,
  .feature-hero {
      grid-template-columns: 1fr;
    }
  
  .benefit-item--reverse,
  .feature-hero--reverse {
    direction: ltr;
  }

  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .creator__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .creator__media {
    justify-content: center;
  }

  .creator__photo-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }

  .creator__photo-frame {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  }

  .creator__name {
    font-size: 1.75rem;
  }

  .creator__title {
    font-size: 1rem;
  }

  .creator__highlights {
    gap: 1.25rem;
  }

  .creator__highlight {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .creator__highlight-icon {
    font-size: 1.75rem;
    margin: 0 auto;
  }

  .creator__mission {
    padding: 1.25rem;
    text-align: center;
  }

  section {
    padding: 3rem 0;
  }

  .container {
    width: min(94%, var(--max-width));
    padding: 0 1rem;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .hero__inner {
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero__description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .header {
    padding: 1rem 0;
  }

  .header__inner {
    padding: 0 1rem;
  }

    .header__menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0.75rem;
    }
  
    .nav {
      position: fixed;
    top: 70px;
    left: 1rem;
    right: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
      border-radius: var(--radius-md);
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
      opacity: 0;
      pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }

  .nav a {
    padding: 0.75rem 0;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    width: 100%;
    }
  
    .nav--open {
      opacity: 1;
      pointer-events: auto;
    transform: translateY(0);
  }

  .header__cta {
    display: none;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .pain-points__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pain-point {
    padding: 1.5rem;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-item {
    padding: 1.5rem;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .btn {
    min-height: 44px;
    min-width: 44px;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    touch-action: manipulation;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.4;
    text-align: center;
  }

  .btn--large {
      width: 100%;
    padding: 1rem 0.75rem;
    font-size: 1rem;
    min-height: 52px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
  }

  .feature-hero {
    margin-bottom: 3rem;
    padding: 1.5rem;
  }

  .feature-hero__content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }

  .feature-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .feature-list {
    font-size: 0.9375rem;
  }

  .feature-list li {
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .features__cta {
    padding: 1.5rem 1rem;
    text-align: center;
    }
  
    .hero__actions {
    flex-direction: column;
    gap: 1rem;
      width: 100%;
    }
  
    .hero__actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-card__features {
    gap: 0.75rem;
  }

  .pricing-card__features li {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
  }

  .testimonials__grid {
    gap: 1.5rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .faq-item summary {
    padding: 1rem;
    min-height: 44px;
    font-size: 1rem;
  }

  .faq-item p {
    padding: 0 1rem 1rem;
    font-size: 0.9375rem;
  }

  .footer__verse {
    padding: 1.5rem 1rem;
  }

  .verse-text {
    font-size: 0.625rem;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 0.8125rem;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 1rem;
  }

  h3 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .solution-pillars {
    padding: 1.5rem;
  }

  .pillar {
    padding: 1.25rem;
  }

  .mobile__inner {
    gap: 2rem;
  }

  .mobile__content {
    font-size: 0.9375rem;
  }

  .mobile__features {
    gap: 1rem;
  }

  .mobile__feature {
    padding: 1rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .creator__photo-wrapper {
    max-width: 250px;
  }

  .creator__name {
    font-size: 1.5rem;
  }

  .creator__title {
    font-size: 1rem;
  }

  .creator__experience {
    font-size: 0.9375rem;
  }

  .creator__highlight {
    padding: 1rem;
  }

  .creator__highlight strong {
    font-size: 1rem;
  }

  .creator__highlight p {
    font-size: 0.875rem;
  }

  .creator__mission {
    padding: 1rem;
    font-size: 0.9375rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .container {
    width: min(96%, var(--max-width));
    padding: 0 0.75rem;
  }

  .hero {
    padding: 4rem 0 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 9vw, 2rem);
  }

  .hero__description {
    font-size: 0.9375rem;
  }

  .pricing-card {
    padding: 1.5rem 1rem;
  }

  .price-value {
    font-size: 2.5rem;
  }

  .price-label {
    font-size: 0.875rem;
  }

  .solution-pillars {
    padding: 1.5rem 1rem;
  }

  .benefit-item__content h3 {
    font-size: 1.25rem;
  }

  .benefit-item__content p {
    font-size: 0.9375rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }

  .btn {
    font-size: 0.875rem;
    padding: 0.75rem 0.875rem;
    min-height: 44px;
    min-width: 44px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
  }

  .btn--large {
    font-size: 0.9375rem;
    padding: 0.875rem 0.75rem;
    min-height: 52px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
  }

  .feature-image-wrapper img {
    border-radius: var(--radius-md);
  }

  .header__inner {
    padding: 0 0.75rem;
  }

  .nav {
    left: 0.75rem;
    right: 0.75rem;
    padding: 1.25rem;
  }

  .footer {
    padding: 3rem 0 2rem;
  }

  .footer__inner {
    gap: 2rem;
  }

  .footer__links {
    gap: 1.25rem;
  }

  .footer__links a {
    font-size: 0.875rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .cta-final {
    padding: 2rem 1rem;
  }

  .cta-final h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .cta-final p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }
}

/* ============================================
   MODAL DE ZOOM DE IMAGENS
   ============================================ */

.image-zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-zoom-modal--active {
  opacity: 1;
  visibility: visible;
}

.image-zoom-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.image-zoom-modal__container {
  position: relative;
  width: 90%;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.image-zoom-modal--active .image-zoom-modal__container {
  transform: scale(1);
}

.image-zoom-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.image-zoom-modal__close:hover {
  background: var(--bg-primary);
  border-color: var(--purple);
  color: var(--purple);
  transform: rotate(90deg);
}

.image-zoom-modal__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.image-zoom-modal__img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .image-zoom-modal__container {
    width: 95%;
    max-width: 95vw;
    padding: 1rem;
  }

  .image-zoom-modal__close {
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .image-zoom-modal__img {
    max-height: 85vh;
  }
}

@media (max-width: 480px) {
  .image-zoom-modal__container {
    width: 100%;
    max-width: 100vw;
    padding: 0.5rem;
  }

  .image-zoom-modal__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }

  .image-zoom-modal__img {
    max-height: 80vh;
  }
}

/* ============================================
   MODAL DE CHECKOUT
   ============================================ */

.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-modal--active {
  opacity: 1;
  visibility: visible;
}

.checkout-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.checkout-modal__container {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), var(--shadow-purple);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.checkout-modal--active .checkout-modal__container {
  transform: scale(1) translateY(0);
}

.checkout-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkout-modal__close:hover {
  background: var(--bg-primary);
  border-color: var(--purple);
  color: var(--text-primary);
  transform: rotate(90deg);
}

.checkout-modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  flex: 1;
}

/* Lado Esquerdo - Arte */
.checkout-modal__art {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.checkout-modal__art::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.checkout-modal__art-content {
  position: relative;
  z-index: 1;
      text-align: center;
  color: var(--white);
}

.checkout-modal__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.checkout-modal__art-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.checkout-modal__art-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.checkout-modal__features {
  display: flex;
      flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.checkout-modal__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

.checkout-modal__feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Lado Direito - Formulário */
.checkout-modal__form {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.checkout-modal__form-content {
  width: 100%;
  max-width: 400px;
}

.checkout-modal__form-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.checkout-modal__form-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.checkout-modal__form-element {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-modal__input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkout-modal__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.checkout-modal__input {
      width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.checkout-modal__input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.checkout-modal__input::placeholder {
  color: var(--text-muted);
}

.checkout-modal__error {
  font-size: 0.85rem;
  color: #ef4444;
  min-height: 1.25rem;
}

.checkout-modal__summary {
  padding: 1.5rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-modal__summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.checkout-modal__summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.checkout-modal__submit {
  width: 100%;
  padding: 1rem;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
}

.checkout-modal__submit:hover:not(:disabled) {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.checkout-modal__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.checkout-modal__submit-loader {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.checkout-modal__security {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .checkout-modal__container {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .checkout-modal__content {
    grid-template-columns: 1fr;
    min-height: auto;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .checkout-modal__art {
    padding: 2rem 1.5rem;
    min-height: 200px;
    width: 100%;
    position: relative;
  }

  .checkout-modal__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .checkout-modal__art-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .checkout-modal__art-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .checkout-modal__features {
    gap: 0.75rem;
  }

  .checkout-modal__feature {
    font-size: 0.875rem;
    padding: 0.75rem;
    min-height: 44px;
  }

  .checkout-modal__form {
    padding: 2rem 1.5rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .checkout-modal__form-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .checkout-modal__form-element {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .checkout-modal__submit {
    width: 100%;
    margin-top: 0.5rem;
    background: var(--purple) !important;
    color: var(--white) !important;
    padding: 1rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
    border: none;
  }

  .checkout-modal__submit:hover:not(:disabled) {
    background: var(--purple-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
  }

  .checkout-modal__form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .checkout-modal__form-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .checkout-modal__input {
    font-size: 1rem;
    padding: 1rem;
    min-height: 52px;
      width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    border-radius: var(--radius-md);
  }

  .checkout-modal__submit {
    min-height: 52px;
    min-width: 100%;
    width: 100%;
    font-size: 0.9375rem;
    padding: 1rem 0.75rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .checkout-modal__submit-text {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .checkout-modal__close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .checkout-modal__summary {
    padding: 1.25rem;
  }

  .checkout-modal__summary-item {
    font-size: 0.875rem;
  }

  .checkout-modal__summary-total {
    font-size: 1rem;
  }

  .checkout-modal__security {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .checkout-modal__art {
    padding: 1.5rem 1rem;
    min-height: 180px;
    flex-shrink: 0;
  }

  .checkout-modal__icon {
    font-size: 2.5rem;
  }

  .checkout-modal__art-title {
    font-size: 1.25rem;
  }

  .checkout-modal__art-text {
    font-size: 0.875rem;
  }

  .checkout-modal__feature {
    font-size: 0.8125rem;
    padding: 0.625rem;
  }

  .checkout-modal__form {
    padding: 1.5rem 1rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .checkout-modal__form-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
  }

  .checkout-modal__form-element {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
  }

  .checkout-modal__submit {
    width: 100%;
    margin-top: 0.5rem;
    background: var(--purple) !important;
    color: var(--white) !important;
    padding: 1rem;
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
    border: none;
  }

  .checkout-modal__submit:hover:not(:disabled) {
    background: var(--purple-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
  }

  .checkout-modal__form-title {
    font-size: 1.25rem;
  }

  .checkout-modal__form-subtitle {
    font-size: 0.8125rem;
  }

  .checkout-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    }
  }

/* ============================================
   MODAIS LEGAIS (Política, Termos, LGPD)
   ============================================ */

.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.legal-modal--active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.legal-modal__container {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), var(--shadow-purple);
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.legal-modal:not(.legal-modal--active) .legal-modal__container,
.legal-modal:not(.legal-modal--active) .legal-modal__content,
.legal-modal:not(.legal-modal--active) .legal-modal__body {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.legal-modal--active .legal-modal__container {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) translateY(0);
}

.legal-modal--active .legal-modal__content,
.legal-modal--active .legal-modal__body {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.legal-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.legal-modal__close:hover {
  background: var(--bg-primary);
  border-color: var(--purple);
  color: var(--text-primary);
  transform: rotate(90deg);
}

.legal-modal__content {
  padding: 3rem;
  overflow-y: auto;
  flex: 1;
}

.legal-modal__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  border-bottom: 2px solid var(--purple);
  padding-bottom: 1rem;
}

.legal-modal__body {
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-modal__body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-modal__body h3:first-of-type {
  margin-top: 0;
}

.legal-modal__body p {
  margin-bottom: 1rem;
}

.legal-modal__body ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-modal__body li {
  margin-bottom: 0.75rem;
}

.legal-modal__body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-modal__body a {
  color: var(--purple);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-modal__body a:hover {
  color: var(--purple-light);
}

/* Responsive para Modais Legais */
@media (max-width: 768px) {
  .legal-modal {
    padding: 0.5rem;
  }

  .legal-modal__container {
    max-height: 95vh;
    border-radius: var(--radius-lg);
  }

  .legal-modal__content {
    padding: 2rem 1.5rem;
  }

  .legal-modal__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .legal-modal__body h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }

  .legal-modal__close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 480px) {
  .legal-modal__content {
    padding: 1.5rem 1rem;
  }

  .legal-modal__title {
    font-size: 1.25rem;
  }

  .legal-modal__body {
    font-size: 0.9rem;
  }

  .legal-modal__body h3 {
    font-size: 1rem;
    }
  }
  