SDG 2 – Zero Hunger

@media (max-width: 768px) { .dos-columnas { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: stretch; /* Asegura que ambas columnas tengan misma altura */ } .dos-columnas .et_pb_column_2 { display: flex; flex-direction: column; justify-content: center; height: auto; min-height: 100%; } }

Goals

Goal 2.1

2.1 By 2030, end hunger and ensure access for all people, in particular the poor and people in vulnerable situations, including infants, to safe, nutritious and sufficient food all year round.

Goal 2.2

2.2 By 2030, end all forms of malnutrition, including achieving, by 2025 at the latest, the internationally agreed targets on stunting and wasting in children under 5 years of age, and address the nutritional needs of adolescent girls, pregnant and lactating women and the elderly.

Goal 2.3

2.3 By 2030, double the agricultural productivity and incomes of small-scale food producers, in particular women, indigenous peoples, family farmers, pastoralists and fishers, inter alia through secure and equitable access to land, other productive resources and inputs, knowledge, financial services, markets and opportunities for value-added generation and non-farm employment.

Goal 2.4

2.4 By 2030, ensure the sustainability of food production systems and implement resilient agricultural practices that increase productivity and production, contribute to the maintenance of ecosystems, strengthen the capacity to adapt to climate change, extreme weather events, droughts, floods and other disasters, and progressively improve soil and land quality.

Goal 2.5

2.5 By 2020, maintain the genetic diversity of seeds, cultivated plants and farm and domesticated animals and their related wild species, inter alia through sound management and diversification of seed and plant banks at national, regional and international levels and promote access to and fair and equitable sharing of the benefits arising from the utilization of genetic resources and traditional knowledge, as internationally agreed.

Goal 2.a

2.a Increase investments, including through enhanced international cooperation, in rural infrastructure, agricultural research and extension services, technological development and plant and livestock gene banks in order to enhance agricultural production capacity in developing countries, particularly the least developed countries.

Goal 2.b

2.b Correct and prevent trade restrictions and distortions in global agricultural markets, inter alia by the parallel elimination of all forms of agricultural export subsidies and all export measures with equivalent effects, in accordance with the mandate of the Doha Development Round.

Goal 2.c

2.c Take measures to ensure the proper functioning of markets for basic food commodities and their derivatives and facilitate timely access to market information, in particular on food stocks, in order to help limit extreme volatility in food prices.

SDG-1
SDG-2
SDG-3
SDG-4
SDG-5
SDG-6
SDG-7
SDG-8
SDG-9
SDG-10
SDG-11
SDG-12
SDG-13
SDG-14
SDG-15
SDG-16
SDG-17
.horizontal-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 5px; padding: 20px; } .slide { flex: 0 0 auto; width: 70px; height: 70px; scroll-snap-align: start; transition: transform 0.3s ease; } .slide img { width: 100%; height: 100%; object-fit: cover; } /* Zoom en móvil */ @media (max-width: 768px) { .slide { width: 30vw; /* Más compacto que 80vw */ height: auto; aspect-ratio: 1 / 1; scroll-snap-align: center; transition: transform 0.3s ease; } .slide img { width: 100%; height: 100%; object-fit: contain; border-radius: 0; /* Elimina redondeo si no se desea */ } .zoomed { transform: scale(1.1); z-index: 2; } } const container = document.querySelector('.horizontal-slider'); const slides = document.querySelectorAll('.slide'); function updateZoomedSlide() { let center = container.scrollLeft + container.offsetWidth / 2; slides.forEach(slide => { const rect = slide.getBoundingClientRect(); const slideCenter = rect.left + rect.width / 2; if (Math.abs(slideCenter - window.innerWidth / 2) { if (window.innerWidth <= 768) { updateZoomedSlide(); } }); window.addEventListener('resize', updateZoomedSlide); window.addEventListener('load', updateZoomedSlide); @media (max-width: 768px) { .dos-columnas { display: flex; flex-direction: row !important; /* Fuerza horizontal */ flex-wrap: nowrap; gap: 12px; /* Ajusta según separación deseada */ } .dos-columnas > div { flex: 1 1 50%; /* Cada columna ocupa la mitad */ min-width: 0; /* Evita desbordamiento */ } }