/* ============================================
   VARIÁVEIS E RESET
   ============================================ */

:root {
  /* Cores Principais */
  --primary: #FF7A00;
  --primary-hover: #ea580c;
  --primary-dark: #c2410c;
  
  /* Cores Secundárias */
  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  
  /* Cores de Fundo */
  --bg-white: #ffffff;
  --bg-yellow-50: #fefce8;
  --bg-orange-50: #fff7ed;
  --bg-gray-50: #f1f5f9;
  
  /* Cores de Texto */
  --text-gray-800: #1f2937;
  --text-gray-700: #374151;
  --text-gray-500: #6b7280;
  --text-white: #ffffff;
  
  /* Cores de Apoio */
  --green: #10b981;
  --purple: #a855f7;
  --blue: #3b82f6;
  --red: #ef4444;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-custom: 0 8px 30px rgb(0 0 0 / 0.12);
  --shadow-hover: 0 15px 40px rgb(0 0 0 / 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  position: relative;
  background-image: url('images/fundo-de-textura-de-papel-branco.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  padding-top: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* ============================================
   TIPOGRAFIA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  color: var(--text-gray-800);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

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

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  line-height: 1.75;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--yellow-500));
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(to right, var(--primary-hover), var(--yellow-500));
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--bg-orange-50);
  transform: scale(1.02);
}

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

.btn-form {
  width: 100%;
  margin-top: 1rem;
}

.btn-primary span {
  margin-right: 0.5rem;
}

/* ============================================
   BARRA FIXA DE URGÊNCIA
   ============================================ */

.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(to right, var(--primary), var(--primary-hover));
  color: var(--text-white);
  text-align: center;
  padding: 0.5rem 1rem;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: pulse-bar 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.sticky-bar p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.sticky-bar strong {
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .sticky-bar {
    padding: 0.4rem 0.75rem;
  }
  
  .sticky-bar p {
    font-size: 0.7rem;
  }
  
  .sticky-bar strong {
    font-size: 0.8rem;
  }
}

@keyframes pulse-bar {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}

/* ============================================
   HEADER / CABEÇALHO
   ============================================ */

.main-header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease-out;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .main-header {
    top: 28px;
  }
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}

.navbar-brand {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease-out;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .logo-img {
    height: 40px;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-gray-800);
  border-radius: 3px;
  transition: all 0.3s ease-out;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 968px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 968px) {
  .navbar-menu {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }
}

.nav-link {
  color: var(--text-gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease-out;
  position: relative;
  padding: 0.5rem 0;
  display: block;
}

@media (min-width: 969px) {
  .nav-link {
    padding: 0.5rem 0;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--yellow-500));
    transition: width 0.3s ease-out;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-link:hover {
    color: var(--primary);
  }
}

@media (max-width: 968px) {
  .nav-link {
    padding: 1rem 1.5rem;
    display: block;
    width: 100%;
  }
  
  .nav-link:hover {
    background: var(--bg-orange-50);
    color: var(--primary);
  }
}

.nav-cta {
  background: linear-gradient(to right, var(--primary), var(--yellow-500));
  color: var(--text-white) !important;
  padding: 0.625rem 1.5rem !important;
  border-radius: 0.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease-out;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(to right, var(--primary-hover), var(--yellow-500));
}

@media (max-width: 968px) {
  .nav-cta {
    margin: 1rem 1.5rem;
    text-align: center;
    border-radius: 0.75rem;
  }
}


/* ============================================
   SEÇÃO HERO COM FORMULÁRIO
   ============================================ */

.hero-section {
  min-height: 600px;
  padding: 2rem 0 4rem;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: 600px;
    padding: 3rem 0 5rem;
  }
}

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-gray-800);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-title .highlight-orange {
  color: var(--primary);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray-700);
  margin-bottom: 0;
  line-height: 1.75;
}

.hero-subtitle strong {
  color: var(--text-gray-800);
  font-weight: 600;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.hero-feature-card {
  background: var(--bg-white);
  border: 2px solid #f1f5f9;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease-out;
}

.hero-feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.15);
}

.hero-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, var(--primary), var(--yellow-500));
  border-radius: 12px;
  color: var(--text-white);
  font-size: 1.5rem;
}

.hero-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gray-800);
  margin-bottom: 0.5rem;
}

.hero-feature-desc {
  font-size: 0.875rem;
  color: var(--text-gray-500);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   FORMULÁRIO DE CADASTRO
   ============================================ */

.hero-form-container {
  position: relative;
  z-index: 2;
}

.form-card {
  background: var(--bg-white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 2px solid var(--primary);
  transform: scale(1);
  transition: all 0.3s ease-out;
}

.form-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-gray-800);
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--primary), var(--yellow-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  font-size: 1rem;
  color: var(--text-gray-600);
  font-weight: 500;
}

.affiliate-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-gray-800);
  margin-bottom: 0.5rem;
}

.form-group input {
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease-out;
  background: var(--bg-white);
  width: 100%;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.15);
  transform: translateY(-1px);
}

.form-footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-gray-500);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lock-icon {
  font-size: 1rem;
}

/* ============================================
   SEÇÃO HEADER
   ============================================ */

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-gray-800);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   SEÇÃO OPORTUNIDADE
   ============================================ */

.opportunity-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

@media (min-width: 1024px) {
  .opportunity-section {
    padding: 6rem 0;
  }
}

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

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

@media (min-width: 1024px) {
  .opportunity-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.opportunity-card {
  background: var(--bg-white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease-out;
  border: 2px solid transparent;
}

.opportunity-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.opportunity-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.opportunity-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-gray-800);
}

.opportunity-card p {
  color: var(--text-gray-500);
  line-height: 1.75;
}

.opportunity-card p strong {
  color: var(--text-gray-800);
  font-weight: 600;
}

.bonus-section {
  background: var(--bg-yellow-50);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-md);
}

.bonus-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-gray-800);
  margin-bottom: 1.5rem;
  text-align: center;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.bonus-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-white);
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-gray-700);
  box-shadow: var(--shadow-sm);
}

