HomeCosta RicaCosta Rica Survey Shows Strong Support for the President

Costa Rica Survey Shows Strong Support for the President

Rodrigo Chaves Robles enjoys high popularity after completing the first 100 days in office. The University of Costa Rica revealed this through a survey by the Political Studies Research Center (CIEP).

According to the CIEP, 79% of the people consulted on this occasion rated the work of the current president as good or very good. Meanwhile, 10% of those interviewed considered it bad, and 21% maintained a neutral position.

In general, the administration is also rated as good or very good by 71% of citizens. Only 9% of those surveyed consider it bad or very bad.

“No administration has had as much support as the current one,” said Jesús Guzmán Castillo, CIEP researcher.

Many political experts agree that the strong support for Chaves is explained by the “honeymoon effect,” in which people show unconditional support. However, this period may fade rapidly if accurate results do not follow the promises and proposals made by politicians.

“This could be explained by the great expectations of change citizens have. Although three months have passed, these expectations remain very high but could begin to experience a drop at any moment,” added Guzmán.

Ronald Alfaro Redondo, the coordinator of the survey, stated that in countries where there is high popularity of political leaders, there is a risk that citizens may support actions that disrespect the rules of democratic coexistence. However, the significant attachment to the democratic system in Costa Rica represents “a brake on this type of action.”

On the other hand, Costa Ricans expressed their concerns, and the problems they consider should be addressed promptly.

“The cost of living and economic situation continues to position itself as the country’s main problem for the population interviewed,” the study states.

Costa Ricans also pointed to unemployment and corruption as major problems afflicting the country. These were two central topics in Rodrigo Chaves’ campaign. He indicated that his mandate would be focused on ending corruption and providing employment opportunities.

Insecurity and crime were also two problems brought up by the public. Unfortunately, both have been growing in the country. Most people are confident that President Chaves will be able to solve these problems.

However, to maintain this unconditional support, Chaves must repay Costa Ricans’ by addressing these issues. To a great extent, his popularity will depend on whether he manages to solve the problems that strongly burden the Costa Ricans.

“After the election results, the Costa Rican society is undergoing a stress test; people are giving the president the benefit of the doubt, but they are not going to be complacent,” said Alfaro.

For the moment, civil society remains vigilant. While Costa Ricans know that the country’s problems cannot be solved within a few months, they expect the government to act promptly and fulfill the promises made during the campaign. If anything, Ticos are tired of politicians who promise change and deliver nothing.

Trending Now

A Special Season to Rediscover Río Celeste

Hideaway Río Celeste, a 5-star hotel that combines the beauty of nature with the allure and wellness of Río Celeste Its Kantala restaurant is open...

Jacó Beach Is Changing as New Residents and Major Brands Move In

For decades, Jacó’s economy has revolved around the beach. Surfing, hotels, restaurants, nightlife and weekend visitors from San José helped turn the Central Pacific...

Costa Rica’s Juan Santamaría Airport Keeps Highest Passenger Experience Accreditation

Costa Rica’s Juan Santamaría International Airport has renewed the highest level of an international passenger experience accreditation, placing the country’s main airport among just...

Forbes Spotlights La Fortuna’s Turn Toward Costa Rican Fine Dining

A Forbes travel feature published on the 14th argues that La Fortuna is quietly redefining what upscale dining looks like in Costa Rica, and...

Costa Rican Lawmakers Reject Minute of Silence for Man Who Died in ICE Custody

Costa Rica's Legislative Assembly yesterday rejected a motion to hold a minute of silence for Carlos Josué Marchena, a Costa Rican man who died...

Costa Rican TikTok Star Julián Valverde Reported in ICE Custody

Costa Rican content creator Julián Valverde, known online as Julián Valjota, is in the custody of US Immigration and Customs Enforcement. A source close...

Costa Rica Airport Warns Drone Incidents Are Disrupting Flights

