/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --color-primary: #0066FF;
  --color-primary-hover: #0052CC;
  --color-primary-light: #EEF6FF;
  --color-primary-gradient: linear-gradient(135deg, #0066FF 0%, #004EEB 100%);
  --color-text-dark: #07142F;
  --color-text-gray: #5E6B85;
  --color-border: #E6ECF5;
  --color-white: #FFFFFF;
  --color-whatsapp: #25D366;
  
  /* Typography */
  --font-family: 'Inter', 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Layout & Spacing */
  --mobile-width: 430px;
  --desktop-width: 1180px;
  --spacing-mobile: 64px;
  --spacing-desktop: 110px;
  
  /* Shadows & Borders */
  --shadow-soft: 0 12px 35px rgba(0, 60, 140, 0.08);
  --shadow-button: 0 10px 25px rgba(0, 102, 255, 0.25);
  --shadow-button-hover: 0 14px 30px rgba(0, 102, 255, 0.35);
  --border-sutil: 1px solid var(--color-border);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Base Headings & Text */
h1, h2, h3, h4 {
  font-family: 'Sora', var(--font-family);
  color: var(--color-text-dark);
  font-weight: 800;
  line-height: 1.2;
}

p {
  color: var(--color-text-gray);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

/* Utilities */
.text-blue {
  color: var(--color-primary);
}

.container {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Constraint: below desktop, constraint container for beautiful presentation */
@media (max-width: 1023px) {
  .container, 
  .header-container, 
  .nav-menu {
    max-width: var(--mobile-width);
  }
  
  section {
    margin-bottom: var(--spacing-mobile);
  }
}

@media (min-width: 1024px) {
  section {
    margin-bottom: var(--spacing-desktop);
  }
}

/* Cards Base */
.card {
  background-color: var(--color-white);
  border: var(--border-sutil);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 60, 140, 0.12);
  border-color: #D3E2F5;
}

/* Buttons Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 18px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.icon-whatsapp {
  margin-right: 10px;
  flex-shrink: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-sutil);
  height: 72px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

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

.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.logo-highlight {
  color: var(--color-primary);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-text-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hamburger active state */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Mobile */
.nav-menu {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: var(--color-white);
  border-bottom: var(--border-sutil);
  box-shadow: var(--shadow-soft);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.nav-menu.active {
  max-height: 400px;
}

.nav-menu ul {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.nav-menu .btn-menu {
  display: block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
}

.nav-menu .btn-menu:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding-top: 36px;
  padding-bottom: 24px;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 1.85rem;
  line-height: 1.25;
  color: var(--color-text-dark);
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-gray);
  margin-top: 18px;
}

.hero-btn {
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  margin-top: 48px;
  background: radial-gradient(circle, rgba(238,246,255,1) 0%, rgba(255,255,255,0) 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.hero-bg-dots {
  position: absolute;
  z-index: 1;
  opacity: 0.4;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 320px;
  animation: floatMobileMockup 6s ease-in-out infinite;
}

.hero-mockup-img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 60, 140, 0.15));
}

@keyframes floatMobileMockup {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

/* ==========================================================================
   10 ANOS DE MERCADO
   ========================================================================== */
.section-ten-years {
  padding-top: 12px;
}

.card-ten-years {
  padding: 28px;
  border-radius: 28px;
  text-align: center;
}

.badge-medal-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.badge-medal {
  width: 64px;
  height: 64px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-ten-years-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.card-ten-years-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-gray);
  margin-bottom: 24px;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-indicators .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E2E8F0;
  transition: var(--transition-smooth);
}

.slider-indicators .dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--color-primary);
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.services-section {
  background-color: var(--color-primary-light);
  padding-top: var(--spacing-mobile);
  padding-bottom: var(--spacing-mobile);
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  padding: 0 10px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.card-service {
  padding: 18px;
  border-radius: 20px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0, 60, 140, 0.03);
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-gray);
}

.services-action-btn {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.diferenciais-section {
  padding-top: 12px;
}

.diferenciais-title {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 24px;
  text-align: left;
}

.diferenciais-visual {
  background: radial-gradient(circle, rgba(238,246,255,1) 0%, rgba(255,255,255,0) 70%);
  display: flex;
  justify-content: center;
  padding: 30px 0;
  margin-bottom: 24px;
}

.rocket-img {
  width: 80%;
  max-width: 280px;
  filter: drop-shadow(0 20px 45px rgba(0, 60, 140, 0.12));
  animation: floatRocket 7s ease-in-out infinite;
}

@keyframes floatRocket {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

.diferenciais-checklist {
  margin-top: 24px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.check-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.checklist-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* ==========================================================================
   PROCESSO (TIMELINE)
   ========================================================================== */
.process-section {
  padding-top: 12px;
}

.timeline-container {
  position: relative;
  margin-top: 48px;
  padding-left: 36px;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 2px;
  background-color: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--color-white);
}

.timeline-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--color-border);
}

.timeline-card-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-card-text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-text-gray);
}

/* ==========================================================================
   NÚMEROS
   ========================================================================== */
.numbers-section {
  padding-top: 12px;
}