.bonus-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ============================================
   SEÇÃO PARA QUEM É
   ============================================ */

.qualify-section {
  padding: 5rem 0;
  background: var(--bg-gray-50);
}

@media (min-width: 1024px) {
  .qualify-section {
    padding: 6rem 0;
  }
}

.qualify-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.qualify-card {
  background: var(--bg-white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease-out;
}

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

.qualify-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.qualify-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.qualify-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-gray-800);
  margin: 0;
}

.qualify-yes {
  border-top: 4px solid var(--green);
}

.qualify-no {
  border-top: 4px solid var(--red);
}

.qualify-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qualify-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray-700);
  line-height: 1.75;
}

.qualify-yes .qualify-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1.25rem;
}

.qualify-no .qualify-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ============================================
   SEÇÃO GANHOS
   ============================================ */

.earnings-section {
  padding: 5rem 0;
  background: var(--bg-yellow-50);
}

@media (min-width: 1024px) {
  .earnings-section {
    padding: 6rem 0;
  }
}

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

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

.earning-card {
  background: var(--bg-white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease-out;
  position: relative;
}

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

.earning-card.earning-featured {
  border: 3px solid var(--primary);
  transform: scale(1.05);
}

@media (max-width: 639px) {
  .earning-card.earning-featured {
    transform: scale(1);
  }
}

.earning-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, var(--primary), var(--yellow-500));
  color: var(--text-white);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.earning-badge.featured {
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  font-size: 0.875rem;
}

.earning-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.earning-period {
  font-size: 1rem;
  color: var(--text-gray-500);
  margin-bottom: 1.5rem;
}

.earning-details {
  text-align: left;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.earning-details p {
  margin-bottom: 0.5rem;
  color: var(--text-gray-700);
  font-size: 0.875rem;
}

.earnings-note {
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}

.earnings-note p {
  color: var(--text-gray-700);
  line-height: 1.75;
}

/* ============================================
   SEÇÃO POR QUE AS MÃES AMAM COMPRAR
   ============================================ */

.why-moms-love-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

@media (min-width: 1024px) {
  .why-moms-love-section {
    padding: 6rem 0;
  }
}

.why-moms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .why-moms-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-moms-card {
  background: var(--bg-yellow-50);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease-out;
  border: 2px solid transparent;
}

.why-moms-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.why-moms-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.why-moms-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-gray-800);
}

.why-moms-card p {
  color: var(--text-gray-700);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.why-moms-card p strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
}

/* ============================================
   SEÇÃO COMO FUNCIONA
   ============================================ */

.how-it-works-section {
  padding: 5rem 0;
  background: #FFFBF5; /* Seção 6 - Laranja Bem Claro */
}

@media (min-width: 1024px) {
  .how-it-works-section {
    padding: 6rem 0;
  }
}

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

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

.step-card {
  background: var(--bg-yellow-50);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-out;
  border: 2px solid transparent;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, var(--primary), var(--yellow-500));
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.step-time {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-gray-800);
}

.step-card p {
  color: var(--text-gray-700);
  line-height: 1.75;
}

.steps-result {
  background: linear-gradient(to right, var(--primary), var(--yellow-500));
  color: var(--text-white);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.result-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.steps-result p {
  font-size: 1.125rem;
  color: var(--text-white);
  margin: 0;
}

.steps-result strong {
  font-weight: 700;
}

/* ============================================
   SEÇÃO BENEFÍCIOS DO PROGRAMA
   ============================================ */

.program-benefits-section {
  padding: 5rem 0;
  background: var(--bg-orange-50);
}

@media (min-width: 1024px) {
  .program-benefits-section {
    padding: 6rem 0;
  }
}

.program-benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.program-benefit-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--bg-white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 1024px) {
  .program-benefit-item {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }
  
  .program-benefit-reverse {
    direction: rtl;
  }
  
  .program-benefit-reverse > * {
    direction: ltr;
  }
}

.program-benefit-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.program-benefit-emoji {
  font-size: 6rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.program-benefit-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-gray-800);
}

.program-benefit-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-benefit-content li {
  font-size: 1rem;
  color: var(--text-gray-700);
  line-height: 1.75;
}

/* ============================================
   SEÇÃO DEPOIMENTOS
   ============================================ */

.testimonials-section {
  padding: 5rem 0;
  background: #FFFFFF; /* Seção 3 - Branco */
}

@media (min-width: 1024px) {
  .testimonials-section {
    padding: 6rem 0;
  }
}

.social-proof-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .social-proof-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: linear-gradient(to bottom right, var(--primary), var(--yellow-500));
  color: var(--text-white);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease-out;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.95;
  line-height: 1.4;
}

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

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

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

.testimonial-card {
  background: var(--bg-white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease-out;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: 1rem;
}

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

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--primary), var(--yellow-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-gray-800);
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--text-gray-500);
}

/* ============================================
   SEÇÃO CTA FINAL
   ============================================ */

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, var(--primary), var(--yellow-500));
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 6rem 0;
  }
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-emojis {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-emoji {
  position: absolute;
  font-size: 3rem;
  animation: bounce-soft 2s ease-in-out infinite;
}

.emoji-bounce-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.emoji-bounce-2 {
  top: 20%;
  right: 15%;
  animation-delay: 0.5s;
}

.emoji-bounce-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 1s;
}

.emoji-bounce-4 {
  bottom: 10%;
  right: 10%;
  animation-delay: 1.5s;
}

@keyframes bounce-soft {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.1);
  }
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .cta-subtitle {
    font-size: 1.25rem;
  }
}

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

.cta-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-guarantee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.875rem;
  font-weight: 500;
}

.guarantee-icon {
  font-size: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 3rem 0 1.5rem;
}

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.75;
}

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

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

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease-out;
}

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

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */

.whatsapp-float {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999 !important;
  transition: all 0.3s ease-out;
  text-decoration: none;
  animation: pulse-whatsapp 2s ease-in-out infinite;
  visibility: visible !important;
  opacity: 1 !important;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 32px;
  color: white;
}

