/* CSS Reset and Variables */
:root {
  --bg-light: #f3f3f3;
  --bg-white: #ffffff;
  --bg-dark: #0a0a0a;
  --text-dark: #111111;
  --text-gray: #666666;
  --text-light: #888888;
  --text-white: #ffffff;
  --accent: #111111;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-glass: rgba(255, 255, 255, 0.4);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.03);
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Header & Navigation (replaces controller spacing) */

/* Header & Navigation */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  display: flex;
  align-items: center;
  z-index: 100;
}

.header-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Right Nav CTA Button */
.nav-btn-conversar {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-white);
  background: linear-gradient(135deg, #7b0099 0%, #e60073 100%);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(123, 0, 153, 0.18);
}

.nav-btn-conversar:hover {
  background: linear-gradient(135deg, #9100b3 0%, #ff0080 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(230, 0, 115, 0.35);
}

/* Hero Wrapper */
.hero-wrapper {
  position: relative;
  width: 100%;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero Main Section Grid */
.hero-section {
  position: relative;
  width: 100%;
  background-color: var(--bg-light);
  min-height: 50vh;
  padding-top: 120px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
}

.hero-grid-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 25;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20px;
}

/* Hero Meta Tag (Glassmorphic Pill Badge) */
.hero-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.meta-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.06);
  padding: 1px 6px;
  border-radius: 6px;
  line-height: 1.2;
}

.meta-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  text-transform: none;
}

/* Huge title */
.hero-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  text-transform: none;
  margin-bottom: 24px;
  max-width: 620px;
}

.hero-title-sub {
  font-size: 26px;
  font-weight: 400;
  display: block;
  margin-top: 16px;
  color: var(--text-gray);
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.gradient-text {
  background: linear-gradient(135deg, #7b0099 0%, #e60073 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}


/* Hero Subtitle Styling */
.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-gray);
  max-width: 540px;
  margin-bottom: 20px;
}

.hero-subtitle strong {
  font-weight: 500;
  color: var(--text-dark);
}

.hero-subtitle-highlight {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-gray);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-subtitle-highlight strong {
  font-weight: 500;
  color: var(--text-dark);
}

/* CTA button styling */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-primary {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  background: linear-gradient(135deg, #7b0099 0%, #e60073 100%);
  padding: 16px 44px;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 18px rgba(123, 0, 153, 0.22);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 0, 115, 0.45);
  background: linear-gradient(135deg, #9100b3 0%, #ff0080 100%);
}

/* Larger CTA buttons on desktop for: A Solução, Como Funciona, O Processo, Resultados Reais, Diagnóstico Grátis, and the closing section */
@media (min-width: 901px) {
  .solution-cta-group .btn-primary,
  .learning-cta .btn-primary,
  .evolution-cta .btn-primary,
  .cases-footer .btn-primary,
  .diagnostic-content .btn-primary,
  .closing-container .btn-primary {
    font-size: 18px;
    padding: 20px 56px;
  }

  .evolution-cta .btn-primary,
  .cases-footer .btn-primary,
  .diagnostic-content .btn-primary,
  .closing-container .btn-primary {
    display: inline-block;
    margin-top: 16px;
  }
}

/* Right Column Visual Image */
.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 540px;
  max-width: none;
  transform: translateY(-20px);
  z-index: 25; /* Highest z-index so the woman sits in front of the stats text if they overlap */
  perspective: 1200px; /* Enable 3D space for children */
}

.statue-hover-container {
  cursor: pointer;
}

.devices-mockup-img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: contain;
  filter: contrast(1.04) brightness(0.99);
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  mix-blend-mode: multiply; /* Blends solid white background to transparent, avoiding artificial checkerboards */
}

.hero-aesthetic-img {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 95%;
  height: 95%;
  object-fit: contain;
  object-position: bottom right;
  max-width: none;
  mix-blend-mode: normal;
  -webkit-mask-image: radial-gradient(circle at 55% 40%, black 25%, transparent 68%);
  mask-image: radial-gradient(circle at 55% 40%, black 25%, transparent 68%);
}

.statue-base {
  position: relative;
  z-index: 1;
}

