/* ===== ECOSYSTEM SECTION - FUTURISTA NEUROSEARCH STYLE ===== */
.neurosearch-ecosystem {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #000000;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid sutil de fondo */
.neurosearch-ecosystem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}

.neurosearch-ecosystem-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Content Wrapper */
.neurosearch-ecosystem-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Text Content */
.neurosearch-ecosystem-text-content {
  padding-right: 40px;
}

.neurosearch-ecosystem-title {
  margin: 0 0 30px 0;
}

.neurosearch-title-line {
  display: block;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.neurosearch-ecosystem-subtitle {
  font-size: 1rem;
  color: #888888;
  line-height: 1.6;
  margin: 0 0 40px 0;
  font-weight: 400;
}

.neurosearch-ecosystem-cta-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.neurosearch-ecosystem-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.neurosearch-ecosystem-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.neurosearch-ecosystem-cta-button:hover::before {
  left: 100%;
}

.neurosearch-ecosystem-cta-button:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.neurosearch-ecosystem-guarantee {
  font-size: 0.85rem;
  color: #888888;
  font-weight: 400;
}

/* Phone Mockup */
.neurosearch-ecosystem-phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.neurosearch-phone-frame {
  width: 340px;
  height: 680px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 40px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.neurosearch-phone-frame:hover {
  border-color: rgba(80, 80, 85, 0.7);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
}

.neurosearch-phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 40px;
}

.neurosearch-phone-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 30px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(60, 60, 65, 0.3);
}

.neurosearch-phone-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 5px;
}

.neurosearch-phone-status-left i,
.neurosearch-phone-status-right i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.neurosearch-phone-logo {
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
}

.neurosearch-phone-timer {
  font-size: 3.5rem;
  font-weight: 500;
  color: #ffffff;
  margin: 10px 0;
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
}

.neurosearch-phone-location {
  font-size: 1rem;
  color: #888888;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.neurosearch-phone-location::before {
  content: '📍';
  font-size: 0.9rem;
}

#ecosystemPlanetCanvas {
  width: 100%;
  height: auto;
  margin: 20px 0;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.neurosearch-phone-connection-btn {
  margin-top: auto;
  padding: 12px 40px;
  background: rgba(30, 30, 35, 0.9);
  border: 1px solid rgba(60, 60, 65, 0.5);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.3s ease;
}

.neurosearch-phone-connection-btn:hover {
  background: rgba(40, 40, 45, 0.95);
  border-color: rgba(80, 80, 85, 0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .neurosearch-ecosystem-content-wrapper {
    gap: 60px;
  }
  
  .neurosearch-title-line {
    font-size: 4rem;
  }
}

@media (max-width: 1024px) {
  .neurosearch-ecosystem-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .neurosearch-ecosystem-text-content {
    padding-right: 0;
    text-align: center;
  }
  
  .neurosearch-ecosystem-cta-group {
    align-items: center;
  }
  
  .neurosearch-title-line {
    font-size: 3.5rem;
  }
  
  .neurosearch-phone-frame {
    width: 300px;
    height: 600px;
  }
  
  .neurosearch-ecosystem-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .neurosearch-ecosystem {
    padding: 80px 0;
  }
  
  .neurosearch-ecosystem-container {
    padding: 0 24px;
  }
  
  .neurosearch-title-line {
    font-size: 2.8rem;
  }
  
  .neurosearch-ecosystem-subtitle {
    font-size: 0.9rem;
  }
  
  .neurosearch-phone-frame {
    width: 280px;
    height: 560px;
  }
  
  .neurosearch-phone-timer {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .neurosearch-title-line {
    font-size: 2.2rem;
  }
  
  .neurosearch-phone-frame {
    width: 260px;
    height: 520px;
  }
  
  .neurosearch-phone-timer {
    font-size: 2rem;
  }
  
  .neurosearch-ecosystem-cta-button {
    padding: 14px 32px;
    font-size: 0.9rem;
  }
}