@keyframes pulse-whatsapp {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-float i {
    font-size: 28px;
  }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 34px !important;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  .cta-guarantee {
    flex-direction: column;
    gap: 1rem;
  }
  
  .earning-card.earning-featured {
    transform: scale(1);
  }
}

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.opportunity-card,
.testimonial-card,
.step-card,
.earning-card,
.program-benefit-item {
  animation: slide-up 0.6s ease-out backwards;
}

.opportunity-card:nth-child(1) { animation-delay: 0.1s; }
.opportunity-card:nth-child(2) { animation-delay: 0.2s; }
.opportunity-card:nth-child(3) { animation-delay: 0.3s; }
.opportunity-card:nth-child(4) { animation-delay: 0.4s; }
.opportunity-card:nth-child(5) { animation-delay: 0.5s; }
.opportunity-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   ESTILOS REFATORADOS - TURMA FUNDADORA
   ============================================ */

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(52, 73, 94, 0.1); /* Borda cinza sutil */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Menu de Navegação no Header */
.header-nav {
    display: none;
    flex: 1;
    justify-content: center;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-link {
    color: #2C3E50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    transition: width 0.3s ease;
}

.header-nav-link:hover {
    color: #FF7A00;
}

.header-nav-link:hover::after {
    width: 100%;
}

/* Botão CTA no Header (Desktop) */
.header .cta-button-header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: none; /* Escondido por padrão */
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    letter-spacing: 0.3px;
}

.header .cta-button-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
}

/* Mostra CTA e menu no desktop, esconde menu-icon */
@media (min-width: 969px) {
    .header-nav {
        display: flex;
    }
    .header .cta-button-header {
        display: inline-block;
    }
    .header .menu-icon {
        display: none;
    }
}

/* Estilo do Menu Icon (Mobile) */
.header .menu-icon {
    color: #1F2937;
    font-size: 24px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* Escondido por padrão */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.header .menu-icon:hover {
    color: #FF7A00;
    background: rgba(255, 122, 0, 0.1);
    transform: scale(1.1);
}

.header .menu-icon.active {
    color: #FF7A00;
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu-list li {
    border-bottom: 1px solid #F1F5F9;
}

.mobile-menu-link {
    display: block;
    padding: 16px 20px;
    color: #2C3E50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: rgba(255, 122, 0, 0.1);
    color: #FF7A00;
    padding-left: 25px;
}

.mobile-menu-cta {
    border-bottom: none;
    margin-top: 10px;
    padding: 10px 20px;
}

.mobile-menu-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #10B981;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.mobile-menu-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Hero Section */
.hero {
    background: #FFFFFF; /* Seção 1 - Branco */
    padding: 100px 40px 20px 40px;
    margin: 0 auto;
    position: relative;
    overflow: hidden; /* Previne cortes indesejados */
    min-height: 500px; /* Garante altura mínima */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #2C3E50;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content h1 .highlight,
.highlight {
    color: #FF7A00;
}

.hero-content p {
    font-size: 20px;
    color: #4A5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Selo Badge */
.selo-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(255, 122, 0, 0.1);
    color: #FF7A00;
    border: 1px solid #FF7A00;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 30px;
    margin-bottom: 20px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.25);
    text-decoration: none;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.35);
}

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #6B7280;
    margin-top: 15px;
}

.hero-image {
    position: relative;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    margin-top: -30px;
    height: 100%;
    min-height: 500px;
}

.hero-image img,
.hero-image-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: scale(1.15);
    transform-origin: center center;
    filter: none;
    padding: 0;
    box-sizing: border-box;
}

/* Ajuste específico para desktop - imagem harmônica */
@media (min-width: 1024px) {
    .hero-image {
        align-items: flex-start;
        justify-content: flex-end;
        padding-right: 0;
        margin-top: -40px;
    }
    
    .hero-image img,
    .hero-image-img {
        transform: scale(1.4);
        transform-origin: center center;
        max-width: 95%;
    }
}

.hero-image-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 149, 0, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 18px;
}

/* Event Details */
.event-details {
    background: transparent !important;
    padding: 20px 40px 30px 40px;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.event-detail-box {
    background: #FFFFFF;
    border: 1px solid #FFE5CC;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.event-detail-box:hover {
    border-color: #FF7A00;
    box-shadow: none;
}

.event-detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0;
}

.event-detail-text {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    line-height: 1.2;
}
.event-detail-text strong + small {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.event-detail-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
    color: #2C3E50;
    line-height: 1.1;
    padding-bottom: 0;
}

.event-detail-text small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.2;
    margin-top: 0;
    padding-top: 0;
}

/* How It Works Section (Unified) */
.how-it-works-section {
    background: #FFFBF5; /* Seção 6 - Laranja Bem Claro */
    padding: 80px 40px;
}

.how-it-works-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-container h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 15px;
    text-align: center;
}

.how-it-works-subtitle {
    font-size: 18px;
    color: #4A5568;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
}

.how-it-works-content-wrapper {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 40px;
}

.how-it-works-left {
    display: flex;
    flex-direction: column;
}

.how-it-works-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
}

.how-it-works-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.how-it-works-right {
    display: flex;
    flex-direction: column;
}

.how-it-works-video {
    width: 100%;
    margin: 0;
}

.how-it-works-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: stretch;
}

.how-it-works-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.how-it-works-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
}

