{"id":9140,"date":"2018-03-02T22:44:34","date_gmt":"2018-03-02T21:44:34","guid":{"rendered":"http:\/\/www.ffpanimale.fr\/?page_id=9140"},"modified":"2026-07-03T09:37:26","modified_gmt":"2026-07-03T07:37:26","slug":"nos-chartes","status":"publish","type":"page","link":"https:\/\/ffpanimale.fr\/?page_id=9140","title":{"rendered":"Chartes"},"content":{"rendered":"\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<!-- ===== BLOC INTRO FFPA PREMIUM ===== -->\n<div class=\"ffpa-section\" style=\"margin-top:40px;max-width:900px;margin-left:auto;margin-right:auto;\">\n\n  <!-- Ic\u00f4ne FFPA -->\n  <div style=\"text-align:center;margin-bottom:15px;\">\n    <svg width=\"55\" height=\"55\" viewBox=\"0 0 24 24\" fill=\"#004AAD\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n      <path d=\"M12 2C10.3 2 9 3.3 9 5C9 6.7 10.3 8 12 8C13.7 8 15 6.7 15 5C15 3.3 13.7 2 12 2ZM6 9C4.3 9 3 10.3 3 12C3 13.7 4.3 15 6 15C7.7 15 9 13.7 9 12C9 10.3 7.7 9 6 9ZM18 9C16.3 9 15 10.3 15 12C15 13.7 16.3 15 18 15C19.7 15 21 13.7 21 12C21 10.3 19.7 9 18 9ZM8 17C6.3 17 5 18.3 5 20C5 21.7 6.3 23 8 23C9.7 23 11 21.7 11 20C11 18.3 9.7 17 8 17ZM16 17C14.3 17 13 18.3 13 20C13 21.7 14.3 23 16 23C17.7 23 19 21.7 19 20C19 18.3 17.7 17 16 17Z\"\/>\n    <\/svg>\n  <\/div>\n\n  <!-- Titre + ligne rouge -->\n  <h2 style=\"text-align:center;font-family:'Montserrat',sans-serif;font-size:1.8em;color:#004AAD;margin-bottom:8px;\">\n    Informations \u00e0 l\u2019attention des \u00e9lu\u00b7e\u00b7s\n  <\/h2>\n  <div style=\"width:80px;height:4px;background:#E30613;margin:0 auto 25px auto;border-radius:2px;\"><\/div>\n\n  <!-- Encadr\u00e9 sable -->\n  <div style=\"background:#F5E9D3;padding:25px 30px;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,0.12);font-family:'Open Sans',sans-serif;line-height:1.65;color:#000;font-size:1.1em;\">\n\n    <p>\n      Vous trouverez ci\u2011apr\u00e8s les chartes destin\u00e9es aux \u00e9lu\u00b7e\u00b7s souhaitant s\u2019impliquer dans les actions de protection animale \n      et contribuer, par leur engagement, \u00e0 l\u2019am\u00e9lioration durable du bien\u2011\u00eatre des animaux.\n    <\/p>\n\n    <p style=\"margin-top:18px;\">\n      Nous vous saurions gr\u00e9 de bien vouloir en prendre connaissance, les signer, puis les retourner par courriel \n      \u00e0 l\u2019attention de notre p\u00f4le secr\u00e9tariat : \n      <strong>secretariat@ffpanimale.fr<\/strong>\n    <\/p>\n\n    <p style=\"margin-top:18px;\">\n      Nous vous remercions pour l\u2019attention port\u00e9e \u00e0 ces documents ainsi que pour votre engagement en faveur du bien\u2011\u00eatre animal.\n    <\/p>\n\n  <\/div>\n<\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<!-- ===========================\n     STYLES FFPA + ANIMATIONS\n=========================== -->\n<style>\n\/* PALETTE FFPA *\/\n:root {\n  --ffpa-blue: #004AAD;\n  --ffpa-red: #E30613;\n  --ffpa-sand: #F5E9D3;\n  --ffpa-black: #000000;\n}\n\n\/* BASE *\/\n.ffpa-section {\n  opacity: 0;\n  transform: translateY(40px);\n  transition: all 0.9s ease;\n}\n\n.ffpa-section.visible {\n  opacity: 1;\n  transform: translateY(0);\n}\n\n\/* CARDS *\/\n.ffpa-cards-container {\n  display: flex;\n  flex-wrap: wrap;\n  gap: 25px;\n  justify-content: center;\n  margin-top: 40px;\n}\n\n.ffpa-card {\n  background: var(--ffpa-sand);\n  border-radius: 12px;\n  padding: 25px;\n  max-width: 330px;\n  box-shadow: 0 4px 12px rgba(0,0,0,0.15);\n  transition: transform 0.3s, box-shadow 0.3s;\n}\n\n.ffpa-card:hover {\n  transform: translateY(-6px);\n  box-shadow: 0 8px 18px rgba(0,0,0,0.25);\n}\n\n\/* BUTTON *\/\n.ffpa-btn {\n  display: inline-block;\n  background: var(--ffpa-red);\n  color: #fff;\n  padding: 10px 18px;\n  border-radius: 6px;\n  text-decoration: none;\n  font-weight: 600;\n  transition: background 0.3s, transform 0.3s;\n}\n\n.ffpa-btn:hover {\n  background: #b50510;\n  transform: translateY(-3px);\n}\n<\/style>\n\n<!-- ===========================\n     SCRIPT SCROLL-REVEAL\n=========================== -->\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n  const sections = document.querySelectorAll(\".ffpa-section\");\n\n  const revealOnScroll = () => {\n    const triggerBottom = window.innerHeight * 0.85;\n\n    sections.forEach((section) => {\n      const boxTop = section.getBoundingClientRect().top;\n\n      if (boxTop < triggerBottom) {\n        section.classList.add(\"visible\");\n      }\n    });\n  };\n\n  window.addEventListener(\"scroll\", revealOnScroll);\n  revealOnScroll();\n});\n<\/script>\n\n<!-- ===========================\n     HERO\n=========================== -->\n<div class=\"ffpa-section\" style=\"background:var(--ffpa-blue);color:#fff;padding:50px 20px;text-align:center;border-radius:10px;\">\n  <img data-recalc-dims=\"1\" height=\"1024\" width=\"724\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/ffpanimale.fr\/wp-content\/uploads\/2023\/09\/Chartes-pour-les-elues-724x1024.jpg?resize=724%2C1024&#038;ssl=1\" \n       alt=\"Chartes destin\u00e9es aux \u00e9lu\u00b7e\u00b7s\" \n       style=\"max-width:260px;border-radius:10px;margin-bottom:20px;\">\n  <h1 style=\"font-size:2.2em;margin-bottom:10px;font-weight:700;\">Chartes destin\u00e9es aux \u00c9lu\u00b7e\u00b7s<\/h1>\n  <p style=\"font-size:1.15em;max-width:700px;margin:auto;\">\n    Les chartes FFPA d\u00e9finissent les engagements des \u00e9lus pour une soci\u00e9t\u00e9 plus juste envers les animaux.\n  <\/p>\n<\/div>\n\n<!-- ===========================\n     CARDS\n=========================== -->\n<div class=\"ffpa-cards-container\">\n\n  <div class=\"ffpa-card ffpa-section\" style=\"transition-delay:0.1s;\">\n    <h2 style=\"color:var(--ffpa-blue);font-size:1.4em;margin-bottom:10px;\">Charte des \u00c9lus locaux<\/h2>\n    <p style=\"color:var(--ffpa-black);margin-bottom:20px;\">\n      Engagements pour les maires et conseillers municipaux afin d\u2019int\u00e9grer la protection animale dans les politiques locales.\n    <\/p>\n    <a href=\"https:\/\/ffpanimale.fr\/wp-content\/uploads\/2025\/11\/Charte-des-Elus-locaux-envers-les-animaux.pdf\"\n       target=\"_blank\"\n       class=\"ffpa-btn\">\ud83d\udcc4 T\u00e9l\u00e9charger le PDF<\/a>\n  <\/div>\n\n  <div class=\"ffpa-card ffpa-section\" style=\"transition-delay:0.25s;\">\n    <h2 style=\"color:var(--ffpa-blue);font-size:1.4em;margin-bottom:10px;\">Charte des Conseillers d\u00e9partementaux<\/h2>\n    <p style=\"color:var(--ffpa-black);margin-bottom:20px;\">\n      Document de r\u00e9f\u00e9rence pour les d\u00e9partements souhaitant soutenir les associations et la sensibilisation \u00e0 la cause animale.\n    <\/p>\n    <a href=\"https:\/\/ffpanimale.fr\/wp-content\/uploads\/2025\/11\/Charte-des-Conseillers-Departementaux-envers-les-animaux.pdf\"\n       target=\"_blank\"\n       class=\"ffpa-btn\">\ud83d\udcc4 T\u00e9l\u00e9charger le PDF<\/a>\n  <\/div>\n\n  <div class=\"ffpa-card ffpa-section\" style=\"transition-delay:0.4s;\">\n    <h2 style=\"color:var(--ffpa-blue);font-size:1.4em;margin-bottom:10px;\">Charte des D\u00e9put\u00e9s europ\u00e9ens<\/h2>\n    <p style=\"color:var(--ffpa-black);margin-bottom:20px;\">\n      Engagement moral et politique pour une Europe plus attentive \u00e0 la condition animale.\n    <\/p>\n    <a href=\"https:\/\/ffpanimale.fr\/wp-content\/uploads\/2025\/11\/Charte-des-Deputes-Europeens.pdf\"\n       target=\"_blank\"\n       class=\"ffpa-btn\">\ud83d\udcc4 T\u00e9l\u00e9charger le PDF<\/a>\n  <\/div>\n\n<\/div>\n\n<!-- ===========================\n     FOOTER\n=========================== -->\n<footer class=\"ffpa-section\" style=\"margin-top:50px;text-align:center;color:var(--ffpa-black);transition-delay:0.6s;\">\n  <p>F\u00e9d\u00e9ration Fran\u00e7aise de la Protection Animale<br>\n  <a href=\"https:\/\/ffpanimale.fr\" style=\"color:var(--ffpa-blue);text-decoration:none;font-weight:600;\">\n    ffpanimale.fr\n  <\/a><\/p>\n<\/footer>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n","protected":false},"excerpt":{"rendered":"<p>Informations \u00e0 l\u2019attention des \u00e9lu\u00b7e\u00b7s Vous trouverez ci\u2011apr\u00e8s les chartes destin\u00e9es aux \u00e9lu\u00b7e\u00b7s souhaitant s\u2019impliquer dans les actions de protection animale et contribuer, par leur engagement, \u00e0 l\u2019am\u00e9lioration durable du [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":11986,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-9140","page","type-page","status-publish","has-post-thumbnail","hentry"],"jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/ffpanimale.fr\/index.php?rest_route=\/wp\/v2\/pages\/9140","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ffpanimale.fr\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ffpanimale.fr\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ffpanimale.fr\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ffpanimale.fr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=9140"}],"version-history":[{"count":10,"href":"https:\/\/ffpanimale.fr\/index.php?rest_route=\/wp\/v2\/pages\/9140\/revisions"}],"predecessor-version":[{"id":14908,"href":"https:\/\/ffpanimale.fr\/index.php?rest_route=\/wp\/v2\/pages\/9140\/revisions\/14908"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ffpanimale.fr\/index.php?rest_route=\/wp\/v2\/media\/11986"}],"wp:attachment":[{"href":"https:\/\/ffpanimale.fr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9140"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}