.card-numbers {
  background: var(--color-primary-gradient);
  border-radius: 24px;
  padding: 32px 24px;
  color: var(--color-white);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.number-item svg {
  opacity: 0.9;
  margin-bottom: 4px;
}

.number-val {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.number-label {
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.number-full-width {
  grid-column: span 2;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  margin-top: 8px;
}

/* ==========================================================================
   TECNOLOGIAS
   ========================================================================== */
.tech-section {
  padding-top: 12px;
  text-align: center;
}

.tech-icons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 24px;
}

.tech-icon-card {
  width: 58px;
  height: 58px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.tech-icon-card:hover {
  transform: scale(1.1) rotate(2deg);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.tech-footer-text {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.depoimentos-section {
  padding-top: 12px;
}

.card-depoimento {
  padding: 36px 28px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}

.quotes-icon {
  font-family: 'Sora', sans-serif;
  font-size: 4.5rem;
  color: var(--color-primary);
  line-height: 1;
  opacity: 0.15;
  margin-bottom: -20px;
}

.depoimento-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.depoimento-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}

.depoimento-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary-light);
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
}

.author-role {
  font-size: 0.75rem;
  color: var(--color-text-gray);
}

/* ==========================================================================
   SEGMENTOS
   ========================================================================== */
.segmentos-section {
  padding-top: 12px;
}

.segmentos-list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.segmento-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.segmento-item:first-child {
  border-top: 1px solid var(--color-border);
}

.segmento-item:hover {
  padding-left: 8px;
  border-bottom-color: var(--color-primary);
}

.segmento-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.segmento-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.segmento-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.segmento-arrow {
  transition: var(--transition-smooth);
}

.segmento-item:hover .segmento-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final-section {
  background: linear-gradient(180deg, var(--color-primary-light) 0%, rgba(238,246,255,0.3) 100%);
  padding-top: var(--spacing-mobile);
  padding-bottom: var(--spacing-mobile);
  text-align: center;
}

.cta-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.cta-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-primary);
  background-color: rgba(0, 102, 255, 0.08);
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 1px;
}