.how-it-works-card-negative {
    border: 2px solid #FEE2E2;
    background: linear-gradient(135deg, #FFFFFF 0%, #FEF2F2 100%);
}

.how-it-works-card-negative::before {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.how-it-works-card-positive {
    border: 2px solid #D1FAE5;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
}

.how-it-works-card-positive::before {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.how-it-works-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
}

.how-it-works-card-negative .card-icon-wrapper {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #DC2626;
}

.how-it-works-card-positive .card-icon-wrapper {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #059669;
}

.motivational-text {
    margin-top: 0;
    padding: 25px;
    background: #FFFFFF;
    border-radius: 16px;
    border-left: 4px solid #FF7A00;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFE5CC;
}

.motivational-text p {
    font-size: 18px;
    color: #2C3E50;
    margin: 0;
    line-height: 1.6;
}

.motivational-text strong {
    color: #FF7A00;
    font-weight: 700;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin: 40px 0 24px 0;
}

/* Features Horizontal Grid */
.features-horizontal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-horizontal-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

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

.feature-horizontal-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-horizontal-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 8px 0;
}

.feature-horizontal-content p {
    font-size: 16px;
    color: #5A6C7D;
    margin: 0;
    line-height: 1.6;
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: #E0E0E0;
    margin: 60px 0;
}

/* Steps Vertical Grid */
.steps-vertical-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.step-vertical-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.step-vertical-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 12px 0;
}

.step-content p {
    font-size: 16px;
    color: #5A6C7D;
    margin: 0;
    line-height: 1.6;
}

.how-it-works-image {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.how-it-works-image-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Why We Invest Section */
.why-we-invest-section {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    padding: 80px 40px;
    color: white;
}

.why-we-invest-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-we-invest-container h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 40px;
}

.why-we-invest-content {
    text-align: left;
}

.why-we-invest-main {
    font-size: 20px;
    color: white;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-we-invest-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-style: italic;
}

/* About Journey Section (Legacy - keeping for compatibility) */
.about-journey {
    background: transparent; /* Remove a cor de fundo, revelando a textura */
    padding: 100px 40px;
}

.about-journey-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.about-journey-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 25px;
    text-align: left;
}

.about-journey-content p {
    font-size: 18px;
    color: #4A5568;
    text-align: left;
    line-height: 1.8;
}

.about-journey-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-journey-image img,
.about-journey-image-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 20px;
}

.about-journey-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 149, 0, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 18px;
}

/* Big Promise */
.big-promise {
    background-color: #FFFFFF;
    border: 2px solid #FFE5CC;
    border-left: 5px solid #FF7A00;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.05);
}

.observation-box {
    background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
    border: 2px solid #FFD699;
    border-left: 5px solid #FF7A00;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.1);
}

.observation-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.observation-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.observation-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
}

.observation-content {
    margin: 0;
}

.observation-content p {
    font-size: 14px;
    color: #4A5568;
    margin: 0;
    line-height: 1.5;
}

.big-promise-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.big-promise h3 {
    font-size: 15px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 15px 0;
}

.big-promise p {
    font-size: 16px;
    color: #4A5568;
    margin: 0;
    line-height: 1.5;
}

.big-promise-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.big-promise-list li {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.big-promise-list li:before {
    content: "•";
    color: #FF7A00;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.big-promise-list li:last-child {
    margin-bottom: 0;
}

.big-promise-footer {
    margin-top: 20px !important;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 5px 0;
}

.feature-item-content p {
    font-size: 14px;
    color: #4A5568;
    margin: 0;
    line-height: 1.5;
}

.about-journey-subtitle {
    font-size: 18px;
    color: #4A5568;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Journey Topics */
.journey-topics {
    margin-top: 40px;
}

.journey-topics-subtitle {
    font-size: 16px;
    color: #4A5568;
    margin-bottom: 30px;
    text-align: center;
}

.topic-detail {
    font-size: 14px;
    color: #FF7A00;
    font-weight: 600;
    margin-top: 8px;
    font-style: italic;
}

.cta-subtext {
    font-size: 14px;
    color: #6B7280;
    margin-top: 15px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* What You Get Section */
.what-you-get-section {
    background: linear-gradient(135deg, #1E3A5F 0%, #2C5282 100%);
    padding: 100px 40px;
    color: white;
}

.what-you-get-container {
    max-width: 1200px;
    margin: 0 auto;
}

.what-you-get-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.what-you-get-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.what-you-get-number {
    font-size: 48px;
    font-weight: 800;
    color: #FF7A00;
    margin-bottom: 15px;
    line-height: 1;
}

.what-you-get-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 12px 0;
}

.what-you-get-card p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

.what-you-get-promise {
    background: #FFF8F0;
    border: 2px solid #FFE5CC;
    max-width: 900px;
    margin: 0 auto;
}

.what-you-get-subtext {
    font-size: 14px;
    color: #6B7280;
    font-style: italic;
    margin-top: 10px;
}

.journey-topics h3 {
    font-size: 36px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 30px;
}

.topic-item {
    background: #FFFFFF;
    border: 2px solid #FFE5CC;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.topic-item:hover {
    border-color: #FF7A00;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
    transform: translateY(-2px);
}

.topic-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.topic-content {
    flex: 1;
}

.topic-date {
    font-size: 14px;
    font-weight: 600;
    color: #FF7A00;
    margin-bottom: 8px;
}

.topic-title {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 5px;
}

.topic-speakers {
    font-size: 14px;
    color: #6B7280;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.25);
    margin: 40px auto;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.35);
}

.cta-center {
    text-align: center;
}

/* Bonuses Section */
.bonuses-section {
    background: #2C3E50; /* SUA COR DE DESTAQUE ESCURA */
    padding: 100px 40px;
    max-width: 100%; /* Faz a cor ir de ponta a ponta */
    margin: 0 auto;
}

.bonuses-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF; /* Título agora é BRANCO */
    text-align: center;
    margin-bottom: 50px;
}

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

.bonus-item {
    background: #FFFFFF; /* Card branco flutuando sobre a textura */
    border: 2px solid #FFE5CC;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    border-color: #FF7A00;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
}

.bonus-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.bonus-text {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    line-height: 1.5;
}

.bonus-text strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #2C3E50;
}

.bonus-text small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.5;
    margin-top: 4px;
}

/* Speakers Section */
.speakers-section {
    background: #FFFFFF;
    padding: 100px 40px;
}

.speakers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.speakers-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1F2937;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.speakers-subtitle {
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 0 auto;
}