.statue-hover {
  position: absolute;
  top: 5%; /* Higher to align vertically in front of the goggles */
  left: -32%; /* Shifted slightly further left to sit clearly in front of the goggles */
  width: 75%; /* Covers more area for projected graphics */
  height: 45%;
  z-index: 2;
  opacity: 0;
  border-radius: 10px;
  mix-blend-mode: multiply; /* Since the PNG is transparent with dark/charcoal lines, multiply makes whites transparent (if any) and blends dark elements cleanly */
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  transform: scale(0.9) translateX(20px) translateY(10px); /* Start slightly smaller, shifted right and lower */
  image-rendering: -webkit-optimize-contrast; /* Forces browsers to render image lines with maximum crispness */
  image-rendering: crisp-edges;
}

.statue-hover-container:hover .statue-hover {
  opacity: 0.95;
  transform: scale(1.05) translateX(0) translateY(-5px); /* Glides left and floats in front of the goggles */
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(243, 243, 243, 0.1), transparent 30%);
  pointer-events: none;
  z-index: 3;
}

/* Diagonal Split Line Divider */
.diagonal-divider {
  position: relative;
  width: 100%;
  height: 120px;
  margin-top: -65px;
  z-index: 20; /* Sits below stats text (22) and image (25) */
  background: transparent;
  pointer-events: none;
}

.divider-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Middle White Section (Stats) - Now stretches to end the page */
.stats-section {
  position: relative;
  background-color: transparent;
  padding: 0px 0 100px; /* Spacious bottom padding */
  margin-top: -30px;
  z-index: 22;
  flex: 1; /* Automatically stretches to fill viewport bottom */
}

.stats-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 45px;
}

.stats-group-original {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: opacity 0.25s ease;
  margin-top: -65px;
  z-index: 22; /* Set to 22 so it sits on top of the white SVG mask (20) but below the woman image (25) */
  position: relative;
}

.stats-left-group {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.clients-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clients-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
}

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

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  overflow: hidden;
  margin-left: -8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients-count {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.network-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  background: var(--bg-white);
}

.network-icon-circle svg {
  width: 16px;
  height: 16px;
}

.stats-text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-gray);
  max-width: 320px;
}

.stats-right-group {
  display: flex;
  align-items: center;
  margin-right: 140px;
}

.stat-number-box {
  display: flex;
  flex-direction: column;
}

.stat-number-val {
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
}

.stat-number-lbl {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* 4-Column Mancekt Stats Style */
.stats-group-mancekt {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 0px;
  margin-top: 65px;
  z-index: 22; /* Set to 22 so it sits on top of the white SVG mask (20) but below the woman image (25) */
  position: relative;
  padding-right: 0px;
  transition: opacity 0.25s ease;
}

.mancekt-stat-col {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 35px;
  position: relative;
}

.mancekt-stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.08);
}

.mancekt-stat-val {
  font-size: 38px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.1;
}

.mancekt-stat-lbl {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.4;
}

.hidden {
  display: none !important;
  opacity: 0;
}

/* RESPONSIVE DESIGN (Media Queries) */

@media (max-width: 1200px) {
  .stats-right-group {
    margin-right: 60px;
  }
}

@media (max-width: 1024px) {
  .hero-grid-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 44px;
  }
  
  .image-wrapper {
    height: 520px;
  }
  
  .stats-container {
    padding: 0 30px;
  }
  
  .stats-left-group {
    gap: 30px;
  }
  
  .stats-group-mancekt {
    flex-direction: row !important;
    gap: 0px;
    margin-top: 15px;
    padding-right: 0px;
    justify-content: center;
  }
  
  .mancekt-stat-col {
    width: 25%;
    padding: 0 2px;
    align-items: center;
    text-align: center;
  }
  
  .mancekt-stat-col:not(:last-child)::after {
    display: block;
    background-color: rgba(0, 0, 0, 0.08);
    top: 2px;
    bottom: 2px;
  }

  .mancekt-stat-val {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .mancekt-stat-lbl {
    font-size: 7px;
    line-height: 1.25;
  }
}