.cta-title {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-cta {
  background-color: var(--color-primary);
  border-radius: 16px;
  height: 64px;
  box-shadow: var(--shadow-button);
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  align-items: center;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-benefits li svg {
  flex-shrink: 0;
}

.cta-benefits li span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100%;
}

.footer-content {
  padding-top: 12px;
  padding-bottom: 40px;
  text-align: center;
  position: relative;
}

.footer-logo {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 16px;
}

.logo-text-white {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
}

.logo-highlight-white {
  opacity: 0.9;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
  color: var(--color-white);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.75;
  line-height: 1.5;
  color: var(--color-white);
}

.footer-copy p {
  color: var(--color-white);
}

.back-to-top {
  position: absolute;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  z-index: 5;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   ANIMATIONS (FADE-UP)
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   DESKTOP RESPONSIVE LAYOUT (>= 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  .container {
    max-width: var(--desktop-width);
    padding-left: 32px;
    padding-right: 32px;
  }
  
  /* Reset container limitation for mobile emulation */
  .container, 
  .header-container, 
  .nav-menu {
    max-width: var(--desktop-width);
  }

  /* Header Overrides */
  .header {
    height: 80px;
  }
  
  .header-container {
    position: relative;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .nav-menu {
    position: static;
    transform: none;
    width: auto;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }
  
  .nav-menu ul {
    flex-direction: row;
    padding: 0;
    gap: 32px;
    align-items: center;
  }
  
  .nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  .nav-menu .btn-menu {
    padding: 10px 20px;
    border-radius: 99px;
  }
  
  /* Hero Overrides */
  .hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    text-align: left;
  }
  
  .hero-content {
    text-align: left;
  }
  
  .hero-title {
    font-size: 3.25rem;
    line-height: 1.15;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
    max-width: 580px;
  }
  
  .hero-btn {
    width: auto;
    display: inline-flex;
    padding: 18px 36px;
  }
  
  .hero-visual {
    margin-top: 0;
    justify-content: flex-end;
  }
  
  .hero-image-wrapper {
    width: 100%;
    max-width: 400px;
  }
  
  /* 10 Anos de Mercado */
  .section-ten-years {
    padding-top: 0;
  }
  
  .card-ten-years {
    padding: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .card-ten-years-title {
    font-size: 2rem;
  }
  
  .card-ten-years-text {
    font-size: 1.1rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Serviços Grid (3 Colunas) */
  .services-section {
    padding-top: var(--spacing-desktop);
    padding-bottom: var(--spacing-desktop);
  }
  
  .section-header {
    margin-bottom: 56px;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
  
  .card-service {
    padding: 32px;
    border-radius: 24px;
  }
  
  .service-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }
  
  .service-card-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }
  
  .service-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .services-action-btn .btn {
    width: auto;
    padding: 18px 40px;
  }

  /* Diferenciais Section */
  .diferenciais-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 24px 48px;
    align-items: center;
  }
  
  .diferenciais-content {
    grid-column: 1;
    grid-row: 1;
  }
  
  .diferenciais-title {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 0;
  }
  
  .diferenciais-visual {
    grid-column: 2;
    grid-row: span 2;
    padding: 0;
    margin-bottom: 0;
    justify-content: center;
  }
  
  .rocket-img {
    max-width: 380px;
    width: 100%;
  }
  
  .diferenciais-checklist {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
  }
  
  .checklist {
    gap: 20px;
  }
  
  .checklist-text {
    font-size: 1.05rem;
  }
  
  /* Processo Section (4 colunas horizontais) */
  .timeline-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-left: 0;
    margin-top: 56px;
  }
  
  .timeline-line {
    top: 12px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-border);
  }
  
  .timeline-item {
    margin-bottom: 0;
  }
  
  .timeline-badge {
    position: static;
    margin-bottom: 16px;
    box-shadow: 0 0 0 6px var(--color-white);
  }
  
  .timeline-card {
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 24px;
  }
  
  .timeline-card-icon-wrapper {
    margin-bottom: 8px;
  }
  
  .timeline-card-title {
    font-size: 1.05rem;
  }
  
  .timeline-card-text {
    font-size: 0.85rem;
  }

  /* Números Card */
  .card-numbers {
    padding: 48px 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  
  .number-item {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 24px;
  }
  
  .number-item:last-child,
  .number-full-width {
    border-right: none;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    grid-column: span 1;
  }
  
  .number-val {
    font-size: 2.25rem;
  }
  
  .number-label {
    font-size: 0.85rem;
  }

  /* Tecnologias */
  .tech-icons-row {
    gap: 24px;
    margin-top: 36px;
  }
  
  .tech-icon-card {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }
  
  .tech-icon-card svg {
    width: 48px;
    height: 48px;
  }
  
  .tech-footer-text {
    font-size: 0.95rem;
    max-width: 100%;
  }

  /* Depoimentos e Segmentos Lado a Lado */
  .depoimentos-section {
    padding-bottom: 0;
  }
  
  .depoimentos-section .section-header,
  .segmentos-section .section-header {
    text-align: left;
    margin-bottom: 24px;
  }
  
  /* Crie um container flex para agrupar Depoimentos e Segmentos no desktop */
  .depoimentos-segmentos-wrapper {
    /* Grid removido daqui para evitar conflito com o container interno */
  }
  
  /* Mover a seção de segmentos para dentro do wrapper no desktop */
  /* Nota: faremos isso estruturalmente via JS ou mantemos no fluxo. Para manter fluxo limpo sem alterar ordem HTML de leitura:
     Podemos usar Grid na área comum ou simplesmente flexbox. Vamos usar uma div container no HTML se necessário.
     Na verdade, no HTML criamos seções separadas. Para juntar no desktop, podemos envolver depoimentos e segmentos numa classe flex/grid que ativa no desktop.
     Vamos fazer isso estruturando o HTML de forma que estejam vizinhos e embrulhados, ou simplesmente grid no pai!
     Mas já que são seções separadas:
     No desktop, podemos envelopar no CSS? Não, mas se o HTML já as agrupa, fica perfeito.
     Vou atualizar o HTML ou estilizar as duas seções para ocuparem 50% em uma linha usando Grid no container principal.
     Para evitar complexidade estrutural, a melhor forma é ter as duas seções como irmãs dentro de um container flex.
  */
  
  /* CTA Final */
  .cta-final-section {
    padding-top: var(--spacing-desktop);
    padding-bottom: var(--spacing-desktop);
  }
  
  .cta-title {
    font-size: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-subtitle {
    font-size: 1.15rem;
    margin-bottom: 36px;
  }
  
  .btn-cta {
    width: auto;
    display: inline-flex;
    padding: 18px 48px;
  }
  
  .cta-benefits {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-top: 36px;
  }
  
  /* Footer */
  .footer-wave {
    height: 100px;
    top: -100px;
  }
  
  .footer-content {
    padding-top: 32px;
    padding-bottom: 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
    text-align: left;
    align-items: center;
  }
  
  .footer-logo {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
    margin-bottom: 0;
  }
  
  .footer-desc {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    max-width: 340px;
    font-size: 0.95rem;
  }
  
  .footer-socials {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
  }
  
  .footer-divider {
    grid-column: 1 / span 3;
    grid-row: 3;
    margin-bottom: 0;
    margin-top: 12px;
  }
  
  .footer-copy {
    grid-column: 1 / span 3;
    grid-row: 4;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
  }
  
  .back-to-top {
    grid-column: 3;
    grid-row: 1 / span 2;
    position: static;
    margin-left: auto;
  }
}

/* ==========================================================================
   SUPPORT FOR DEPOIMENTOS + SEGMENTOS LADO A LADO ON DESKTOP
   ========================================================================== */
@media (min-width: 1024px) {
  /* Envelopando Depoimentos e Segmentos em duas colunas */
  .depoimentos-segmentos-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
  }
  
  .depoimentos-section,
  .segmentos-section {
    padding: 0;
    margin-bottom: 0;
  }
  
  .depoimentos-segmentos-wrapper {
    margin-bottom: var(--spacing-desktop);
  }
}