.speakers-grid .speaker-card:nth-child(5) {
    grid-column: 2 / 4;
    justify-self: center;
    max-width: 500px;
}

.speaker-card {
    background: #FFFFFF;
    border: 2px solid #FFE5CC;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 280px;
}

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #FF7A00;
}

.speaker-icon-wrapper {
    margin-bottom: 24px;
}

.speaker-avatar {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.35);
}

.speaker-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.speaker-name {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.4;
}

.speaker-title {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.6;
    font-weight: 400;
    flex: 1;
}

/* ============================================
   CTA FINAL
   ============================================ */
.final-cta-section {
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%); /* Seção 8 - Laranja Forte */
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

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

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-content {
    text-align: center;
    color: #FFFFFF;
}

.final-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.final-cta-content h2 .highlight {
    color: #FFF7ED;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.final-cta-content > p {
    font-size: 20px;
    color: #FFF7ED;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.final-cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 500;
}

.final-cta-benefit-item i {
    font-size: 24px;
    color: #FFF7ED;
    width: 30px;
    text-align: center;
}

.final-cta-earnings-wrapper {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.final-cta-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 25px 0;
    text-align: center;
}

.final-cta-earnings {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-earning-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #4A5568;
    line-height: 1.6;
}

.final-cta-earning-item i {
    font-size: 20px;
    color: #FF7A00;
    width: 24px;
    text-align: center;
}

.final-cta-earning-item strong {
    color: #2C3E50;
    font-weight: 700;
}

.final-cta-empowerment {
    font-size: 20px;
    color: #FFF7ED;
    margin: 35px 0 40px 0;
    line-height: 1.8;
    font-weight: 400;
}

.final-cta-empowerment strong {
    color: #FFFFFF;
    font-weight: 700;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #10B981;
    color: #FFFFFF;
    padding: 24px 48px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    margin: 40px 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
    background: #059669;
}

.final-cta-button i {
    transition: transform 0.3s ease;
}

.final-cta-button:hover i {
    transform: translateX(5px);
}

.final-cta-disclaimer {
    font-size: 14px;
    color: #FFF7ED;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0.8;
    margin-top: 10px;
}

.final-cta-disclaimer i {
    font-size: 12px;
}

/* ============================================
   FOOTER PROFISSIONAL
   ============================================ */
.footer {
    background: #1F2937;
    padding: 60px 40px 30px;
    color: #FFFFFF;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 15px;
    color: #D1D5DB;
    line-height: 1.7;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: #FF7A00;
    transform: translateX(4px);
}

.footer-column ul li a i {
    font-size: 14px;
    width: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #9CA3AF;
    margin: 0;
}

.footer-copyright p {
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.footer-legal a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FF7A00;
}

.footer-legal span {
    color: #6B7280;
}

/* ============================================
   SEÇÃO DEMONSTRAÇÃO DO APP
   ============================================ */

.app-demo-section {
    background: #FFFBF5; /* Seção 2 - Laranja Bem Claro */
    padding: 100px 40px;
    margin: 0 auto;
}

.app-demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.app-demo-container h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 20px;
    text-align: center;
}

.app-demo-container h3 {
    font-size: 36px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 20px;
    text-align: left;
}

.app-demo-subtitle {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 40px;
    max-width: 100%;
    text-align: center;
    line-height: 1.6;
}

.app-demo-gif-container {
    margin: 40px auto;
    max-width: 400px;
    position: relative;
    text-align: center;
}

.app-demo-gif-container::before {
    display: none;
}

.app-demo-gif-container::after {
    display: none;
}

.app-demo-gif {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 35px;
    border: 8px solid #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 2px #2a2a2a,
                inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    background: #000;
    position: relative;
    z-index: 1;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: transform;
    transform: translateZ(0);
}

.app-demo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.app-demo-feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 2px solid #FFE5CC;
    transition: all 0.3s ease;
}

.app-demo-feature:hover {
    border-color: #FF7A00;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
    transform: translateY(-2px);
}

.app-demo-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.app-demo-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-demo-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
    line-height: 1.3;
}

.app-demo-feature-text {
    font-size: 14px;
    font-weight: 400;
    color: #4A5568;
    text-align: left;
    line-height: 1.5;
    margin: 0;
}

/* Feature Card com Float */
.feature-card {
    background: #FFF;
    border: 2px solid #FF7A00;
    border-radius: 20px;
    padding: 24px;
    overflow: auto;
}

.icon-wrapper {
    float: left;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border-radius: 10px;
    margin-right: 20px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    color: #2C3E50;
    margin-top: 0;
    line-height: 1.4;
}

.feature-text {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
}

/* ============================================
   SEÇÃO DA CALCULADORA
   ============================================ */

.calculator-section {
    background: #FFFBF5; /* Seção 4 - Laranja Bem Claro */
    padding: 100px 40px;
}

.calculator-container-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.calculator-container-wrapper h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 20px;
}

.calculator-subheadline {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calculadora-container {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    text-align: center;
}

.slider-container label {
    font-weight: 600;
    color: #2C3E50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 30px;
    line-height: 1.5;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #F3F4F6;
    border-radius: 10px;
    border: none;
    outline: none;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.slider:hover {
    background: #E5E7EB;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: #FF7A00;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.3), 0 0 0 0 rgba(255, 122, 0, 0.2);
    transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(255, 122, 0, 0.4), 0 0 0 4px rgba(255, 122, 0, 0.1);
}

.slider::-webkit-slider-thumb:active {
    transform: scale(0.95);
}

.slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: #FF7A00;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.3);
    transition: all 0.2s ease;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(255, 122, 0, 0.4);
}

.slider-value {
    font-weight: 700;
    font-size: 1.75rem;
    color: #FF7A00;
    letter-spacing: -0.02em;
    margin-top: 5px;
}

.resultados-container {
    margin-top: 40px;
    border-top: 1px solid #E5E7EB;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.resultado-item {
    text-align: center;
    padding: 20px 16px;
    border-radius: 12px;
    flex-basis: calc(50% - 10px);
    flex-grow: 0;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    min-width: 0;
    box-sizing: border-box;
}

.resultado-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

.resultado-item.criancas {
    background-color: #F3F4F6;
    border-color: #E5E7EB;
}

.resultado-item span {
    display: block;
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.resultado-item div {
    font-weight: 700;
    font-size: 1.75rem;
    color: #1F2937;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.resultado-item.destaque {
    flex-basis: 100%;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border: 2px solid #FF7A00;
    padding: 32px 20px;
    margin-top: 10px;
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.12);
}

.resultado-item.destaque:hover {
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.18);
    transform: translateY(-3px);
}