@media (max-width: 900px) {
  .header {
    height: 75px;
  }
  
  .header-container {
    padding: 0 20px;
  }

  .logo-text {
    font-size: 21px;
  }

  .logo-img {
    width: 26px;
    height: 26px;
  }

  .nav-btn-conversar {
    font-size: 13px;
    padding: 8px 18px;
  }

  html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .hero-section {
    min-height: 85vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding-top: 90px !important;
    padding-bottom: 60px !important;
    background-color: var(--bg-white) !important;
  }

  .hero-grid-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 0px;
    text-align: center;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    order: 2;
    padding-right: 0;
  }

  .hero-meta-tag {
    order: 1;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .meta-label {
    font-size: 11px;
  }

  .hero-title {
    order: 1;
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
    font-weight: 700 !important;
    text-align: center !important;
  }

  .hero-title-sub {
    font-size: 18px !important;
    margin-top: 10px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .hero-subtitle {
    order: 2;
    display: block !important;
    font-size: 14px !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px !important;
    line-height: 1.5 !important;
    max-width: 340px;
    text-align: center !important;
  }

  .hero-ctas {
    order: 3;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 16px;
  }

  .hero-subtitle-highlight {
    order: 4;
    font-size: 13px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 320px;
    text-align: center;
  }

  .btn-primary {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 320px !important;
    padding: 14px 24px !important;
    font-size: 13px !important;
    border-radius: 9999px !important;
  }

  .cta-secondary-text {
    font-size: 11px !important;
    text-align: center !important;
    padding-left: 0 !important;
    margin-top: 8px !important;
    width: 100% !important;
  }

  .hero-visual {
    display: flex !important;
    order: 1;
    width: 100%;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 8px;
  }

  .image-wrapper {
    display: block !important;
    width: 100%;
    max-width: 320px;
    height: 300px !important;
    transform: none !important;
    margin: 0 auto;
  }

  .hero-aesthetic-img {
    position: relative !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    mix-blend-mode: normal !important;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%) !important;
    mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 70%) !important;
  }

  .statue-hover-container.is-active .statue-hover {
    opacity: 0.95;
    transform: scale(1.05) translateX(0) translateY(-5px);
  }

  .diagonal-divider {
    display: none !important;
  }

  .stats-section {
    margin-top: 20px;
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .stats-container {
    padding: 0 15px;
  }
  
  .stats-group-mancekt {
    flex-direction: row !important;
    gap: 0px;
    margin-top: 15px;
    padding-right: 0px;
    justify-content: center;
  }
  
  .mancekt-stat-col {
    width: 25%;
    padding: 0 1px;
    align-items: center;
    text-align: center;
  }
  
  .mancekt-stat-col:not(:last-child)::after {
    display: block;
    background-color: rgba(0, 0, 0, 0.08);
    top: 2px;
    bottom: 2px;
  }

  .mancekt-stat-val {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .mancekt-stat-lbl {
    font-size: 9px;
    line-height: 1.2;
  }
}

@media (max-width: 600px) {
  .logo-text {
    font-size: 18px;
  }

  .logo-img {
    width: 22px;
    height: 22px;
  }

  .nav-btn-conversar {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-title {
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
    text-align: center !important;
  }
  
  .btn-primary {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 320px !important;
    padding: 14px 24px !important;
    font-size: 13px !important;
    border-radius: 9999px !important;
    box-sizing: border-box !important;
  }

  .hero-ctas {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 16px !important;
  }

  /* 2x2 Clean Grid for Stats on Mobile */
  .stats-group-mancekt {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 10px;
    margin-top: 35px;
    justify-items: center;
  }

  .mancekt-stat-col {
    width: 100% !important;
    padding: 0 10px !important;
  }

  .mancekt-stat-col:not(:last-child)::after {
    display: none !important; /* Hide line borders on 2x2 grid */
  }

  .mancekt-stat-val {
    font-size: 24px !important;
    margin-bottom: 2px;
  }

  .mancekt-stat-lbl {
    font-size: 11px !important;
    line-height: 1.25;
  }
}

/* Height-based media query to shrink layout for short laptop screens */
@media (max-height: 800px) and (min-width: 901px) {
  .header {
    height: 75px;
  }
  .hero-section {
    padding-top: 105px;
    padding-bottom: 20px;
  }
  .hero-title {
    font-size: 44px;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .hero-ctas {
  }
  .btn-primary {
    padding: 12px 36px;
    font-size: 14px;
  }
  .image-wrapper {
    height: 440px;
    transform: translateY(-20px);
  }
  .diagonal-divider {
    height: 80px;
    margin-top: -45px;
  }
  .stats-section {
    margin-top: -20px;
    padding-bottom: 30px;
  }
  .stats-group-mancekt {
    margin-top: 45px;
  }
  .mancekt-stat-val {
    font-size: 28px;
  }
  .mancekt-stat-lbl {
    font-size: 11px;
  }
}

/* Problem Section Styles */
.problem-section {
  background-color: var(--bg-white);
  padding: 120px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  /* Thin grid line background effect from reference */
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.problem-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

/* Two-column layout grid */
.problem-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: stretch; /* Stretches columns to equal height */
}

/* Left Column Styling */
.problem-left-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.problem-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 24px;
  align-self: flex-start;
  background-color: rgba(0, 0, 0, 0.02);
}

.problem-main-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.problem-subtext-group {
  margin-top: 20px; /* Pushes the text lower */
  margin-bottom: 60px; /* Added spacing before cards */
}

.problem-intro-p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-list li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-gray);
  position: relative;
  padding-left: 20px;
}

