ADVENTURE DONE RIGHT!

EXPERIENCE LA FORTUNA'S TOP TOURS WITH JUNGLE TOURS 
Woman standing on a tree branch by a lake with a mountain in the background.

Experience Costa Rica's Best Adventures

Discover thrilling escapades with our expertly guided tours, immersing you in La Fortuna’s breathtaking natural wonders and vibrant wildlife.
Tours - La Fortuna
Tour 1
Fortuna Waterfall + Arenal Volcano
Hora: 8:00 AM
$95
BOOK
Tour 2
Arenal Volcano + Hanging Bridges
Hora: 10:30 AM
$115
BOOK
Tour 3
Fortuna Waterfall + Arenal Volcano + Hanging Bridges
Hora: 8:00 AM
$155
BOOK
Tour 4
Fortuna Waterfall + Hanging Bridges
Hora: 8:40 AM
$125
BOOK
Tour 5
Volcano Hike
Hora: 7:00 AM | 10:20 AM | 1:40 PM
$55
BOOK
Tour 6
Sloth Watching Tour
Hora: 8 AM - 4 PM (Cada Hora)
$60
BOOK
Tour 7
Night Walk
Hora: 6:00 PM
$60
BOOK

Discover Nature

JUNGLE TOURS

JUNGLE TOURS

COMBOS & TOURSS

More info
SLOTH WATCHING TRAIL

SLOTH WATCHING TRAIL

TOURS

More info
Person zip lining through lush green tropical forest, wearing a red helmet and yellow shirt.

AIR TIME ZIP LINE

ZIP LINE TOUR

More info

Epic Discoveries

Unforgettable La Fortuna Experiences

Explore breathtaking adventures in La Fortuna with our expert-guided tours, tailored for unforgettable Costa Rican experiences.

Combo 3

La Fortuna Adventure Combo

Hike to La Fortuna Waterfall, explore Arenal Volcano, enjoy a delicious lunch, and walk the stunning Mistico Hanging Bridges all in one unforgettable day!

Rio Celeste Hike

Río Celeste: A Natural Wonder

Explore the vibrant turquoise waters of Río Celeste, hike through lush rainforest, and marvel at its stunning waterfall—a must-see natural gem

Cultural Tour

Coffee, Chocolate & Sugarcane Tour

Discover the rich flavors of Costa Rica! Learn the traditional processes of coffee, chocolate, and sugarcane production in an interactive and delicious experience. Perfect for culture and food enthusiasts

Sloth Watching Tour

Sloth Watching Tour

Join us for a guided tour with a 100% chance of spotting sloths in their natural habitat, along with other wildlife, all while exploring the lush rainforest of Costa Rica. A must for animal lovers!

Contact Us for Adventure

Reach out for unforgettable La Fortuna adventure tours in Costa Rica.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.
import pygame import random # Inicialización de Pygame pygame.init() # Configuración de pantalla ANCHO = 800 ALTO = 400 pantalla = pygame.display.set_mode((ANCHO, ALTO)) pygame.display.set_caption("Aventura del Pérezoso") # Colores BLANCO = (255, 255, 255) NEGRO = (0, 0, 0) VERDE = (34, 139, 34) # FPS fps = 60 clock = pygame.time.Clock() # Pérezoso perezoso_img = pygame.Surface((50, 50)) perezoso_img.fill((139, 69, 19)) # Color marrón para el perezoso perezoso_rect = perezoso_img.get_rect(midbottom=(100, ALTO - 50)) # Hojas hoja_img = pygame.Surface((30, 30)) hoja_img.fill(VERDE) hoja_rect = hoja_img.get_rect(center=(random.randint(800, 1200), ALTO - 60)) # Obstáculos obstaculo_img = pygame.Surface((40, 40)) obstaculo_img.fill(NEGRO) obstaculo_rect = obstaculo_img.get_rect(center=(random.randint(800, 1200), ALTO - 50)) # Gravedad y salto gravedad = 0.5 velocidad_salto = -10 velocidad_y = 0 definir_puntos(): fuente = pygame.font.Font(None, 36) texto = fuente.render(f"Puntos: {puntos}", True, NEGRO) pantalla.blit(texto, (10, 10)) # Variables de juego puntos = 0 juego_activo = True # Bucle principal while True: for evento in pygame.event.get(): if evento.type == pygame.QUIT: pygame.quit() exit() if juego_activo: # Controles teclas = pygame.key.get_pressed() if teclas[pygame.K_SPACE] and perezoso_rect.bottom >= ALTO: velocidad_y = velocidad_salto # Movimiento del perezoso velocidad_y += gravedad perezoso_rect.y += velocidad_y if perezoso_rect.bottom > ALTO: perezoso_rect.bottom = ALTO # Movimiento de la hoja hoja_rect.x -= 5 if hoja_rect.right < 0: hoja_rect.left = random.randint(800, 1200) # Movimiento del obstáculo obstaculo_rect.x -= 7 if obstaculo_rect.right < 0: obstaculo_rect.left = random.randint(800, 1200) # Colisiones if perezoso_rect.colliderect(hoja_rect): puntos += 1 hoja_rect.left = random.randint(800, 1200) if perezoso_rect.colliderect(obstaculo_rect): juego_activo = False # Dibujar elementos pantalla.fill(BLANCO) pantalla.blit(perezoso_img, perezoso_rect) pantalla.blit(hoja_img, hoja_rect) pantalla.blit(obstaculo_img, obstaculo_rect) definir_puntos() else: # Pantalla de fin de juego pantalla.fill(BLANCO) fuente = pygame.font.Font(None, 48) texto = fuente.render("Juego Terminado. Presiona R para reiniciar.", True, NEGRO) pantalla.blit(texto, (100, 180)) teclas = pygame.key.get_pressed() if teclas[pygame.K_r]: juego_activo = True perezoso_rect.midbottom = (100, ALTO - 50) hoja_rect.center = (random.randint(800, 1200), ALTO - 60) obstaculo_rect.center = (random.randint(800, 1200), ALTO - 50) puntos = 0 pygame.display.update() clock.tick(fps)