/* Minimalista Layout - Clean and Simple */

.home {
  background: var(--bg-color);
  padding: 100px 5%;
}

.home-content h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -1px;
}

.home-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-color);
  margin: 1rem 0;
}

.home-content p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  color: var(--text-color);
  opacity: 0.8;
}

.home-img .rhombus {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.btn {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}