.problem-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
}

/* Mini Cards container (Landscape side-by-side) */
.problem-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: auto; /* Pushes cards to the very bottom */
}

.problem-mini-card {
  background-color: #fcfcfc;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.problem-mini-card:hover {
  transform: translateY(-3px);
  background-color: var(--bg-white);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.04);
}

.mini-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mini-card-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.corner-target-icon {
  color: rgba(0,0,0,0.15);
  transition: var(--transition);
}

.problem-mini-card:hover .corner-target-icon {
  color: var(--accent);
}

.problem-mini-card h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-dark);
  margin-top: 15px;
}

/* Right Column (Tall Premium Cards with design content inside) */
.problem-right-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.problem-tall-card {
  position: relative;
  background-color: #f7f7f7;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px; /* Reduced from 40px */
  min-height: 240px; /* Reduced from 300px to balance alignment */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: var(--transition);
}

.problem-tall-card:hover {
  transform: translateY(-5px);
  background-color: #fafafa;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

/* Abstract Design Shape aligned internally */
.card-abstract-img {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 160px; /* Reduced from 220px */
  height: 160px;
  object-fit: contain;
  opacity: 0.35;
  mix-blend-mode: multiply; /* Blends abstract shape cleanly */
  transition: var(--transition);
  pointer-events: none;
}

.problem-tall-card:hover .card-abstract-img {
  transform: scale(1.05) rotate(4deg);
  opacity: 0.55;
}

.tall-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.tall-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  width: 100%;
}

.tall-card-header h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  max-width: 80%;
  letter-spacing: -0.01em;
}

.problem-tall-card .corner-target-icon {
  margin-top: 4px;
}

.problem-tall-card:hover .corner-target-icon {
  color: var(--accent);
}

.problem-tall-card p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-gray);
}

/* Featured / Dark Highlight Tall Card */
.tall-card-highlight {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
}

.tall-card-highlight:hover {
  background-color: #111111;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.tall-card-highlight .card-abstract-img {
  mix-blend-mode: screen; /* Perfect blend mode for neon lines on dark bg */
  filter: none;
  opacity: 0.25;
}

.tall-card-highlight:hover .card-abstract-img {
  opacity: 0.45;
  transform: scale(1.05) rotate(-4deg);
}

.tall-card-highlight .tall-card-header h3 {
  color: var(--text-white);
}

.tall-card-highlight .corner-target-icon {
  color: rgba(255, 255, 255, 0.2);
}

.tall-card-highlight:hover .corner-target-icon {
  color: var(--text-white);
}

.tall-card-highlight p {
  color: #aaaaaa;
}

/* Responsive Queries */
@media (max-width: 1024px) {
  .problem-layout-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .problem-mini-cards {
    margin-top: 30px;
  }
  
  .problem-right-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .problem-section {
    padding: 70px 0;
    background-image: none;
  }
  
  .problem-container {
    padding: 0 20px;
  }

  .problem-main-title {
    font-size: 30px;
  }

  .problem-mini-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .problem-mini-card {
    min-height: auto;
  }
  
  .problem-right-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .problem-tall-card {
    padding: 30px;
    min-height: auto;
  }
  
  .card-abstract-img {
    width: 180px;
    height: 180px;
  }
}

