Sweeps

Stop Paying Hidden Transfer Fees (+ Win $1,500)

View saved
How does this find feel?

/* — GLOBAL STYLES (Banrural / Remittance Theme) — */
:root {
–primary: #007A33; /* Banrural Green */
–secondary: #FFCC00; /* Banrural Yellow */
–dark: #0f3d1f; /* Dark Green */
–light-bg: #f4fcf6;
–card-shadow: 0 10px 30px rgba(0, 122, 51, 0.15);
}

body { margin: 0; padding: 0; box-sizing: border-box; }

/* Main Container */
.lp-container {
font-family: ‘Inter’, system-ui, -apple-system, sans-serif;
line-height: 1.9;
color: #333;
background-color: #fff;
max-width: 880px;
margin: 20px auto;
padding: 0 10px;
overflow-x: hidden;
font-size: 18px;
}

/* IMAGE STYLE */
.lp-featured-img {
width: 100%;
max-width: 650px;
height: auto;
display: block;
margin: 0 auto 30px auto;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
border-bottom: 5px solid var(–secondary);
}

/* HERO SECTION */
.lp-hero {
background: linear-gradient(135deg, #007A33 0%, #005924 100%);
color: white;
padding: 45px 20px;
text-align: center;
border-radius: 22px;
margin-bottom: 40px;
box-shadow: 0 15px 30px rgba(0, 122, 51, 0.3);
border-bottom: 6px solid var(–secondary);
}

.lp-hero h1 {
font-size: 2.5rem;
font-weight: 900;
margin: 0 0 15px 0;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
line-height: 1.2;
color: #fff;
}

.lp-hero p { opacity: 0.95; max-width: 650px; margin: 0 auto; font-size: 1.1rem; }

/* TEXT & HEADINGS */
.lp-h2 {
font-size: 1.8rem;
font-weight: 800;
color: var(–dark);
margin-top: 50px;
margin-bottom: 20px;
border-left: 6px solid var(–secondary);
padding-left: 20px;
line-height: 1.3;
}

.lp-p { margin-bottom: 25px; color: #444; }

/* TIPS BOX */
.tip-box {
background: #fffbe6;
border: 1px solid var(–secondary);
padding: 30px;
border-radius: 16px;
margin: 40px 0;
box-shadow: var(–card-shadow);
}

.tip-box strong { color: var(–primary); font-size: 1.1em; }

/* GIVEAWAY BOX (The Target) */
#sweeps-box {
margin-top: 60px;
background: #fff;
border: 4px solid var(–primary);
border-radius: 22px;
padding: 40px 20px;
box-shadow: 0 15px 40px rgba(0, 122, 51, 0.2);
text-align: center;
scroll-margin-top: 50px;
}

#sweeps-box h3 {
font-size: 28px;
font-weight: 900;
color: var(–primary);
margin-bottom: 10px;
text-transform: uppercase;
}

#sweeps-box p { color: #666; font-size: 1rem; margin-bottom: 20px; }

/* TIMER */
#sweeps-timer {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
margin-bottom: 25px;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
#sweeps-timer .cell {
background: var(–dark);
border-radius: 12px;
padding: 10px;
border: 1px solid rgba(255,255,255,0.2);
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
#sweeps-timer .num {
font-size: 24px;
font-weight: 900;
color: var(–secondary);
}
#sweeps-timer .lbl {
font-size: 10px;
text-transform: uppercase;
color: #fff;
}

/* ENTER BUTTON */
#final-enter {
display: block;
background: linear-gradient(90deg, #FFCC00, #ffb700);
color: #0f3d1f;
font-size: 22px;
font-weight: 900;
padding: 22px;
border-radius: 50px;
text-decoration: none;
margin: 30px auto;
max-width: 400px;
box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
transition: transform 0.2s;
animation: pulse 2s infinite;
}
#final-enter:hover { transform: scale(1.05); }

@keyframes pulse {
0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 204, 0, 0); }
100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

/* RULES SCROLL */
.rules-scroll {
height: 180px;
overflow-y: scroll;
background: #f9f9f9;
border: 1px solid #ddd;
padding: 15px;
font-size: 13px;
color: #777;
margin-top: 30px;
text-align: left;
border-radius: 8px;
}

