/* ============================================================
   RESET & BASE
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors — Light Clean Theme */
  --dark-950: #ffffff;
  --dark-900: #f9fafb;
  --dark-850: #f3f4f6;
  --dark-800: #e5e7eb;
  --dark-700: #d1d5db;

  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #1d4ed8;

  --orange-700: #c2410c;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-400: #fb923c;

  --gray-100: #111827;
  --gray-200: #1f2937;
  --gray-300: #374151;
  --gray-400: #4b5563;
  --gray-500: #6b7280;
  --gray-600: #9ca3af;
  --gray-700: #d1d5db;

  --white: #111827;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-gap: 7rem 0;
  --section-gap-mobile: 4rem 0;

  /* Effects */
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-200);
  background: #ffffff;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-title-alt {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-title-proof {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-title-scale {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-400);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-subtitle-proof {
  font-size: 1.125rem;
  color: var(--gray-400);
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--cta {
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 100%);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 4px 14px 0 rgba(234, 88, 12, 0.39);
}

.btn--cta:hover {
  background: linear-gradient(135deg, var(--orange-700) 0%, var(--orange-600) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px -5px rgba(234, 88, 12, 0.5);
}

.btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.btn--large {
  padding: 1.25rem 2.75rem;
  font-size: 1.125rem;
}

.btn--xlarge {
  padding: 1.5rem 3.5rem;
  font-size: 1.25rem;
}

/* ============================================================
   CTA SECTION (entre seções)
============================================================ */
.section-cta {
  padding: 4rem 0;
  text-align: center;
}

.section-cta__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-cta__subtext {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.header__brand {
  font-size: 1.625rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  padding: var(--section-gap);
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 3rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-400);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero__headline {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.hero__accent {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__body {
  margin-bottom: 2.5rem;
}

.hero__text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.hero__contrast {
  font-size: 1.375rem;
  line-height: 1.5;
  color: var(--white);
}

.hero__guarantee {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-top: 1.25rem;
  text-align: center;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.hero__image:hover {
  transform: scale(1.02);
}

.hero__video {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(234, 88, 12, 0.3);
  transition: all 0.4s ease;
  display: block;
  margin: 0 auto;
}

.hero__video:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 60px -15px rgba(234, 88, 12, 0.25);
  border-color: rgba(234, 88, 12, 0.5);
}

.video-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: opacity 0.3s ease;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.4);
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(234, 88, 12, 0.6);
}

.play-icon {
  color: white;
  font-size: 2rem;
  margin-left: 5px;
}

.hero__video.playing + .video-controls {
  opacity: 0;
  pointer-events: none;
}

.hero__video-cta {
  margin-top: 3rem;
  text-align: center;
}

.btn--pulse-strong {
  animation: pulse-cta-strong 1.5s ease-in-out infinite;
  font-size: 1.375rem;
  padding: 1.75rem 4rem;
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@keyframes pulse-cta-strong {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(234, 88, 12, 0.5);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 15px 45px 0 rgba(234, 88, 12, 0.8),
                0 0 0 0 rgba(234, 88, 12, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(234, 88, 12, 0.5),
                0 0 0 25px rgba(234, 88, 12, 0);
  }
}

.btn--pulse-strong:hover {
  animation: none;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 50px -5px rgba(234, 88, 12, 0.7);
}

.hero__video-cta-subtitle {
  font-size: 1rem;
  color: var(--gray-400);
  margin-top: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .hero__video {
    max-width: 100%;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .play-icon {
    font-size: 1.5rem;
  }

  .hero__video-cta {
    margin-top: 2rem;
  }

  .btn--pulse-strong {
    font-size: 1.125rem;
    padding: 1.5rem 2.5rem;
  }

  .hero__video-cta-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 967px) {
  .hero__headline {
    font-size: 2.25rem;
  }

  .hero__text {
    font-size: 1.125rem;
  }

  .hero__contrast {
    font-size: 1.25rem;
  }
}

/* ============================================================
   PROBLEM SECTION
============================================================ */
.problem {
  padding: var(--section-gap);
  background: #ffffff;
}

.problem__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem__intro {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--gray-300);
}

.problem__intro p {
  margin-bottom: 0.5rem;
}

.problem__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .problem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.problem__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.problem__card:hover {
  border-color: rgba(234, 88, 12, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.2);
}

.problem__number {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(234, 88, 12, 0.12);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--orange-400);
  margin-bottom: 1.5rem;
}

.problem__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.problem__text {
  font-size: 1.0625rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.problem__conclusion {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(234, 88, 12, 0.06);
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: var(--radius);
}

.problem__conclusion p {
  font-size: 1.25rem;
  color: var(--gray-200);
  margin-bottom: 0.75rem;
}

.problem__conclusion p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   SOLUTION INTRO SECTION
============================================================ */
.solution-intro {
  padding: var(--section-gap);
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.solution-intro__inner {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.solution-intro__text {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.solution-intro__desc {
  font-size: 1.1875rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 4rem;
}

.solution-intro__visual {
  max-width: 950px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.solution-intro__image {
  width: 100%;
  height: auto;
}

/* ============================================================
   HOW IT WORKS SECTION
============================================================ */
.how-it-works {
  padding: var(--section-gap);
  background: #ffffff;
}

.steps {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  justify-items: center;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }
}

.step {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.step__number {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-400);
  margin-bottom: 1.5rem;
  align-self: center;
}

.step__visual {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-lg);
}

.step__image {
  width: 100%;
  height: auto;
  display: block;
}

.step__content {
  flex: 1;
}

.step__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step__text {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ============================================================
   PROOF SECTION
============================================================ */
.proof {
  padding: var(--section-gap);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.proof__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.proof-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.proof-item:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: var(--shadow-lg);
}

.proof-item--highlight {
  border-color: rgba(234, 88, 12, 0.35);
  background: rgba(234, 88, 12, 0.04);
}

.proof-item--highlight:hover {
  border-color: rgba(234, 88, 12, 0.6);
}

.proof-item__label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-400);
  margin-bottom: 1.5rem;
}

.proof-item__label--highlight {
  background: rgba(234, 88, 12, 0.12);
  border-color: rgba(234, 88, 12, 0.35);
  color: var(--orange-400);
}

.proof-item__visual {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.proof-item__image {
  width: 100%;
  height: auto;
}

.proof-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.proof-item__text {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.proof__footer {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.proof__footer p {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
}

.proof__footer p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   COMMISSIONS SECTION
============================================================ */
.commissions {
  padding: var(--section-gap);
  background: #ffffff;
}

.commissions__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .commissions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.commission-card {
  background: #ffffff;
  border: 1px solid rgba(234, 88, 12, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.commission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 88, 12, 0.6);
  box-shadow: 0 20px 40px -10px rgba(234, 88, 12, 0.3);
}

.commission-card__label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(234, 88, 12, 0.12);
  border: 1px solid rgba(234, 88, 12, 0.35);
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange-400);
  margin-bottom: 1.5rem;
}

.commission-card__visual {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-lg);
}

.commission-card__image {
  width: 100%;
  height: auto;
}

.commission-card__text {
  font-size: 1.0625rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.commissions__footer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(234, 88, 12, 0.06);
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: var(--radius);
}

.commissions__footer p {
  font-size: 1.25rem;
  color: var(--gray-200);
  margin-bottom: 0.75rem;
}

.commissions__footer p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testimonials {
  padding: var(--section-gap);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonials__grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.3);
}

.testimonial-card__label {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-400);
  margin-bottom: 2rem;
  align-self: center;
}

.testimonial-card__text {
  font-size: 1.125rem;
  color: var(--gray-200);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   SCALE SECTION
============================================================ */
.scale {
  padding: var(--section-gap);
  background: #ffffff;
}

.scale__blocks {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .scale__blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.scale-block {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.scale-block:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.scale-block__icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-500) 100%);
  color: #ffffff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 2rem;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-md);
}

.scale-block__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.scale-block__text {
  font-size: 1.0625rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.scale__conclusion {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius);
}

.scale__conclusion p {
  font-size: 1.25rem;
  color: var(--gray-200);
  margin-bottom: 0.75rem;
}

.scale__conclusion p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   BENEFITS SECTION
============================================================ */
.benefits {
  padding: var(--section-gap);
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.benefits__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 968px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.benefit:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.benefit__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.benefit__text {
  font-size: 1.0625rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ============================================================
   MOBILE HIGHLIGHT SECTION
============================================================ */
.mobile-highlight {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 100%);
  position: relative;
  overflow: hidden;
}

.mobile-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.mobile-highlight__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mobile-highlight__icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.mobile-highlight__title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .mobile-highlight__title {
    font-size: 2.5rem;
  }
}

.mobile-highlight__subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.mobile-highlight__features {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .mobile-highlight__features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mobile-feature {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #ffffff;
}

.mobile-feature__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mobile-feature__text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

/* ============================================================
   REQUIREMENTS SECTION
============================================================ */
.requirements {
  padding: 4rem 0;
  background: #f9fafb;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.requirements__inner {
  max-width: 900px;
  margin: 0 auto;
}

.requirements__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
}

.requirements__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .requirements__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.requirement-card {
  background: #ffffff;
  border: 2px solid rgba(234, 88, 12, 0.4);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.requirement-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.requirement-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange-400);
  margin-bottom: 0.75rem;
}

.requirement-card__text {
  font-size: 1rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.requirements__note {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--gray-400);
  font-style: italic;
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq {
  padding: var(--section-gap);
  background: #ffffff;
}

.faq__inner {
  max-width: 950px;
  margin: 0 auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq__item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.faq__item:hover {
  border-color: rgba(37, 99, 235, 0.35);
}

.faq__item[open] {
  border-color: rgba(37, 99, 235, 0.5);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__toggle {
  flex-shrink: 0;
  font-size: 1.75rem;
  color: var(--blue-500);
  font-weight: 300;
  margin-left: 1.5rem;
}

.faq__answer {
  padding: 0 2rem 2rem;
}

.faq__answer p {
  font-size: 1.0625rem;
  color: var(--gray-400);
  line-height: 1.75;
}

/* ============================================================
   OFFER SECTION
============================================================ */
.offer {
  padding: var(--section-gap);
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.offer__inner {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.offer__headline {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.offer__subtext {
  font-size: 1.1875rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 4rem;
  text-align: left;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.offer__pricing {
  margin-bottom: 3rem;
}

.offer__price-old {
  font-size: 1.75rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-bottom: 0.75rem;
}

.offer__price-main {
  font-size: 5rem;
  font-weight: 900;
  color: var(--orange-500);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.offer__price-details {
  font-size: 1.125rem;
  color: var(--gray-400);
}

.offer__guarantee-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 650px;
  margin: 3.5rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  text-align: left;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.offer__guarantee-image {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  object-fit: contain;
}

.offer__guarantee-text strong {
  display: block;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.offer__guarantee-text p {
  font-size: 1.0625rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.offer__note {
  font-size: 1rem;
  color: var(--gray-500);
  margin-top: 3rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .offer__headline {
    font-size: 2.25rem;
  }

  .offer__price-main {
    font-size: 3.5rem;
  }

  .offer__guarantee-block {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   FINAL CTA SECTION
============================================================ */
.final-cta {
  padding: var(--section-gap);
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.final-cta__inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__headline {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.final-cta__subtext {
  font-size: 1.5rem;
  color: var(--gray-400);
  margin-bottom: 3rem;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: 4rem 0;
  background: #f9fafb;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer__inner {
  text-align: center;
}

.footer__copyright {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.footer__disclaimer {
  font-size: 0.875rem;
  color: var(--gray-600);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   ANIMATIONS & SCROLL EFFECTS
============================================================ */

/* Scroll Reveal - elementos aparecem ao scroll */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay para cards em sequência */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Pulso chamativo no CTA principal */
@keyframes pulse-cta {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 14px 0 rgba(234, 88, 12, 0.39);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 30px 0 rgba(234, 88, 12, 0.7),
                0 0 0 0 rgba(234, 88, 12, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 14px 0 rgba(234, 88, 12, 0.39),
                0 0 0 20px rgba(234, 88, 12, 0);
  }
}

.btn--cta {
  animation: pulse-cta 2s ease-in-out infinite;
  position: relative;
}

.btn--cta:hover {
  animation: none;
  transform: translateY(-3px);
}

/* Efeito de onda expandindo (ripple) */
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.5),
                0 0 0 0 rgba(234, 88, 12, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(234, 88, 12, 0),
                0 0 0 0 rgba(234, 88, 12, 0.5);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(234, 88, 12, 0),
                0 0 0 30px rgba(234, 88, 12, 0);
  }
}

/* Fade-in suave para imagens */
.fade-in-image {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in-image.loaded {
  opacity: 1;
}

/* Counter animation (será controlado por JS) */
.counter {
  display: inline-block;
}

/* Shake suave para chamar atenção em elementos importantes */
@keyframes subtle-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

.attention-shake {
  animation: subtle-shake 0.5s ease-in-out;
}

/* Glow effect para elementos destacados */
@keyframes glow-orange {
  0%, 100% {
    box-shadow: 0 0 5px rgba(234, 88, 12, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(234, 88, 12, 0.6);
  }
}

.glow-effect {
  animation: glow-orange 2s ease-in-out infinite;
}

/* Micro-interaction: Scale suave ao hover (melhoria) */
.scale-hover {
  transition: transform 0.3s ease;
}

.scale-hover:hover {
  transform: scale(1.02);
}

/* Entrada suave do hero */
.hero__content > * {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.3s; }
.hero__content > *:nth-child(3) { animation-delay: 0.5s; }
.hero__content > *:nth-child(4) { animation-delay: 0.7s; }

.hero__visual {
  opacity: 0;
  animation: fadeInRight 1s ease-out 0.5s forwards;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reduce motion para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
  }

  .hero__content > *,
  .hero__visual {
    opacity: 1;
    animation: none;
  }
}

/* ============================================================
   MOBILE ADJUSTMENTS
============================================================ */
@media (max-width: 767px) {
  :root {
    --section-gap: 4rem 0;
  }

  .section-title,
  .section-title-alt,
  .section-title-proof,
  .section-title-scale {
    font-size: 2rem;
  }

  .section-subtitle,
  .section-subtitle-proof {
    font-size: 1.125rem;
  }

  .final-cta__headline {
    font-size: 2rem;
  }

  .final-cta__subtext {
    font-size: 1.25rem;
  }
}
