/* =====================================================
   Mejoras para el texto de la cabecera
   Enfoque en profesionalidad y claridad visual
====================================================== */

/* Mejoras generales para el texto de la cabecera */
.hero p {
  line-height: 1.6;
  margin: 1.2rem 0 1.8rem;
  max-width: 650px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Mejora de espaciado entre elementos */
.hero h1 {
  margin-bottom: 1.5rem;
}

/* Mejora de los elementos destacados */
.hero p span.highlight-text {
  color: #1698b0;
  font-weight: 600;
}

/* Estilos para el bloque de características */
.hero-features {
  list-style: none;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(1, 27, 55, 0.6);
  border-radius: 10px;
  border-left: 3px solid rgba(22, 152, 176, 0.7);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
}

.hero-feature-item:last-child {
  border-bottom: none;
}

.hero-feature-icon {
  color: #1698b0;
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
}

.hero-feature-text {
  flex: 1;
  line-height: 1.5;
}



/* Adaptaciones responsivas */
@media (max-width: 992px) {
  .hero-features {
    padding: 1.1rem 1.3rem;
  }
  
  .hero-feature-item {
    padding: 0.45rem 0;
  }
  
  .hero-feature-text {
    font-size: 0.95rem;
  }
  
  .hero h1 {
    margin-bottom: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero-features {
    padding: 1rem 1.2rem;
    margin: 1.2rem 0;
  }
  
  .hero-feature-item {
    padding: 0.4rem 0;
  }
  
  .hero-feature-icon {
    font-size: 0.85rem;
  }
  
  .hero-feature-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .hero h1 {
    margin-bottom: 1.2rem;
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-features {
    padding: 0.9rem 1rem;
    margin: 1rem 0;
  }
  
  .hero-feature-item {
    padding: 0.35rem 0;
  }
  
  .hero-feature-icon {
    font-size: 0.8rem;
    width: 16px;
  }
  
  .hero-feature-text {
    font-size: 0.85rem;
    line-height: 1.35;
  }
  
  .hero h1 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }
  
  .tech-buttons {
    margin-top: 1.2rem;
  }
}
