// Imágenes reales para servicios y blog
const _img = { width: '100%', height: '100%', objectFit: 'cover', display: 'block' };
const _imgContain = { width: '100%', height: '100%', objectFit: 'contain', display: 'block' };

function ImgGeomatica() {
  return <img src="img/img-relleno.jpg" style={_img} alt="Geomática — Levantamiento aerofotogramétrico"/>;
}
function ImgEIA() {
  return <img src="img/img-eia.jpg" style={_img} alt="Estudio de Impacto Ambiental"/>;
}
function ImgMonitoreo() {
  return <img src="img/img-monitoreo.jpg" style={_img} alt="Monitoreo Ambiental"/>;
}
function ImgSIG() {
  return <img src="img/img-sig.jpg" style={_img} alt="Geomática y SIG — Análisis Multicriterio"/>;
}
function ImgGeoportal() {
  return <img src="img/img-geoportal.png" style={_imgContain} alt="Geoportal corporativo de infraestructura de datos espaciales"/>;
}
function ImgConsultoria() {
  return <img src="img/img-eia.jpg" style={_img} alt="Consultoría y Gestión Integral"/>;
}
function ImgIngenieria() {
  return <img src="img/img-ingenieria.jpg" style={_img} alt="Ingeniería Sanitaria — PTAR"/>;
}
function BlogImgDrone() {
  return <img src="img/hero.jpg" style={_img} alt="Drones y Monitoreo Ambiental"/>;
}
function BlogImgRelleno() {
  return <img src="img/img-relleno.jpg" style={_img} alt="Relleno Sanitario"/>;
}
function BlogImgMonitor() {
  return <img src="img/img-monitoreo.jpg" style={_img} alt="Monitoreo Ambiental"/>;
}

window.ImgGeomatica = ImgGeomatica;
window.ImgEIA = ImgEIA;
window.ImgMonitoreo = ImgMonitoreo;
window.ImgSIG = ImgSIG;
window.ImgGeoportal = ImgGeoportal;
window.ImgConsultoria = ImgConsultoria;
window.ImgIngenieria = ImgIngenieria;
window.BlogImgDrone = BlogImgDrone;
window.BlogImgRelleno = BlogImgRelleno;
window.BlogImgMonitor = BlogImgMonitor;
