.working-areas-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px;
}

.wa-title {
  color: #03354A;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.wa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 40px 40px;
}

.wa-block {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wa-block-img {
  min-height: 180px;
  border-radius: 12px;
  background: #d1c4e9;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  padding: 0%;
}

/* Efecto y diseño para imágenes en HTML */
.wa-img {
  position: relative;
  overflow: hidden;
  border: 5px solid #fff;
  min-height: 180px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: none !important;
}
.wa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 3s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}
.wa-img:hover img {
  transform: scale(1.08);
}
/* Eliminar overlays y pseudo-elementos */
.wa-img::before,
.wa-img1::before,
.wa-img2::before,
.wa-img3::before,
.wa-img4::before,
.wa-img5::before {
  content: none !important;
  background: none !important;
  background-image: none !important;
  display: none !important;
}

/* Modificadores para cada imagen */
/* Ya no se usan estas clases para background-image, solo para layout/grid */
/* Mantener solo el CSS necesario para el layout y el efecto sobre <img> */

.wa-heading-main {
  color: #a259c6;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.wa-heading {
  color: #03354A;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.wa-text {
  color: #363535;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid placement */
.wa-block-left { grid-column: 1; }
.wa-block-right { grid-column: 2; }
.wa-img1 { grid-column: 2; grid-row: 1; }
.wa-img2 { grid-column: 1; grid-row: 2; }
.wa-img3 { grid-column: 2; grid-row: 3; }

.wa-img1,
.wa-img2,
.wa-img3,
.wa-img4,
.wa-img5 {
  border: 5px solid #fff;
}

@media (max-width: 900px) {
  .wa-grid {
    gap: 24px 16px;
  }
  .wa-block, .wa-block-img {
    padding: 20px 12px;
  }
}

@media (max-width: 700px) {
  .wa-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .wa-block, .wa-block-img {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 8px;
  }
  .wa-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }

.working-areas-section {
  padding: 4px 0px;
}
} 