/* OVERLAY & POPUP */
#sweeps-overlay {
position: fixed; inset: 0; background: rgba(0,0,0,0.85);
display: flex; align-items: center; justify-content: center;
z-index: 99999; backdrop-filter: blur(5px);
}
#sweeps-overlay .box {
background: #fff;
border: 4px solid var(–primary);
border-radius: 20px;
padding: 30px;
width: 90%; max-width: 400px;
text-align: center;
}
#sweeps-start {
background: var(–primary); color: #fff;
font-size: 20px; font-weight: bold; border: none;
padding: 15px 30px; border-radius: 12px; cursor: pointer;
margin-top: 15px; width: 100%;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#sweeps-popup {
display: none; position: fixed; top: 50%; left: 50%;
transform: translate(-50%, -50%);
background: #fff; padding: 25px; border-radius: 15px;
box-shadow: 0 20px 50px rgba(0,0,0,0.4);
z-index: 9998; font-size: 18px; font-weight: bold;
color: var(–primary); text-align: center; border: 3px solid var(–secondary);
width: 80%; max-width: 350px;
}

canvas#sweeps-confetti { position: fixed; inset: 0; pointer-events: none; z-index: 9997; display: none; }

¡HOLA! WAIT A SEC 🛑

We found the link for the Remesa Con Sorpresa Sweepstakes ($5,000 in Prizes!). We will auto-scroll you there, but first, learn how to maximize your remittances.

The Immigrant’s Guide to Financial Freedom

How to stop paying hidden fees when sending money to Guatemala—and how to win $1,500 just for supporting your family.

Sending Money to Guatemala

For millions of hardworking immigrants, sending money home isn’t just a transaction; it’s a lifeline. It builds houses, pays for education, and puts food on the table in Guatemala. But every year, millions of dollars are lost to hidden exchange rate markups and predatory transfer fees.

In 2026, the smart way to send money is digital, direct, and rewarding. If you are still walking into a physical store with cash and paying a $10 fee, you are doing it the hard way. Here is how to keep more money in your pocket (and your family’s pocket) this year.

1. The “Exchange Rate” Trap

Many remittance services advertise “$0 Fees” but then give you a terrible exchange rate for the Quetzal (GTQ). This is called the “Spread,” and it’s where they make their profit.

The Fix: Always compare the “Total Amount Received” rather than the transfer fee. A service charging a $3 fee might actually deliver more Quetzales to your family than a “free” service because their exchange rate is closer to the market mid-point.

2. Direct-to-Bank is King

Cash pickup is convenient, but it is often the most expensive delivery method. If your family in Guatemala has a bank account (like with Banrural), sending directly to their account is usually cheaper and safer.

Banrural is a giant in Guatemala, specifically designed for rural development. Sending money directly to a Banrural account often unlocks better rates and exclusive promotions—like the massive cash giveaway happening right now.

💡 Money Hack:
Look for “First Transfer Free” promotions. Many apps give you a special rate for your first transaction. Rotate between apps to maximize these bonuses.

3. Timing the Market

Exchange rates fluctuate daily. Sending money on a Friday is often more expensive than sending it on a Tuesday due to weekend market volatility.

Use alerts. Apps like XE or Wise allow you to set rate alerts. When the Dollar-to-Quetzal rate hits a high point, you get a notification. Sending $500 when the rate is favorable can mean an extra Q100-Q200 for your family just for waiting a day.

4. Remesa Con Sorpresa: Win While You Send

Sometimes, the best financial hack is winning free money. Right now, there is a promotion called “Remesa Con Sorpresa” (Remittance with a Surprise) sponsored by Banrural.

The concept is simple: If you send a remittance to Guatemala (or enter via the free online method), you are entered to win cash prizes. They are giving away weekly prizes of $250 and huge Grand Prizes of $1,500. That is life-changing money that can pay for a flight home, cover rent, or boost your savings.

5. Why AMOE is Your Friend

Here is a secret most people miss: You don’t have to spend money to enter sweepstakes in the USA. It’s the law.

This sweepstakes has an “AMOE” (Alternative Method of Entry). This means you can visit their website, fill out a simple form, and get a chance to win the $1,500 Grand Prize without sending a single cent. We have linked the official entry form below so you can get your name in the hat immediately.