.resultado-item.destaque span {
    color: #92400E;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

#resultado-mes {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1F2937;
    line-height: 1.1;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    letter-spacing: -0.03em;
}

/* ============================================
   MODAL DE FORMULÁRIO (POP-UP)
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    font-weight: bold;
    color: #AAA;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-content h3 {
    font-weight: 800;
    color: #2C3E50;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.modal-content p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #4A5568;
}

.modal-form .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.modal-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #2C3E50;
}

.modal-form .form-group input {
    width: 100%;
    padding: 18px 20px;
    background: #FEF9F3;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 16px;
    color: #2C3E50;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.modal-form .form-group input::placeholder {
    color: #9CA3AF;
}

.modal-form .form-group input:focus {
    outline: none;
    border-color: #FF7A00;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.checkbox-container input {
    width: auto;
    flex-shrink: 0;
}

.checkbox-container label {
    font-size: 0.85rem;
    margin: 0;
    color: #4A5568;
}

.checkbox-container a {
    color: #FF7A00;
    text-decoration: underline;
}

.modal-submit-button {
    width: 100%;
}

/* Urgência (Vagas) */
.urgency-box {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border: 2px solid #FF7A00;
    border-radius: 16px;
    padding: 35px 30px;
    margin: 40px auto 0 auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.urgency-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 122, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.08);
}