/* Solution Section */
.solution-section {
  background-color: var(--bg-white);
  padding: 120px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}

.solution-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start; /* Aligns both columns to the top */
}

.solution-text-col {
  display: flex;
  flex-direction: column;
}

.solution-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 24px;
  align-self: flex-start;
  background-color: rgba(0, 0, 0, 0.02);
}

.solution-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.solution-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 18px;
}

.solution-p.highlight-p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
}

.solution-cta-group {
  margin-top: 30px;
}

/* MacBook Mockup Device (Realistic Image frame) */
.solution-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.macbook-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  animation: floatMockup 6s ease-in-out infinite; /* Smooth floating movement */
  perspective: 1000px;
}

@keyframes floatMockup {
  0%, 100% {
    transform: translateY(0) rotateY(-3deg) rotateX(1deg);
  }
  50% {
    transform: translateY(-8px) rotateY(-1deg) rotateX(0deg);
  }
}

.macbook-frame-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.18));
}

.macbook-inner-screen {
  position: absolute;
  top: 22.85%;
  left: 16.50%;
  width: 66.89%;
  height: 41.50%;
  background: #0c0d10;
  overflow: hidden;
  border-radius: 4px;
}

.macbook-screen-content {
  width: 100%;
  height: 100%;
  background-color: #0c0d10; /* Futuristic dark dashboard background */
  background-image: 
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  padding: 14px;
  overflow: hidden;
  position: relative;
  font-family: var(--font-sans);
}

/* Dashboard Header */
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
}

.dash-logo {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dash-status {
  font-size: 9px;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981; /* Green active dot */
  border-radius: 50%;
  display: inline-block;
}

.status-dot.pulsing {
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Leads List animated scrolling feed */
.dash-leads-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 80%, transparent 100%);
}

.dash-lead-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: scrollLeads 16s linear infinite;
  will-change: transform;
}

@keyframes scrollLeads {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-240px); /* Adjust based on card height and gap to loop seamlessly */
  }
}

/* Stagger animations so they loop infinitely and look extremely fluid */
.dash-lead-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.lead-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 2px;
}

.lead-details {
  font-size: 9px;
  color: #71717a;
}

.lead-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.score-label {
  font-size: 8px;
  color: #71717a;
  margin-bottom: 1px;
}

.score-value {
  font-size: 11px;
  font-weight: 600;
}

.score-value.high {
  color: #06b6d4; /* cyan */
}

.score-value.exceptional {
  color: #8b5cf6; /* violet */
}

.lead-status {
  font-size: 9px;
  font-weight: 500;
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.1);
  padding: 4px 8px;
  border-radius: 999px;
  text-align: center;
  justify-self: end;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .macbook-container {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .solution-section {
    padding: 80px 0;
  }
  
  .solution-container {
    padding: 0 20px;
  }
  
  .solution-title {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .solution-cta-group {
    text-align: center;
  }

  .macbook-container {
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
  }
  
  .macbook-inner-screen {
    border-radius: 2px;
  }
  
  .macbook-screen-content {
    padding: 10px;
  }
  
  .dash-lead-card {
    grid-template-columns: 1.2fr 1fr;
    gap: 8px;
    padding: 10px;
  }
  
  .lead-score {
    display: none; /* Hide score column on small mobile screens */
  }
}

/* Process Section */
.process-section {
  background-color: var(--bg-light); /* Cor cinza do fundo da hero */
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
  z-index: 10;
  margin-top: -2px; /* Remove gaps from divider */
}

.process-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.process-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.02);
}

.process-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.process-subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-gray);
}

/* Process Grid (flex/row layout with cards and connection arrows) */
.process-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

/* Reduced size of the premium dark cards */
/* Reduced size of the premium dark cards */
.process-card {
  flex: 1;
  max-width: 260px; /* Increased width */
  min-height: 215px; /* Reduced height from bottom to top */
  background: #0d0e12; 
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px; /* Slightly tighter border-radius */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 255, 255, 0.06); 
}

