/* Step 3 - Comparison Section */
.step3-section {
  width: 100%;
  max-width: 440px;
  padding-top: clamp(32px, 8vh, 64px);
  padding-bottom: clamp(32px, 8vh, 64px);
}

.step3-headline {
  font-size: clamp(18px, 4.8vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 14px;
  text-align: center;
  max-width: 400px;
}

.step3-headline .highlight {
  color: var(--color-accent);
}

/* Comparison cards container */
.step3-comparison {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 32px;
}

/* Base card styles */
.step3-card {
  width: 100%;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: left;
}

.step3-card-title {
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step3-card-title svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.step3-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step3-card-list li {
  font-size: clamp(12px, 3.2vw, 14px);
  color: var(--color-text-secondary);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.step3-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* SEM O MÉTODO card */
.step3-card--sem {
  background: var(--color-red-bg);
  border: 1px solid var(--color-red-border);
}

.step3-card--sem .step3-card-title {
  color: var(--color-red);
}

.step3-card--sem .step3-card-list li::before {
  background: var(--color-red);
}

/* COM O MÉTODO card */
.step3-card--com {
  background: var(--color-accent-light);
  border: 1px solid rgba(76, 175, 139, 0.2);
}

.step3-card--com .step3-card-title {
  color: var(--color-accent);
}

.step3-card--com .step3-card-list li::before {
  background: var(--color-accent);
}

/* Transition text */
.step3-transition {
  font-size: clamp(13px, 3.5vw, 15px);
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 380px;
  padding: 0 16px;
}

/* CTA button container */
.step3-cta {
  margin-top: 32px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step3-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.step3-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: clamp(15px, 3.8vw, 17px);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  padding: 18px 48px;
  cursor: pointer;
  box-shadow:
    0 4px 14px rgba(76, 175, 139, 0.25),
    0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.step3-cta-button:hover {
  background: var(--color-accent-hover);
  box-shadow:
    0 6px 20px rgba(76, 175, 139, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.step3-cta-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 2px 8px rgba(76, 175, 139, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Animation classes */
.step3-anim {
  opacity: 0;
  transform: translateY(14px);
}

.step3-anim.step3-visible {
  animation: step3FadeIn 0.6s ease forwards;
}

@keyframes step3FadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step3-delay-1 { animation-delay: 0.1s !important; }
.step3-delay-2 { animation-delay: 0.3s !important; }
.step3-delay-3 { animation-delay: 0.5s !important; }
.step3-delay-4 { animation-delay: 0.7s !important; }
.step3-delay-5 { animation-delay: 0.9s !important; }
.step3-delay-6 { animation-delay: 1.1s !important; }
