// VARIANT C — "Editorial Premium" // Más oscura y dramática: hero a sangre con imagen + overlay, secciones negras // alternadas con crema, números masivos en Cormorant, presencia geográfica // destacada. Inspiración: informes anuales de utilities top tier. (() => { const C = window.FE_CONTENT; const I = window.FE_IMAGES; const W = 1440; const cColors = { bg: '#0a0a0a', cream: '#f5f4ee', white: '#fdfcf9', border: '#1f1f1f', borderLight: '#dad8cc', text: '#fafaf8', textDark: '#0f0f0f', muted: 'rgba(255,255,255,0.55)', mutedDark: '#6b6b6b', green: '#00b31b', greenBright: '#1ad437', greenDark: '#005a0d', }; // ─────────── NAV ─────────── function NavC() { return (
); } // ─────────── HERO ─────────── function HeroC() { return (
{/* Side index */}
01 — INICIO
{C.hero.eyebrow}

{C.hero.title[0]}
{C.hero.title[1]}
{C.hero.titleItalic}

{C.hero.desc}

{/* tiny bottom meta strip */}
SCROLL ↓ · 06 SECCIONES
); } // ─────────── HUGE STATS / NUMBERS ─────────── function NumbersC() { return (
02 — Cifras

{C.about.title}

{C.about.body}

{C.about.stats.map((s, i) => (
{s.value}
{s.label}
))}
); } // ─────────── SERVICES (vertical list, large) ─────────── function ServicesC() { const imgs = [I.windField, I.solarPanels, I.battery, I.hydrogen]; return (
03 — Servicios

{C.services.title}

{C.services.intro}

{C.services.items.map((s, i) => (
— {s.id}

{s.name}

{s.desc}

))}
); } // ─────────── PRESENCE (geographic) ─────────── function PresenceC() { return (
04 — Presencia

{C.presence.title}

Operamos con equipos locales en cada país, no con consultores en remoto. Esa es la única forma de construir relaciones de largo plazo con el territorio.

{C.presence.countries.map((c, i) => (
{c.code} — {c.since}

{c.name}

{c.city}
{c.detail}
))}
); } // ─────────── TEAM ─────────── function TeamC() { return (
05 — Equipo

{C.team.title}

{C.team.members.map((m, i) => (
FUNDADOR · 0{i+1}

{m.name}

{m.role}

{m.bio}

))}
); } // ─────────── COMMITMENT (cream block with quote) ─────────── function CommitmentC() { return (
06 — Compromiso

{C.commitment.title}

↳ COMUNIDAD · A CORUÑA

"Un proyecto renovable solo es viable cuando crea valor para las comunidades donde se asienta." — Equipo Feijoo Energy

{C.commitment.points.map((p, i) => (
0{i+1}

{p.title}

{p.desc}

))}
); } // ─────────── CONTACT (big editorial) ─────────── function ContactC() { return (
07 — Contacto

{C.contact.title}

{C.contact.body}

{[ { label: 'Oficina', value: C.contact.addr.join('\n') }, { label: 'Correo', value: C.contact.email }, { label: 'Teléfono', value: C.contact.phone }, { label: 'Horario', value: C.contact.hours }, ].map((item, i) => (
{item.label}
{item.value}
))}
); } // ─────────── FOOTER ─────────── function FooterC() { return ( ); } function VariantC() { return (
); } window.VariantC = VariantC; })();