/* Trail Arrow Separator */
.process-trail-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.4); /* Made darker for better visibility */
  transition: color 0.3s ease, transform 0.3s ease;
  animation: pulseArrow 2.5s ease-in-out infinite;
}

.process-trail-arrow svg {
  width: 24px; /* Increased size */
  height: 24px; /* Increased size */
  stroke-width: 3; /* Thicker strokes */
}

@keyframes pulseArrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(5px); /* Slightly larger movement */
    opacity: 1; /* Fully visible at peak */
  }
}

/* Visual container - takes top portion of the card */
.process-card-visual {
  width: 100%;
  height: 105px; /* Reduced height for smaller cards */
  background: radial-gradient(circle at center, #16181f 0%, #08090c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Outer radial glow inside card visual area */
.process-card-visual::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.process-card-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to top, #0d0e12, transparent);
  pointer-events: none;
  z-index: 2;
}

.process-card-img {
  width: 100%;
  height: 90%;
  object-fit: contain;
  z-index: 3;
  opacity: 0.65;
  filter: invert(1); /* Inverts black-on-white line art to white-on-black */
  mix-blend-mode: screen; /* Blends the black background away */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover .process-card-img {
  transform: scale(1.06) translateY(-2px);
  opacity: 0.95;
}

/* Content/Text styling - bottom portion of the card */
.process-card-info {
  padding: 14px; /* Tighter card padding */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.process-card-info h3 {
  font-size: 14.5px; /* Slightly smaller text */
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.process-card-info p {
  font-size: 11.5px; /* Slightly smaller text */
  font-weight: 300;
  line-height: 1.4;
  color: #8a8d9a; /* grayish blue */
}

/* Responsive constraints */
@media (max-width: 1024px) {
  .process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Formats perfectly into rows with arrows */
    justify-content: center;
    gap: 15px;
  }
  
  .process-card {
    max-width: 260px; /* Increased width */
    min-height: 215px; /* Reduced height from bottom to top */
    margin: 0 auto;
  }
  
  /* Manage arrow structure for 2x2:
     We want cards 1 & 2 side-by-side with an arrow,
     then card 3 & 4 side-by-side with an arrow.
     This means we hide Arrow 2 (the middle arrow that connects Card 2 and Card 3 across rows).
  */
  .process-grid .process-trail-arrow:nth-of-type(2) {
    display: none; /* Hide middle transition arrow on 2-row layouts */
  }
  
  /* Move cards 3 and 4 to row 2 */
  .process-grid .process-card:nth-of-type(3),
  .process-grid .process-trail-arrow:nth-of-type(3),
  .process-grid .process-card:nth-of-type(4) {
    grid-row: 2;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 0 100px;
  }
  
  .process-container {
    padding: 0 20px;
  }
  
  .process-title {
    font-size: 32px;
  }
  
  .process-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .process-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .process-trail-arrow {
    transform: rotate(90deg); /* Point arrows downwards on mobile */
    animation: pulseArrowVertical 3s ease-in-out infinite;
  }
  
  .process-grid .process-trail-arrow:nth-of-type(2) {
    display: flex; /* Show all arrows in single column flow */
  }
}

@keyframes pulseArrowVertical {
  0%, 100% {
    transform: rotate(90deg) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: rotate(90deg) translateY(5px);
    opacity: 1;
  }
}

/* Learning Section */
.learning-section {
  background-color: var(--bg-light);
  padding: 0 0 100px;
  position: relative;
  z-index: 10;
}

.learning-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.learning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.learning-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-premium);
}

.learning-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.01);
}

.learning-card h3 {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.learning-card p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-gray);
}

.learning-cta {
  margin-top: 50px;
  text-align: center;
}

/* Evolution Section */
.evolution-section {
  background-color: var(--bg-white);
  padding: 120px 0;
  position: relative;
  z-index: 10;
}

.evolution-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.evolution-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.evolution-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.02);
}

.evolution-title {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.evolution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 50px;
}

.evo-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.evo-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  margin-bottom: 24px;
  background-color: var(--bg-light);
}

