/* ========== Página SERVICIOS ========== */
/* Reutiliza globals de components-v2.jsx: Nav, Cursor, Holding, Footer,
SilencioSticky, ArrowNE. Diseño según Web_Servicios (Figma 339-1580). */
function navTo(id) {
if (id === "servicios") { window.scrollTo({ top: 0, behavior: "smooth" }); return; }
if (id === "nosotros") { window.location.href = "nosotros.html"; return; }
if (id === "top") { window.location.href = "La Chismosa.html"; return; }
const map = {
archivo: "archivo.html",
prensa: "archivo.html",
contacto: "contacto.html",
};
window.location.href = map[id] || "La Chismosa.html";
}
/* ---------- Chevron derecho ---------- */
function Chevron({ size = 22 }) {
return (
);
}
/* ---------- Hero ---------- */
function ServiciosHero() {
const lang = useLang();
return (
{t(
"Estrategias de comunicación para marcas de lujo y hospitalidad: creativas, globales y con un enfoque elegante.",
"Communication strategies for luxury and hospitality brands: creative, global and with an elegant touch."
)}
);
}
/* ---------- Lista de servicios ---------- */
function getServicios() {
return [
{
nombre: t("Prensa", "Press"),
tagline: t(
"Lo que susurramos, se convierte en titular.",
"What we whisper becomes a headline."
),
texto: t(
"Transformamos cada historia en noticia. Posicionamos tu marca donde todos miran y la hacemos brillar en los medios más relevantes.",
"We turn every story into news. We position your brand where all eyes are and make it shine in the most relevant media."
),
},
{
nombre: t("Influencer marketing", "Influencer Marketing"),
tagline: t(
"Ponemos tu marca en boca de todos.",
"We get your brand on everyone's lips."
),
texto: t(
"Creamos conexiones auténticas con quienes realmente influyen, amplificando tu mensaje hasta convertirlo en tendencia.",
"We build authentic connections with those who truly influence, amplifying your message until it becomes a trend."
),
},
{
nombre: t("Estrategia Digital", "Digital Strategy"),
tagline: t(
"Para que te vean en todos lados.",
"So you're seen everywhere."
),
texto: t(
"Diseñamos estrategias que conectan, posicionan y mantienen tu marca en el centro de la conversación digital.",
"We design strategies that connect, position and keep your brand at the center of the digital conversation."
),
},
{
nombre: t("Email Marketing", "Email Marketing"),
tagline: t(
"Campañas irresistibles, palomitas incluidas.",
"Irresistible campaigns, popcorn included."
),
texto: t(
"Cada correo es una experiencia que engancha, sorprende y convierte. No mandamos emails, creamos expectativa.",
"Every email is an experience that hooks, surprises and converts. We don't send emails, we create anticipation."
),
},
{
nombre: t("Online Reputation", "Online Reputation"),
tagline: t(
"Sabemos lo que se dice de ti… y lo que realmente importa.",
"We know what's said about you… and what really matters."
),
texto: t(
"Monitorizamos, interpretamos y actuamos para que tu marca siempre tenga la mejor versión de sí misma.",
"We monitor, interpret and act so your brand always shows its best self."
),
},
];
}
function ServicesList() {
const lang = useLang();
const SERVICIOS = getServicios();
const [abierto, setAbierto] = React.useState(null);
return (