:root {
--navy:   #2c3a63;
--navy-2: #223050;
--blue:   #86b2d1;
--blue-d: #5f93b8;
--coral:  #e2664f;
--yellow: #f4c53c;
--orange: #e88a3c;
--ink:    #2b3350;
--muted:  #5c6784;
--cream:  #fdf9f2;
--soft:   #f4f1ff;
--white:  #ffffff;
--line:   #e7e3f0;
--shadow-sm: 0 4px 14px rgba(44,58,99,.08);
--shadow-md: 0 14px 40px rgba(44,58,99,.14);
--shadow-lg: 0 26px 60px rgba(44,58,99,.20);
--r-lg: 28px;
--r-md: 18px;
--r-sm: 12px;
--container: 1160px;
--font-head: 'Baloo 2', system-ui, sans-serif;
--font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
font-family: var(--font-body);
color: var(--ink);
background: var(--cream);
line-height: 1.65;
font-size: 17px;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), 92%); margin-inline: auto; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; color: var(--navy); font-weight: 700; }
.h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.5px; }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.h3--center { text-align: center; }
.h2--light { color: #fff; }
.eyebrow {
display: inline-block;
font-family: var(--font-head);
font-weight: 700;
font-size: .82rem;
letter-spacing: 1.5px;
text-transform: uppercase;
color: var(--coral);
background: #fff;
border: 2px solid var(--line);
padding: .35em 1em;
border-radius: 999px;
box-shadow: var(--shadow-sm);
}
.eyebrow--light { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); box-shadow: none; }
.lead { font-size: 1.12rem; color: var(--muted); }
.lead--center { text-align: center; max-width: 780px; margin-inline: auto; }
.lead--light { color: rgba(255,255,255,.9); }
.stack > * + * { margin-top: 1rem; }
.btn {
display: inline-flex; align-items: center; gap: .5em;
font-family: var(--font-head); font-weight: 700; font-size: 1rem;
padding: .8em 1.5em; border-radius: 999px;
cursor: pointer; border: 2px solid transparent;
transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
white-space: nowrap;
}
.btn--lg { font-size: 1.08rem; padding: .95em 1.8em; }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(226,102,79,.4); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(226,102,79,.5); }
.btn--ghost { background: rgba(255,255,255,.92); color: var(--navy); border-color: #fff; }
.btn--ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost.btn--dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); box-shadow: none; }
.btn--ghost.btn--dark:hover { background: rgba(255,255,255,.14); }
.btn--nav { background: var(--coral); color: #fff; padding: .6em 1.2em; box-shadow: 0 8px 18px rgba(226,102,79,.35); }
.btn--nav:hover { transform: translateY(-2px); }
.nav {
position: sticky; top: 0; z-index: 100;
background: rgba(253,249,242,.88);
backdrop-filter: saturate(140%) blur(12px);
border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__logo { height: 48px; width: auto; border-radius: 10px; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: .98rem; transition: color .15s; }
.nav__links a:not(.btn):hover { color: var(--coral); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
position: absolute; inset: 0;
background:
linear-gradient(100deg, rgba(34,48,80,.94) 0%, rgba(34,48,80,.78) 42%, rgba(44,58,99,.35) 100%),
linear-gradient(to top, rgba(34,48,80,.55), transparent 55%);
}
.hero__content { position: relative; z-index: 2; padding: 4.5rem 0; max-width: 720px; }
.hero__eyebrow {
display: inline-block; color: #fff; font-family: var(--font-head); font-weight: 600;
font-size: .8rem; letter-spacing: 1.4px; text-transform: uppercase;
background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
padding: .45em 1.1em; border-radius: 999px; margin-bottom: 1.4rem;
}
.hero__title { color: #fff; font-size: clamp(2.4rem, 6.2vw, 4.4rem); font-weight: 800; letter-spacing: -1px; }
.hero__title .hl {
background: linear-gradient(120deg, var(--yellow), var(--orange) 60%, var(--coral));
-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__lead { color: rgba(255,255,255,.92); font-size: 1.2rem; margin: 1.4rem 0 2.2rem; max-width: 600px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__handstrip { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 12px; }
.hero__handstrip .dot { width: 12px; height: 12px; border-radius: 50%; opacity: .9; }
.dot--blue { background: var(--blue); } .dot--coral { background: var(--coral); }
.dot--yellow { background: var(--yellow); } .dot--orange { background: var(--orange); }
.stats { background: var(--navy); padding: 2.6rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; color: #fff; padding: .5rem; position: relative; }
.stat:not(:last-child)::after {
content: ""; position: absolute; right: -.75rem; top: 15%; height: 70%; width: 1px;
background: rgba(255,255,255,.16);
}
.stat__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1;
background: linear-gradient(120deg, var(--yellow), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { display: block; margin-top: .5rem; font-size: .92rem; color: rgba(255,255,255,.82); }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--soft { background: var(--soft); }
.section__head { text-align: center; margin-bottom: 3rem; }
.section__head .eyebrow { margin-bottom: 1rem; }
.section__head .h2 { margin-bottom: 1rem; }
.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.grid-2--center { align-items: center; }
.media-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-card--tall img { aspect-ratio: 4/5; }
.media-card::after { content:""; position:absolute; inset:0; border-radius: var(--r-lg); box-shadow: inset 0 0 0 6px rgba(255,255,255,.5); pointer-events:none; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.8rem; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.2rem; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar__ico { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; font-size: 1.4rem; background: color-mix(in srgb, var(--c) 18%, white); margin-bottom: .6rem; }
.pillar h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.pillar p { font-size: .95rem; color: var(--muted); }
.ticks { list-style: none; display: grid; gap: .9rem; }
.ticks li { position: relative; padding-left: 2.1rem; color: var(--muted); }
.ticks li strong { color: var(--ink); }
.ticks li::before {
content: "✓"; position: absolute; left: 0; top: .05em;
width: 1.5rem; height: 1.5rem; border-radius: 50%;
background: var(--blue); color: #fff; font-weight: 800; font-size: .85rem;
display: grid; place-items: center;
}
.place-card { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--coral); border-radius: var(--r-sm); padding: 1rem 1.2rem; margin-top: 1.6rem; box-shadow: var(--shadow-sm); }
.place-card__ico { font-size: 1.4rem; }
.place-card p { color: var(--muted); font-size: .95rem; }
.verse { background: linear-gradient(120deg, var(--coral), var(--orange)); color: #fff; padding: clamp(2.5rem, 6vw, 4rem) 0; text-align: center; }
.verse__text { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 4vw, 2.4rem); max-width: 900px; margin-inline: auto; text-shadow: 0 2px 12px rgba(0,0,0,.12); }
.verse__ref { margin-top: 1rem; font-weight: 700; opacity: .95; }
.verse__ref span { font-weight: 400; opacity: .85; }
.goal { margin-top: 3.5rem; background: var(--navy); border-radius: var(--r-lg); padding: 2.5rem clamp(1.5rem,4vw,3rem); text-align: center; box-shadow: var(--shadow-md); background-image: radial-gradient(circle at 12% 20%, rgba(134,178,209,.25), transparent 40%), radial-gradient(circle at 88% 85%, rgba(226,102,79,.25), transparent 45%); }
.goal__title { color: #fff; margin-bottom: 1.6rem; font-size: clamp(1.4rem,3vw,2rem); }
.goal__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem, 4vw, 3rem); }
.goal__item { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; }
.goal__item span { display: block; font-size: clamp(2.6rem,7vw,4rem); font-weight: 800; line-height: 1; background: linear-gradient(120deg, var(--yellow), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.goal__note { color: rgba(255,255,255,.8); margin-top: 1.6rem; }
.features { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__img { height: 100%; min-height: 260px; overflow: hidden; }
.feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature:hover .feature__img img { transform: scale(1.05); }
.feature__body { padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem,3vw,2.5rem) clamp(1.5rem,3vw,2.5rem) 0; }
.feature--rev { direction: rtl; }
.feature--rev > * { direction: ltr; }
.feature--rev .feature__body { padding: clamp(1.5rem,3vw,2.5rem) 0 clamp(1.5rem,3vw,2.5rem) clamp(1.5rem,3vw,2.5rem); }
.feature h3 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin: .5rem 0 .6rem; }
.feature p { color: var(--muted); }
.chip { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .5px; text-transform: uppercase; padding: .3em .9em; border-radius: 999px; color: #fff; }
.chip--blue { background: var(--blue-d); } .chip--coral { background: var(--coral); }
.chip--yellow { background: #d9a81f; } .chip--orange { background: var(--orange); }
.benef { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
.benef__table { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.benef__row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; align-items: center; padding: 1rem 1.3rem; border-bottom: 1px solid var(--line); }
.benef__row span { text-align: center; }
.benef__row span:first-child { text-align: left; font-weight: 700; color: var(--navy); font-family: var(--font-head); }
.benef__row--head { background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; }
.benef__row--head span:first-child { color: #fff; }
.benef__total { font-family: var(--font-head); font-weight: 800; color: var(--coral); font-size: 1.15rem; }
.benef__row--foot { background: var(--soft); font-weight: 800; }
.benef__row--foot span { font-family: var(--font-head); }
.benef__row--foot .benef__total { color: var(--navy); font-size: 1.3rem; }
.benef__row:last-child { border-bottom: 0; }
.benef__side { display: grid; gap: 1.5rem; }
.quote { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--yellow); border-radius: var(--r-md); padding: 1.4rem 1.6rem; font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--navy); box-shadow: var(--shadow-sm); }
.quote cite { display: block; margin-top: .8rem; font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: .9rem; color: var(--muted); }
.sedes { margin-top: 3.5rem; text-align: center; }
.sedes__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: 1.6rem; }
.sedes__list li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .55em 1.2em; font-weight: 600; color: var(--navy); font-size: .95rem; box-shadow: var(--shadow-sm); }
.sedes__list li::before { content: "📍 "; }
.apoyar { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); position: relative; overflow: hidden; }
.apoyar::before { content:""; position:absolute; top:-80px; right:-80px; width:340px; height:340px; border-radius:50%; background: radial-gradient(circle, rgba(226,102,79,.35), transparent 70%); }
.apoyar::after { content:""; position:absolute; bottom:-100px; left:-60px; width:340px; height:340px; border-radius:50%; background: radial-gradient(circle, rgba(134,178,209,.3), transparent 70%); }
.apoyar .container { position: relative; z-index: 2; }
.ways { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-bottom: 2.5rem; }
.way { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 1.8rem; text-align: center; color: #fff; transition: transform .2s, background .2s; }
.way:hover { transform: translateY(-5px); background: rgba(255,255,255,.12); }
.way__ico { font-size: 2.4rem; display: block; margin-bottom: .6rem; }
.way h3 { color: #fff; font-size: 1.2rem; margin-bottom: .4rem; }
.way p { color: rgba(255,255,255,.82); font-size: .96rem; }
.donate-card { background: #fff; border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg); max-width: 860px; margin-inline: auto; }
.donate-card__head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.4rem; }
.donate-card__ico { font-size: 1.8rem; }
.donate-card__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; padding-bottom: 1.4rem; border-bottom: 2px dashed var(--line); }
.donate-card__grid > div { display: flex; flex-direction: column; }
.lbl { font-size: .78rem; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); font-weight: 700; }
.donate-card__grid strong { font-size: 1.12rem; color: var(--navy); font-family: var(--font-head); }
.donate-card__note { margin: 1.3rem 0; color: var(--muted); font-size: .96rem; }
.donate-card__note a { color: var(--coral); font-weight: 700; }
.donate-card__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.donate-card__cta .btn--ghost.btn--dark { color: var(--navy); border-color: var(--line); }
.donate-card__cta .btn--ghost.btn--dark:hover { background: var(--soft); }
.docs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 3rem; }
.doc { display: flex; align-items: center; gap: 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s, border-color .18s; }
.doc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.doc__ico { font-size: 1.9rem; flex-shrink: 0; width: 54px; height: 54px; display: grid; place-items: center; background: var(--soft); border-radius: 14px; }
.doc__body { flex: 1; display: flex; flex-direction: column; }
.doc__body strong { color: var(--navy); font-family: var(--font-head); font-size: 1.08rem; }
.doc__body span { color: var(--muted); font-size: .92rem; }
.doc__dl { font-family: var(--font-head); font-weight: 700; color: var(--coral); font-size: .9rem; flex-shrink: 0; }
.legal { background: var(--soft); border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.4rem); }
.legal .h3 { margin-bottom: 1.4rem; }
.legal__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.legal__grid > div { display: flex; flex-direction: column; }
.legal__grid strong { color: var(--navy); font-family: var(--font-head); font-size: 1rem; margin-top: .15rem; }
.finalcta { background: linear-gradient(120deg, var(--blue) 0%, var(--blue-d) 100%); text-align: center; padding: clamp(3rem, 7vw, 5rem) 0; }
.finalcta h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); text-shadow: 0 2px 14px rgba(0,0,0,.14); }
.finalcta p { color: rgba(255,255,255,.94); font-size: 1.15rem; max-width: 640px; margin: 1rem auto 2rem; }
.footer { background: var(--navy-2); color: rgba(255,255,255,.75); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding: 3.5rem 0 2.5rem; }
.footer__logo { height: 78px; width: auto; margin-bottom: 1rem; filter: drop-shadow(0 6px 12px rgba(0,0,0,.25)); }
.footer__brand p { font-size: .95rem; max-width: 340px; }
.footer__col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: .55rem; transition: color .15s; }
.footer__col a:hover { color: var(--yellow); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0; }
.footer__bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .88rem; color: rgba(255,255,255,.6); }
.fab-wa { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.5); transition: transform .2s; }
.fab-wa:hover { transform: scale(1.1); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (max-width: 940px) {
.stats__grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.stat:nth-child(2)::after { display: none; }
.legal__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
html { scroll-padding-top: 70px; }
.nav__inner { height: 66px; }
.nav__toggle { display: flex; }
.nav__links {
position: fixed; inset: 66px 0 auto 0; flex-direction: column; align-items: stretch;
background: var(--cream); padding: 1rem 6%; gap: .3rem; border-bottom: 1px solid var(--line);
box-shadow: var(--shadow-md);
clip-path: inset(0 0 100% 0); transition: clip-path .3s ease; height: auto;
}
.nav__links.is-open { clip-path: inset(0 0 0 0); }
.nav__links a { padding: .8rem .4rem; border-bottom: 1px solid var(--line); }
.nav__links a:last-child { border-bottom: 0; }
.btn--nav { text-align: center; margin-top: .5rem; }
.grid-2 { grid-template-columns: 1fr; }
.media-card--tall { order: -1; }
.media-card--tall img { aspect-ratio: 16/10; }
.benef { grid-template-columns: 1fr; }
.feature, .feature--rev { grid-template-columns: 1fr; direction: ltr; }
.feature__img { min-height: 220px; aspect-ratio: 16/10; }
.feature__body, .feature--rev .feature__body { padding: 1.5rem !important; }
.ways { grid-template-columns: 1fr; }
.docs { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
body { font-size: 16px; }
.stats__grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.stat::after { display: none !important; }
.pillars { grid-template-columns: 1fr; }
.donate-card__grid { grid-template-columns: 1fr; }
.legal__grid { grid-template-columns: 1fr; }
.footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
.hero__actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
* { scroll-behavior: auto; }
.reveal { opacity: 1; transform: none; transition: none; }
}