Remesa Con Sorpresa Sweepstakes

Win Weekly Prizes of $250 or Grand Prizes of $1,500!

Days
Hours
Minutes
Seconds

ENTER NOW (AMOE)

OFFICIAL RULES SNAPSHOT:

NO PURCHASE NECESSARY. Open to legal residents of the 50 US & DC, 18+. Ends 1/5/26.
Sponsor: Banco de Desarrollo Rural, S.A. (Banrural).
Prizes: 8 Weekly Prizes of $250; 2 Grand Prizes of $1,500. Total ARV: $5,000.
How to Enter:
1. Receipt Upload: Send remittance to Banrural & upload receipt.
2. AMOE (Free): Fill out the form at the link above.
Limit: 1 AMOE entry per week.
(See full official rules on the Remesa Con Sorpresa website).

document.addEventListener(“DOMContentLoaded”,()=>{
const overlay=document.getElementById(“sweeps-overlay”);
const startBtn=document.getElementById(“sweeps-start”);
const popup=document.getElementById(“sweeps-popup”);
const confetti=document.getElementById(“sweeps-confetti”);
const targetBox=document.getElementById(“sweeps-box”);

// TIMER (Jan 5, 2026)
const end=new Date(“2026-01-05T23:59:59-05:00”).getTime(); // ET Timezone
setInterval(()=>{
let t=end-Date.now(); if(t<0)t=0;
let d=Math.floor(t/86400000), h=Math.floor(t%86400000/3600000),
m=Math.floor(t%3600000/60000), s=Math.floor(t%60000/1000);
document.getElementById("d").innerText=d<10?"0"+d:d;
document.getElementById("h").innerText=h<10?"0"+h:h;
document.getElementById("m").innerText=m<10?"0"+m:m;
document.getElementById("s").innerText=s<10?"0"+s:s;
},1000);

// CONFETTI
function fireConfetti(){
const c=confetti, ctx=c.getContext("2d");
c.width=window.innerWidth; c.height=window.innerHeight; c.style.display="block";
let p=[]; for(let i=0;i{
ctx.fillStyle=[“#007A33″,”#FFCC00″,”#fff”][Math.floor(Math.random()*3)]; // Banrural colors
ctx.fillRect(part.x, part.y, 6, 8);
part.x+=part.vx; part.y+=part.vy; if(part.y>c.height) part.y=-10;
});
requestAnimationFrame(draw);
}
draw();
}

// START CLICK
startBtn.addEventListener(“click”, ()=>{
overlay.style.display=”none”; // Hide overlay
fireConfetti();

// 6 FACTS SPECIFIC TO REMESA SWEEPS
const facts = [
“$5,000 Total Prize Pool!”,
“Grand Prizes: $1,500 Cash”,
“Weekly Prizes: $250 Cash”,
“Enter via Receipt Upload…”,
“…OR Enter FREE Online (AMOE)”,
“Ends Jan 5, 2026 – Hurry!”
];

facts.forEach((txt, i) => {
setTimeout(() => {
popup.innerText = txt;
popup.style.display = “block”;
setTimeout(() => popup.style.display=”none”, 4500); // 4.5s duration
}, i * 5000); // New one every 5s
});

// START SLOW LINEAR SCROLL after 1.5 seconds
setTimeout(() => {
const startY = window.pageYOffset || document.documentElement.scrollTop;
const targetY = targetBox.getBoundingClientRect().top + startY – 20;
const distance = targetY – startY;

const duration = 30000; // 30 SECONDS
let startTime = null;

function loop(currentTime) {
if (!startTime) startTime = currentTime;
const timeElapsed = currentTime – startTime;
const run = linearTween(timeElapsed, startY, distance, duration);
window.scrollTo(0, run);
if (timeElapsed < duration) requestAnimationFrame(loop);
}

function linearTween(t, b, c, d) {
return c * t / d + b;
}

requestAnimationFrame(loop);
}, 1500);
});
});

Helpful Freebie Mom Guides

Keep going

More Freebie Mom guides worth checking

Instant Win GamesQuick plays, fast prizes, and daily chances.Best Sweepstakes to Enter TodayStart with the strongest current prizes.Sweepstakes DatabaseSearch active sweeps by prize, deadline, and entry type.