.evo-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.evo-column h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.evo-column p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-gray);
}

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

/* Cases Section */
.cases-section {
  background-color: var(--bg-light);
  padding: 120px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cases-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.cases-header {
  max-width: 700px;
  margin: 0 auto 50px;
}

.cases-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.02);
}

.cases-header h2 {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cases-header p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-gray);
}

.cases-stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 50px;
}

.case-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
}

.case-stat-box .stat-number {
  font-size: 64px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 12px;
}

.case-stat-box p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-gray);
}

.cases-footer {
  max-width: 600px;
  margin: 0 auto;
}

.cases-footer p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 30px;
}

/* Investment & Guarantee Section */
.investment-section {
  background-color: var(--bg-white);
  padding: 120px 0;
}

.investment-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.investment-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.investment-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.02);
}

.investment-content h2 {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.investment-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.investment-list {
  list-style: none;
  margin-bottom: 40px;
}

.investment-list li {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-dark);
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.investment-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--text-gray);
}

.investment-pricing-box {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 35px;
}

.investment-pricing-box h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.investment-pricing-box p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-gray);
  margin-bottom: 24px;
}

/* Guarantee Box */
.guarantee-box {
  background-color: var(--bg-dark);
  border-radius: 24px;
  padding: 50px;
  color: var(--text-white);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.guarantee-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaaaaa;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 30px;
}

.guarantee-box h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.guarantee-box p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.guarantee-highlight {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--text-white) !important;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 16px;
  margin-top: 10px;
}

/* Diagnostic Section */
.diagnostic-section {
  background-color: var(--bg-light);
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.diagnostic-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.diagnostic-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-gray);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.02);
}

.diagnostic-content h2 {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.diagnostic-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 30px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-white);
  padding: 120px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-section-title {
  font-size: 38px;
  font-weight: 300;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  background-color: #0d0e12; /* Premium dark background */
  transition: var(--transition);
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question h3 {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--text-white); /* White text */
}

.faq-toggle {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4); /* Light grey/white toggle */
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 14px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--text-white);
}

.faq-answer p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.6;
  color: #8a8d9a; /* grayish blue text */
}

/* Closing Section */
.closing-section {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 100px 0;
  text-align: center;
}

.closing-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}

.closing-section h2 {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.closing-section p {
  font-size: 16px;
  font-weight: 300;
  color: #aaaaaa;
  margin-bottom: 40px;
}

/* Inherits the premium gradient styling with white text */

/* Footer styling adjustments */
.footer {
  background-color: var(--bg-dark);
  padding: 12px 0;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-brand p {
  font-size: 11px;
  color: #aaaaaa;
}

/* Responsive Queries for new sections */
@media (max-width: 1024px) {
  .learning-grid,
  .evolution-grid,
  .investment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .guarantee-box {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .learning-section,
  .evolution-section,
  .cases-section,
  .investment-section,
  .faq-section {
    padding: 80px 0;
  }
  
  .evolution-title,
  .cases-header h2,
  .investment-content h2,
  .diagnostic-content h2,
  .faq-section-title,
  .closing-section h2 {
    font-size: 30px;
  }
  
  .cases-stats-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-container {
    padding: 0 24px;
  }

  .faq-section-title {
    margin-bottom: 30px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    padding: 16px;
    border-radius: 12px;
  }

  .faq-question h3 {
    font-size: 14px;
  }

  .faq-toggle {
    font-size: 18px;
  }

  .faq-item.active .faq-answer {
    margin-top: 10px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .why-mancekt-grid,
  .problem-grid-symmetrical {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .why-card {
    padding: 20px !important;
  }

  .why-card h4 {
    font-size: 16px !important;
  }

  .why-card p {
    font-size: 14px !important;
  }
}

/* Symmetrical Grid for Problems (Desktop) */
.problem-grid-symmetrical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}

.why-card {
  background: rgba(0, 0, 0, 0.02);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-dark);
}

.why-card h4 span {
  font-size: 20px;
  color: var(--accent);
  line-height: 1.15;
}

.why-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* Word-wrapping support on CTA buttons */
.btn-primary,
.nav-btn-conversar {
  white-space: normal !important;
  word-break: break-word;
  text-align: center;
}