Reports of drones flying near San Jose's Juan Santamaría International Airport have increased sharply this year, prompting airport officials to warn that unauthorized flights...

Costa Rica’s Rebeca Grynspan retakes lead in race to head the UN

Costa Rican economist Rebeca Grynspan moved back to the front of the race to become the next secretary-general of the United Nations on Friday....

Chikungunya Cases Rise to 300 in Costa Rica as New Outbreak Hits San José

Costa Rica has reported 300 confirmed and probable cases of chikungunya so far in 2026, as the mosquito-borne virus continues to spread and a...
🌴 The Weekly Pura Vida

Costa Rica, Once a Week

The week's top stories, weather & insider tips — delivered every Sunday. One email, zero clutter.

🔒 Free. No spam. Unsubscribe anytime.

Loading…
Feels like Humidity Wind
Full Costa Rica Forecast →
Data: OpenWeatherMap
(function(){ var apiKey = '9e9319f5829bcece983394a6b8a5cc80'; var gradients = { clear: 'linear-gradient(135deg,#f5a623 0%,#e67e22 100%)', clouds: 'linear-gradient(135deg,#6b8cae 0%,#4a6b8a 100%)', rain: 'linear-gradient(135deg,#4a6b8a 0%,#2c3e50 100%)', drizzle: 'linear-gradient(135deg,#5b8bb0 0%,#3a6384 100%)', thunderstorm: 'linear-gradient(135deg,#3a3a5c 0%,#1a1a2e 100%)', mist: 'linear-gradient(135deg,#8ca5b8 0%,#607888 100%)', fog: 'linear-gradient(135deg,#8ca5b8 0%,#607888 100%)', default: 'linear-gradient(135deg,#4a90d9 0%,#2c5f9e 100%)' }; function loadCity(city, label){ var body = document.getElementById('tt-weather-body'); var loading = document.getElementById('tt-weather-loading'); var content = document.getElementById('tt-weather-content'); loading.style.display = 'block'; loading.textContent = 'Loading…'; content.style.display = 'none'; var url = 'https://api.openweathermap.org/data/2.5/weather?q=' + encodeURIComponent(city) + '&units=imperial&appid=' + apiKey; fetch(url).then(function(r){return r.json();}).then(function(d){ if(d.cod && d.cod !== 200){ loading.textContent = 'Weather unavailable.'; return; } var main = d.weather[0].main.toLowerCase(); body.style.background = gradients[main] || gradients.default; document.getElementById('tt-weather-location').textContent = label + ', Costa Rica'; document.getElementById('tt-weather-temp').textContent = Math.round(d.main.temp) + '°'; document.getElementById('tt-weather-desc').textContent = d.weather[0].description; document.getElementById('tt-weather-feels').textContent = Math.round(d.main.feels_like) + '°'; document.getElementById('tt-weather-humidity').textContent = d.main.humidity + '%'; document.getElementById('tt-weather-wind').textContent = Math.round(d.wind.speed) + ' mph'; document.getElementById('tt-weather-icon').src = 'https://openweathermap.org/img/wn/' + d.weather[0].icon + '@2x.png'; loading.style.display = 'none'; content.style.display = 'block'; }).catch(function(){ loading.textContent = 'Weather temporarily unavailable.'; }); } var tabs = document.querySelectorAll('.tt-tab'); tabs.forEach(function(tab){ tab.addEventListener('click', function(){ tabs.forEach(function(t){ t.style.opacity='0.6'; t.style.borderBottom='3px solid transparent'; t.style.fontWeight='400'; }); tab.style.opacity='1'; tab.style.borderBottom='3px solid #ffb300'; tab.style.fontWeight='600'; loadCity(tab.getAttribute('data-city'), tab.getAttribute('data-label')); }); }); loadCity('San Jose,CR', 'San José'); })();

Latest News from Costa Rica

Costa Rica Coffee Maker Chorreador
Costa Rica Car Rentals
Costa Rica Travel Insurance
Costa Rica Travel