.quehacemos-wrapper {
  max-width: 1200px; /* igual que a empresa i infografia */
  margin: 0 auto;
  padding: 20px;
}

.quehacemos-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.quehacemos-titol h1 {
  margin-top: 60px;
  margin-bottom: 30px;
}

.quehacemos-titol h2 {
  margin-bottom: 30px;
  font-size: 0.95em;
}

.quehacemos-titol ul {
  list-style: none;
  padding: 0;
}

.quehacemos-titol p {
  margin-top: 80px;
  margin-bottom: 50px;
  font-size: 1.35em;
}

.quehacemos-titol ul li {
  font-size: 1em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.quehacemos-imatge img {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  margin-top: 100px;
  max-width: 100%;
  margin-bottom: 40px;
}

/* --- Secció Serveis --- */
.serveis {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.servei {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.servei-text {
  flex: 1 1 60%;
  color: #0026a3;
}

.servei-text h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4em;
  text-align: left;
}

.servei-text p {
  font-size: 1em;
  line-height: 1.6em;
}

.servei-img {
  flex: 1 1 35%;
  text-align: center;
}

.servei-img img {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* --- Seccions corporatives --- */
.corporativa-seccions {
  width: 100%;
  margin-bottom: 30px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  white-space: nowrap;
}

.seccio {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.seccio .linia {
  height: 2px;
  background-color: #2962a7b0;
  margin: 5px 0;
  width: 470px;
}

.seccio .text {
  font-weight: 600;
  color: #0026a3;
  font-size: 1em;
  text-align: left;
  width: 470px;
}

/* Responsive */
@media (max-width: 1000px) {
  .quehacemos-grid {
    grid-template-columns: 1fr;
  }

  .quehacemos-imatge {
    text-align: center;
  }

  .quehacemos-imatge img {
    max-width: 100%;
    height: auto;
  }

  .quehacemos-titol h1,
  .quehacemos-titol h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .servei {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .servei-text, 
  .servei-img {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .seccio .linia,
  .seccio .text {
    width: 100%;
    max-width: 100%;
  }

  .corporativa-seccions {
    white-space: normal;
  }

  .servei {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
  }

  .servei-text h3 {
    font-size: 1.2em;
  }

  .servei-text p {
    font-size: 0.95em;
  }

  .quehacemos-titol h1 {
    font-size: 2em;
    text-align: center;
  }
}