.urgency-box h3 {
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 12px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.urgency-icon {
    color: #FF7A00;
    font-size: 1.75rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.urgency-box p {
    color: #6B7280;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.vagas-contador {
    font-weight: 600;
    font-size: 1.125rem;
    color: #92400E;
    line-height: 1.5;
}

.vagas-contador strong {
    font-size: 3rem;
    font-weight: 800;
    color: #FF7A00;
    display: inline-block;
    margin: 0 8px;
    letter-spacing: -0.03em;
    line-height: 1;
}

#vagas-count {
    display: inline-block;
    position: relative;
    padding: 0 4px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 38px;
    }
    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .final-cta-content h2 {
        font-size: 36px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .hero-container,
    .about-journey-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image img,
    .hero-image-img {
        max-width: 100%;
        min-width: auto;
        transform: scale(1.1);
        padding: 0;
    }
    .about-journey-content h2 {
        font-size: 36px;
    }
    .about-journey-content h2,
    .about-journey-content p {
        text-align: center;
    }
    .event-details-grid {
        grid-template-columns: 1fr;
    }
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .speakers-grid .speaker-card:nth-child(5) {
        grid-column: 1 / 3;
        max-width: 100%;
    }
    .speakers-section h2 {
        font-size: 36px;
    }
    .speakers-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .app-demo-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .app-demo-section {
        padding: 80px 30px;
    }
}

@media (max-width: 968px) {
    .header .menu-icon {
        display: flex;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 15px 20px;
    }
    .hero {
        padding: 100px 20px 10px 20px;
        background: #FFFFFF !important; /* Seção 1 - Branco */
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 15px;
    }
    .submit-btn {
        padding: 16px 20px;
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
        letter-spacing: 0.5px;
        margin: 30px auto;
    }
    .hero-image {
        background: transparent !important;
    }
    
    .hero-image img,
    .hero-image-img {
        max-width: 100%;
        min-width: auto;
        transform: scale(1.7);
        padding: 0;
        background: transparent !important;
    }
    .about-journey,
    .bonuses-section,
    .speakers-section,
    .calculator-section,
    .app-demo-section {
        padding: 60px 20px;
    }
    .final-cta-section {
        padding: 60px 20px;
    }
    .final-cta-content h2 {
        font-size: 34px !important;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    .final-cta-benefits {
        gap: 14px;
        margin: 25px 0;
    }
    .final-cta-benefit-item {
        font-size: 16px;
    }
    .final-cta-benefit-item i {
        font-size: 20px;
        width: 26px;
    }
    .final-cta-earnings-wrapper {
        padding: 30px 20px;
        margin: 30px 0;
        border-radius: 12px;
    }
    .final-cta-subtitle {
        font-size: 20px;
        margin: 0 0 20px 0;
    }
    .final-cta-earnings {
        gap: 14px;
        margin: 0;
    }
    .final-cta-earning-item {
        font-size: 16px;
    }
    .final-cta-earning-item i {
        font-size: 18px;
        width: 22px;
    }
    .final-cta-empowerment {
        font-size: 18px;
        margin: 25px 0 30px 0;
        line-height: 1.6;
    }
    .final-cta-button {
        padding: 20px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        margin: 30px 0 20px 0;
    }
    .final-cta-disclaimer {
        font-size: 10px;
        margin-top: 8px;
    }
    .final-cta-disclaimer i {
        font-size: 8px;
    }
    .footer {
        padding: 40px 20px 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .speakers-section h2 {
        font-size: 34px !important;
    }
    .speakers-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .speaker-card {
        padding: 28px 20px;
    }
    .app-demo-container h3 {
        font-size: 32px;
        text-align: center;
    }
    .how-it-works-section {
        padding: 60px 20px;
        background: #FFFBF5 !important; /* Seção 6 - Laranja Bem Claro */
    }
    .how-it-works-container {
        display: flex;
        flex-direction: column;
    }
    .how-it-works-container h2 {
        font-size: 34px !important;
        text-align: center;
        margin-bottom: 12px;
    }
    .how-it-works-subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 30px;
    }
    .how-it-works-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    .how-it-works-left {
        order: 3;
    }
    .how-it-works-right {
        order: 4;
    }
    .how-it-works-container h2 {
        order: 1;
    }
    .how-it-works-subtitle {
        order: 2;
        margin-bottom: 20px;
    }
    .how-it-works-content-wrapper {
        order: 3;
    }
    .how-it-works-left {
        order: 1;
    }
    .how-it-works-right {
        order: 2;
    }
    .motivational-text {
        order: 4;
        padding: 18px 16px;
        margin-top: 20px;
        margin-bottom: 0;
        max-width: 100%;
    }
    .how-it-works-image-wrapper {
        border-radius: 16px;
    }
    .motivational-text p {
        font-size: 15px;
    }
    .how-it-works-cards {
        gap: 20px;
    }
    .how-it-works-card {
        width: 100%;
        padding: 20px 18px;
    }
    .card-icon-wrapper {
        display: none; /* Removido conforme solicitado */
    }
    .how-it-works-card h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .motivational-text {
        padding: 18px;
        margin-top: 25px;
    }
    .motivational-text p {
        font-size: 16px;
    }
    .section-subtitle {
        font-size: 20px;
        text-align: center;
    }
    .feature-horizontal-card {
        padding: 20px;
        gap: 15px;
    }
    .feature-horizontal-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .feature-horizontal-content h4 {
        font-size: 16px;
    }
    .feature-horizontal-content p {
        font-size: 14px;
    }
    .section-divider {
        margin: 40px 0;
    }
    .step-vertical-card {
        padding: 24px;
        gap: 20px;
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    .step-content h4 {
        font-size: 18px;
    }
    .step-content p {
        font-size: 14px;
    }
    .why-we-invest-section {
        padding: 60px 24px;
    }
    .why-we-invest-container h2 {
        font-size: 34px !important;
    }
    .why-we-invest-main {
        font-size: 18px;
    }
    .why-we-invest-subtext {
        font-size: 14px;
    }
    .about-journey-content h2 {
        font-size: 34px !important;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .feature-item {
        gap: 12px;
    }
    .feature-item-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .feature-item-content h4 {
        font-size: 15px;
    }
    .feature-item-content p {
        font-size: 13px;
    }
    .about-journey-subtitle {
        font-size: 16px;
    }
    .journey-topics-subtitle {
        font-size: 14px;
    }
    .topic-detail {
        font-size: 13px;
    }
    .cta-subtext {
        font-size: 13px;
        padding: 0 20px;
    }
    .what-you-get-section {
        padding: 60px 20px;
    }
    .what-you-get-section h2 {
        font-size: 34px !important;
        margin-bottom: 30px;
    }
    .what-you-get-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    .what-you-get-card {
        padding: 20px;
    }
    .what-you-get-number {
        font-size: 36px;
    }
    .what-you-get-card h3 {
        font-size: 18px;
    }
    .what-you-get-card p {
        font-size: 14px;
    }
    .journey-topics h3 {
        font-size: 32px;
    }
    .bonuses-section h2 {
        font-size: 34px !important;
    }
    .speakers-section h2 {
        font-size: 34px !important;
    }
    .calculator-container-wrapper h2 {
        font-size: 34px !important;
    }
    .testimonials-container h2 {
        font-size: 34px !important;
    }
    .app-demo-container h2 {
        font-size: 34px !important;
    }
    .journey-timeline-container h2 {
        font-size: 34px !important;
    }
    .big-promise {
        padding: 25px 20px;
        flex-direction: column;
        gap: 15px;
    }
    .big-promise h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .big-promise-list {
        margin: 10px 0 15px 0;
    }
    .big-promise-list li {
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    .big-promise-footer {
        margin-top: 15px !important;
    }
    .urgency-box {
        padding: 25px 20px;
        margin-top: 30px;
    }
    .urgency-box h3 {
        font-size: 1.25rem;
        flex-wrap: wrap;
    }
    .urgency-icon {
        font-size: 1.5rem;
    }
    .vagas-contador strong {
        font-size: 2.5rem;
    }
    .calculadora-container {
        padding: 30px 20px;
    }
    .resultados-container {
        flex-direction: column;
        gap: 16px;
    }
    .resultado-item {
        flex-basis: 100%;
        width: 100%;
    }
    .resultado-item.destaque {
        margin-top: 0;
    }
    #resultado-mes {
        font-size: 2.25rem;
    }
    .app-demo-subtitle {
        font-size: 16px;
        text-align: center;
    }
    .app-demo-gif-container {
        max-width: 300px;
        margin: 30px auto;
    }
    .app-demo-gif {
        border-width: 6px;
        border-radius: 30px;
    }
    .app-demo-gif-container::before {
        display: none;
    }
    .app-demo-gif-container::after {
        display: none;
    }
    .app-demo-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    .app-demo-feature {
        padding: 20px;
        gap: 15px;
    }
    .app-demo-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .app-demo-feature-title {
        font-size: 16px;
    }
    .app-demo-feature-text {
        font-size: 14px;
    }
    .observation-box {
        padding: 18px 16px;
        gap: 10px;
    }
    .observation-header {
        gap: 10px;
    }
    .observation-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .observation-header h3 {
        font-size: 16px;
    }
    .observation-content p {
        font-size: 13px;
        line-height: 1.4;
    }
    .feature-card {
        padding: 20px;
        border-radius: 15px;
    }
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
    .feature-title {
        font-size: 18px;
    }
    .feature-text {
        font-size: 14px;
    }
    .event-details {
        padding: 10px 20px 20px 20px;
        margin-top: -60px;
    }
    .event-detail-box {
        padding: 12px;
        gap: 10px;
    }
    .event-detail-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .event-detail-text {
        font-size: 13px;
    }
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .speakers-grid .speaker-card:nth-child(5) {
        grid-column: 1;
        max-width: 100%;
    }
    .speaker-card {
        padding: 28px 20px;
        min-height: auto;
    }
    .speaker-avatar {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .speaker-name {
        font-size: 17px;
    }
    .speaker-title {
        font-size: 14px;
    }
}

/* ================================== */
/* 7. SEÇÃO DEPOIMENTOS (WHATSAPP)    */
/* ================================== */
.testimonials-section {
    background: #FFFFFF; /* Fundo branco para destacar */
    padding: 100px 40px;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-container h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 20px;
}

.testimonials-subheadline {
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: flex;
    flex-direction: column; /* FOCO MOBILE: Um debaixo do outro */
    gap: 25px; /* Espaçamento entre os prints */
    
    /* Centraliza os prints na tela (para mobile) */
    align-items: center; 
}

.testimonial-item {
    width: 100%;
    max-width: 450px; /* Limita a largura do print para não ficar gigante */
    background: #FFFFFF;
    border-radius: 12px;
    
    /* POLIMENTO: Sombra profissional */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #FFE5CC; /* Sua borda laranja sutil */
    overflow: hidden; /* Garante que a imagem respeite a borda */
}

.testimonial-item img {
    width: 100%;
    height: auto;
    display: block; /* Remove qualquer espaço extra */
}

/* Em telas maiores (desktop), se você quiser 
   que eles fiquem lado a lado, é só adicionar
   o @media. Por enquanto, deixei focado no mobile.
*/
@media (min-width: 969px) {
    .testimonials-grid {
        flex-direction: row; /* Lado a lado no desktop */
        justify-content: center;
        align-items: flex-start;
        max-width: 1200px; /* Limite da grade */
        margin: 0 auto;
    }
    .testimonial-item {
        max-width: 350px; /* Ajusta a largura no desktop */
    }
}

.section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin: 40px 0 24px 0;
}

.how-it-works-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: left;
}

.icon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 12px;
}

.icon-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
}

.icon-list i {
    font-size: 16px;
    margin-top: 3px;
}

.icon-list-negative i {
    color: #E53E3E;
}

.icon-list-positive i {
    color: #059669;
}

.how-it-works-video .video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.18);
}

.video-placeholder .video-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.45) 100%);
    pointer-events: none;
}

.video-play {
    display: none !important; /* Removido conforme solicitado */
}

.video-caption {
    display: none; /* Removido conforme solicitado */
}

.how-it-works-image-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.what-we-provide-section {
    background: #FFFBF5;
    padding: 80px 40px;
}

.what-we-provide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.what-we-provide-container h2 {
    font-size: 40px;
    font-weight: 800;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 45px;
}

.what-we-provide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.provide-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.provide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.provide-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 18px;
}

.provide-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 10px 0;
}

.provide-card p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

.provide-card-highlight {
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 25px 45px rgba(255, 122, 0, 0.35);
}

.provide-card-highlight .provide-icon {
    background: rgba(255, 255, 255, 0.25);
}

.provide-card-highlight h3,
.provide-card-highlight p {
    color: #FFFFFF;
}

.journey-timeline-section {
    background: #FFFFFF;
    padding: 80px 40px;
}

.journey-timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.journey-timeline-container h2 {
    font-size: 40px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 20px;
}

.journey-timeline-subtitle {
    font-size: 18px;
    color: #4A5568;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

.journey-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
    margin-top: 60px;
    padding: 0 10px;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    top: 48px;
    left: 40px;
    right: 40px;
    height: 4px;
    background-image: repeating-linear-gradient(90deg, rgba(255, 148, 72, 0.9) 0, rgba(255, 148, 72, 0.9) 18px, transparent 18px, transparent 36px);
    z-index: 0;
}

.timeline-step {
    position: relative;
    flex: 1;
    padding-top: 110px;
    text-align: left;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.timeline-card {
    background: #FFFFFF;
    border: 2px solid #FF7A00;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.15);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.timeline-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.timeline-card p {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.timeline-marker {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 35px rgba(255, 122, 0, 0.35);
    z-index: 2;
}

.timeline-step-right .timeline-card {
    text-align: left;
}

@media (max-width: 768px) {
    .journey-timeline-section {
        padding: 60px 20px;
    }

    .journey-timeline-container h2 {
        font-size: 34px !important;
    }

    .journey-timeline-container h2,
    .journey-timeline-subtitle {
        text-align: left;
    }

    .journey-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 0;
    }

    .journey-timeline::before {
        display: none;
    }

    .timeline-step {
        padding: 0;
        min-width: auto;
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
    }

    .timeline-card {
        margin-left: 20px;
        width: calc(100% - 64px);
        min-height: auto;
        height: auto;
        margin-bottom: 0;
        flex: 1;
    }

    .timeline-marker {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        font-size: 18px;
        background: #FF7A00;
        border: 3px solid #FFFFFF;
        box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4), 0 0 0 3px rgba(255, 122, 0, 0.1);
        position: absolute;
        z-index: 10;
        flex-shrink: 0;
    }

    .timeline-step:not(:last-child) {
        margin-bottom: 0;
    }
}

.cta-final-section {
    background: #FFFBF5;
    padding: 90px 40px;
    text-align: center;
}

.cta-final-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-final-container h2 {
    font-size: 36px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 24px;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 999px;
}

.cta-final-subtext {
    font-size: 15px;
    color: #4A5568;
    margin-top: 18px;
}

/* About Journey Section (Legacy - keeping for compatibility) */
.about-journey {
    background: transparent; /* Remove a cor de fundo, revelando a textura */
    padding: 100px 40px;
}

@media (max-width: 1024px) {
    .how-it-works-section {
        padding: 70px 30px;
    }
    .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .how-it-works-image {
        position: relative;
        top: 0;
        grid-row: 1;
    }
    .how-it-works-content {
        grid-row: 2;
    }
    .what-we-provide-section {
        padding: 70px 30px;
    }
    .what-we-provide-grid {
        grid-template-columns: 1fr;
    }
    .journey-timeline {
        gap: 32px;
    }
    .journey-timeline::before {
        left: 20px;
        right: 20px;
    }
    .timeline-card {
        padding: 26px;
    }
}
