{"id":5914,"date":"2025-11-18T14:31:33","date_gmt":"2025-11-18T17:31:33","guid":{"rendered":"https:\/\/atenas.ag\/?page_id=5914"},"modified":"2026-01-27T09:36:19","modified_gmt":"2026-01-27T12:36:19","slug":"home","status":"publish","type":"page","link":"https:\/\/atenas.ag\/en\/","title":{"rendered":"Home"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"5914\" class=\"elementor elementor-5914\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b27ea43 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"b27ea43\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;video&quot;,&quot;background_video_link&quot;:&quot;https:\\\/\\\/atenas.ag\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/VI\\u0301DEO-ATENAS.mp4&quot;,&quot;background_play_on_mobile&quot;:&quot;yes&quot;}\">\n\t\t<div class=\"elementor-background-video-container\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t<video class=\"elementor-background-video-hosted\" autoplay muted playsinline loop><\/video>\n\t\t\t\t\t<\/div><div class=\"elementor-element elementor-element-17654cf e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"17654cf\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-89ade32 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"89ade32\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f11c030 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-html\" data-id=\"f11c030\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!-- C\u00cdRCULO COM IMAGEM AO CENTRO + TEXTO EM VOLTA (TRANSLATEPRESS SAFE) -->\n<div class=\"brand-circle-wrapper\" data-no-translation>\n  <div class=\"rotator\">\n    <div class=\"brand-rotating-text\"\n         id=\"brand-circle-text\"\n         data-no-translation\n data-radius=\"135\"\n         data-font=\"18\"><\/div>\n  <\/div>\n\n  <!-- Imagem central -->\n  <div class=\"brand-center\" data-no-translation>\n    <img decoding=\"async\" class=\"brand-center-img\"\n         src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/08\/ATENASMIS.png\"\n         alt=\"ATENAS.ag\">\n  <\/div>\n<\/div>\n\n<style>\n@font-face {\n  font-family: 'CharterBold';\n  src: url('https:\/\/atenas.ag\/wp-content\/uploads\/2025\/08\/Charter-Bold.ttf') format('truetype');\n  font-weight: 700;\n  font-style: normal;\n}\n\n.brand-circle-wrapper{\n  position: relative;\n  width: 260px;\n  height: 260px;\n  margin: 10px auto;\n}\n\n.rotator{\n  position:absolute;\n  inset:0;\n  transform-origin:50% 50%;\n  animation: brand-spin 18s linear infinite;\n  will-change: transform;\n}\n\n.brand-rotating-text{\n  position:absolute;\n  inset:0;\n  transform: rotate(-90deg);\n  pointer-events:none;\n}\n\n.brand-rotating-text span{\n  position:absolute;\n  left:50%;\n  top:0;\n  color:#FFF0D7;\n  font-weight:700;\n  letter-spacing:0.5px;\n  font-family:'CharterBold', Georgia, serif;\n  white-space:pre;\n}\n\n.brand-center{\n  position:absolute;\n  left:50%;\n  top:50%;\n  transform:translate(-50%, -50%);\n  width:120px;\n  height:120px;\n  display:flex;\n  align-items:center;\n  justify-content:center;\n}\n\n.brand-center-img{\n  width:100%;\n  height:100%;\n  object-fit:contain;\n}\n\n@keyframes brand-spin{\n  from { transform: rotate(0deg); }\n  to   { transform: rotate(360deg); }\n}\n<\/style>\n\n<script>\n(function () {\n\n  function renderBrandCircle() {\n    const el = document.getElementById(\"brand-circle-text\");\n    if (!el || el.dataset.rendered === \"1\") return;\n\n    \/* \ud83c\udf0d DETEC\u00c7\u00c3O DE IDIOMA *\/\n    const isEN =\n      document.documentElement.lang === \"en\" ||\n      location.pathname.startsWith(\"\/en\");\n\n    \/* \ud83d\udd12 TEXTO 100% FORA DO HTML *\/\n    const TEXTS = {\n      pt: \"\u2022UMA AG\u00caNCIA DE BRANDING EXPERIENCE\",\n      en: \"\u2022A BRAND EXPERIENCE AGENCY\"\n    };\n\n    const text   = isEN ? TEXTS.en : TEXTS.pt;\n    const radius = parseFloat(el.dataset.radius) || 135;\n    const fsize  = parseFloat(el.dataset.font)   || 18;\n\n    el.innerHTML = \"\";\n\n    const total = text.length;\n    const baseStep = 360 \/ total;\n\n    const KERN = new Map([\n      [\"I\", 0.72],\n      [\"L\", 0.86],\n      [\"1\", 0.84],\n      [\"T\", 0.92],\n      [\"\u2022\", 1.0],\n      [\" \", 0.5]\n    ]);\n\n    let rawAngles = [];\n    let angle = 0;\n\n    for (let i = 0; i < total; i++) {\n      rawAngles.push(angle);\n      const ch = text[i];\n      const factor = KERN.get(ch) ?? 1;\n      angle += baseStep * factor;\n    }\n\n    const norm = 360 \/ angle;\n    let angles = rawAngles.map(a => a * norm);\n\n    \/* \ud83d\udccd Alinha o ponto na base *\/\n    const dotIdx = text.indexOf(\"\u2022\");\n    if (dotIdx >= 0) {\n      const dotAngle = angles[dotIdx];\n      const TARGET = 180;\n      const offset = TARGET - dotAngle;\n      angles = angles.map(a => (a + offset + 360) % 360);\n    }\n\n    \/* \ud83d\udd24 Render final (cada span tamb\u00e9m bloqueado) *\/\n    for (let i = 0; i < total; i++) {\n      const span = document.createElement(\"span\");\n      span.textContent = text[i];\n      span.setAttribute(\"data-no-translation\", \"true\");\n      span.style.transform = `rotate(${angles[i]}deg)`;\n      span.style.transformOrigin = `0 ${radius}px`;\n      span.style.fontSize = fsize + \"px\";\n      el.appendChild(span);\n    }\n\n    el.dataset.rendered = \"1\";\n  }\n\n  \/* Safe init para Elementor \/ WP *\/\n  window.addEventListener(\"load\", renderBrandCircle);\n\n  let tries = 0;\n  const interval = setInterval(() => {\n    renderBrandCircle();\n    if (++tries > 20) clearInterval(interval);\n  }, 250);\n\n})();\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1e4812c e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"1e4812c\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f2fe483 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"f2fe483\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">BUILDING<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f5a66a7 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"f5a66a7\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">bra<font color=\"#D65D4A\">N<\/font>ds<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-27ed839 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"27ed839\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THROUGH EXPERIENCES<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d1af2ad e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"d1af2ad\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3111d32 elementor-grid-1 e-grid-align-left elementor-grid-mobile-4 e-grid-align-mobile-center elementor-shape-rounded tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-social-icons\" data-id=\"3111d32\" data-element_type=\"widget\" data-widget_type=\"social-icons.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-social-icons-wrapper elementor-grid\" role=\"list\">\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-tiktok elementor-repeater-item-fbc3e8e\" href=\"https:\/\/www.tiktok.com\/@atenas.ag\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Tiktok<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fab-tiktok\" viewbox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-5a97345\" href=\"https:\/\/www.linkedin.com\/company\/atenasag\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Linkedin<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fab-linkedin\" viewbox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-dfb4198\" href=\"https:\/\/www.youtube.com\/user\/atenascomunicacao\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Youtube<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fab-youtube\" viewbox=\"0 0 576 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-42df1ae\" href=\"https:\/\/www.instagram.com\/atenas.ag\/\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Instagram<\/span>\n\t\t\t\t\t\t<svg class=\"e-font-icon-svg e-fab-instagram\" viewbox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-eb1585d e-flex e-con-boxed tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"eb1585d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-c3776ac e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"c3776ac\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1b0e983 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"1b0e983\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">At ATENAS.ag, we believe experiences are the most powerful way to tell stories, <br>spark conversations, and build brands.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fbaca94 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"fbaca94\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1ea464d e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"1ea464d\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8beb5d0 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"8beb5d0\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Driven by cultural intelligence, we turn ideas into real experiences.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-26af253 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"26af253\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6fa9406 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"6fa9406\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f6eedef tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"f6eedef\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">brand<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a5c5ec7 premium-atext__paused-yes premium-atext__switch tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-premium-addon-fancy-text\" data-id=\"a5c5ec7\" data-element_type=\"widget\" data-widget_type=\"premium-addon-fancy-text.default\">\n\t\t\t\t\t\t\t<div class=\"premium-atext__wrapper premium-atext__slide pause\" data-start-effect=\"viewport\" data-settings=\"{&quot;effect&quot;:&quot;slide&quot;,&quot;speed&quot;:2000,&quot;showItems&quot;:1,&quot;pause&quot;:2000,&quot;mousePause&quot;:true,&quot;loading&quot;:false,&quot;style&quot;:&quot;switch&quot;}\">\n\n\t\t\t<h3 class=\"premium-atext__headline\">\n\t\t\t\n\t\t\t\t\t\t<div class=\"premium-atext__text\" style='display: inline-block; text-align: center'>\n\t\t\t\t<ul class=\"premium-atext__items-wrapper\">\n\t\t\t\t\t\t\t\t\t<li class=\"premium-fancy-list-items premium-fancy-item-visible\">\n\t\t\t\t\t\t\tIng\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t<li class=\"premium-fancy-list-items premium-fancy-item-visible\">\n\t\t\t\t\t\t\tIng\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t\t\t<li class=\"premium-fancy-list-items premium-fancy-item-visible\">\n\t\t\t\t\t\t\tIng\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t\t<\/ul>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t<\/h3>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8627bdf e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"8627bdf\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5bbdd1b tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"5bbdd1b\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">experience<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8353ffd e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"8353ffd\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-82eb6e6 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"82eb6e6\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c97e059 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"c97e059\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-87f6267 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-image\" data-id=\"87f6267\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"900\" height=\"156\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/10\/Logo-ATENAS-horizontal_04-1024x178.png\" class=\"attachment-large size-large wp-image-4553\" alt=\"\" srcset=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/10\/Logo-ATENAS-horizontal_04-1024x178.png 1024w, https:\/\/atenas.ag\/wp-content\/uploads\/2025\/10\/Logo-ATENAS-horizontal_04-300x52.png 300w, https:\/\/atenas.ag\/wp-content\/uploads\/2025\/10\/Logo-ATENAS-horizontal_04-768x134.png 768w, https:\/\/atenas.ag\/wp-content\/uploads\/2025\/10\/Logo-ATENAS-horizontal_04.png 1280w\" sizes=\"(max-width: 900px) 100vw, 900px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-279579f e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"279579f\" data-element_type=\"container\" id=\"manifesto\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f33da5 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-jesper-clipper\" data-id=\"7f33da5\" data-element_type=\"widget\" data-widget_type=\"jesper-clipper.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<!-- Begin clipper\n\t\t=================== \n\t\t* Use class \"tt-clipper-grayscale\" to enable black & white background.\n\t\t* Use class \"tt-clipper-cover-*\" to set background overlay opacity. For example \"tt-clipper-cover-2\" or \"tt-clipper-cover-2-5\" (up to \"tt-clipper-cover-9-5\").\n\t\t* Supported media: \"YouTube\", \"Vimeo\", \".mp4\", \".mp3 (requires data-type=\"html5video\")\". Just add your media link to the href=\"\" tag.\n\t\t-->\n\t\t<div class=\"tt-clipper  tt-clipper-cover-1\">\n\t\t\t\t\t\t<a href=\"https:\/\/youtu.be\/P5LWVzXRPMo\" class=\"tt-clipper-inner\" data-cursor=\"Ver<br>Manifesto\" data-fancybox data-caption=\"ATENAS.ag 18 anos\">\n\t\t\t\t\t\t\t\t\t\t\t<!-- Clipper background (video) -->\n\t\t\t\t<div class=\"tt-clipper-bg\">\n\t\t\t\t\t<video loop muted autoplay playsinline preload=\"metadata\" poster=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/Captura-de-Tela-2025-11-27-a\u0300s-08.16.45.png\">\n\t\t\t\t\t\t\t\t\t\t\t\t<source src=\"https:\/\/atenas.ag\/wp-content\/themes\/jesper\/includes\/vids\/placeholder.mp4\" data-src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/atenas_rebranding_18anos_v3-720p.mp4\" type=\"video\/mp4\"  >\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<source src=\"https:\/\/atenas.ag\/wp-content\/themes\/jesper\/includes\/vids\/placeholder.webm\" data-src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/atenas_rebranding_18anos_v3-720p.mp4\" type=\"video\/webm\">\n\t\t\t\t\t\t\t\t\t\t\t<\/video>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"tt-clipper-content\">\n\n\t\t\t\t\t<!-- Clipper button (for mobile devices only!) -->\n\t\t\t\t\t<div class=\"tt-clipper-btn\">\n\t\t\t\t\t\t<i class=\"fa-solid fa-play\"><\/i>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t<\/div> <!-- \/.tt-clipper-content -->\n\t\t\t\t\t\t<\/a> \n\t\t\t\t\t<\/div>\n\t\t<!-- End clipper -->\n\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ab4a979 e-flex e-con-boxed tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"ab4a979\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-e2c7bcf e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"e2c7bcf\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3258fb1 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"3258fb1\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eb009b0 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"eb009b0\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Everything<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9417843 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"9417843\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">we create becomes an experience<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-170bf3a e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"170bf3a\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d8e7a3e tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-html\" data-id=\"d8e7a3e\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"atenas-wheel\">\n  <svg id=\"branding-wheel\"\n       viewbox=\"-340 -340 680 680\"\n       xmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n       role=\"img\"\n       aria-label=\"ATENAS.ag \u2014 Branding Experience\">\n  <\/svg>\n<\/div>\n\n<style>\n:root{\n  --teal:#2E6165;\n  --hover:#D65D4A;\n  --coral:#D65D4A;\n}\n\n.atenas-wheel{\n  width:min(92vw,650px);\n  margin:24px auto;\n  background:transparent;\n}\n\n#branding-wheel{\n  display:block;\n  width:100%;\n  height:auto;\n  overflow:visible; \/* garante que nada seja cortado *\/\n}\n\n\/* fontes *\/\n@font-face{\n  font-family:'CharterBold';\n  src:url('https:\/\/atenas.ag\/wp-content\/uploads\/2025\/08\/Charter-Bold.ttf') format('truetype');\n  font-weight:700;\n  font-style:normal;\n  font-display:swap;\n}\n@font-face{\n  font-family:'EpicalComeback';\n  src:url('https:\/\/atenas.ag\/wp-content\/uploads\/2025\/08\/Epical-Comeback.otf') format('opentype');\n  font-weight:400;\n  font-style:normal;\n  font-display:swap;\n}\n@font-face{\n  font-family:'BigShouldersLight';\n  src:url('https:\/\/atenas.ag\/wp-content\/uploads\/2025\/08\/BigShoulders_24pt-Light.ttf') format('truetype');\n  font-weight:300;\n  font-style:normal;\n  font-display:swap;\n}\n\n\/* trap\u00e9zios *\/\n.segment{\n  fill:var(--teal);\n  cursor:default;\n  transition:transform .25s ease, fill .2s ease, filter .2s ease;\n  transform-box:fill-box;\n  transform-origin:center;\n}\n.segment:hover{\n  transform:scale(1.2);\n  fill:var(--hover);\n  filter:drop-shadow(0 6px 10px rgba(0,0,0,.14));\n}\n\n\/* r\u00f3tulos *\/\n.seg-label{\n  font-family:'BigShouldersLight', system-ui, Arial, sans-serif;\n  font-weight:300;\n  font-size:11px;\n  letter-spacing:.25px;\n  text-transform:uppercase;\n  fill:#F4F7F6;\n  dominant-baseline:middle;\n  text-anchor:middle;\n  pointer-events:none;\n}\n\n\/* TEXTO CIRCULAR EXTERNO \u2014 EXATAMENTE COMO O ORIGINAL *\/\n.outer-chars{\n  transform-box:fill-box;      \/* ESSENCIAL *\/\n  transform-origin:50% 50%;    \/* centro do pr\u00f3prio grupo *\/\n  animation:spin 40s linear infinite;\n}\n.outer-char{\n  font-family:'CharterBold', Georgia, serif;\n  font-size:14px;\n  letter-spacing:3.5px;\n  fill:var(--coral);\n  opacity:.8;\n  dominant-baseline:middle;\n  text-anchor:middle;\n}\n\n\/* centro *\/\n.center-line1{\n  font-family:'EpicalComeback','CharterBold',Georgia,serif;\n  font-size:52px;\n  fill:var(--coral);\n  text-anchor:middle;\n}\n.center-line2{\n  font-family:'EpicalComeback','CharterBold',Georgia,serif;\n  font-size:46px;\n  fill:var(--coral);\n  text-anchor:middle;\n}\n\n@keyframes spin{\n  from{ transform:rotate(0deg) }\n  to{ transform:rotate(360deg) }\n}\n<\/style>\n\n<script>\n(function(){\n  const svg = document.getElementById('branding-wheel');\n  const NS  = \"http:\/\/www.w3.org\/2000\/svg\";\n\n  \/* \ud83c\udf0d idioma (somente para os trap\u00e9zios) *\/\n  const isEN =\n    document.documentElement.lang === \"en\" ||\n    location.pathname.startsWith(\"\/en\");\n\n  const ITEMS_PT = [\n    \"PATROC\u00cdNIOS\",\"TRADE\",\"EVENTOS\",\"BRANDING\",\"COMUNIDADES\",\n    \"PR\",\"DIGITAL\",\"SHOPPER EXPERIENCE\",\"PROMO\u00c7\u00d5ES\",\"CAMPANHAS\",\n    \"PLATAFORMAS\",\"CONVEN\u00c7\u00d5ES\",\"INCENTIVO\",\"CONTE\u00daDO\",\"INFLU\u00caNCIA\"\n  ];\n\n  const ITEMS_EN = [\n    \"SPONSORSHIP\",\"TRADE\",\"EVENTS\",\"BRANDING\",\"COMMUNITIES\",\n    \"PR\",\"DIGITAL\",\"SHOPPER EXPERIENCE\",\"PROMOTIONS\",\"CAMPAIGNS\",\n    \"PLATFORMS\",\"CONVENTIONS\",\"INCENTIVES\",\"CONTENT\",\"INFLUENCE\"\n  ];\n\n  const items = isEN ? ITEMS_EN : ITEMS_PT;\n  const n = items.length;\n\n  \/* geometria (inalterada) *\/\n  const OUTER_R = 252;\n  const INNER_R = 184;\n  const GAP_DEG = 0.05;\n  const START   = -90;\n  const CORNER  = 6;\n  const SIDE_FACTOR = 1;\n  const TIP_DEPTH = 6;\n  const TIP_WIDTH_DEG = 5;\n\n  \/* TEXTO EXTERNO \u2014 J\u00c1 EM INGL\u00caS (INALTERADO) *\/\n  const OUTER_TEXT_R = OUTER_R + 46;\n  const OUTER_TEXT =\n    (\" CULTURAL INTELLIGENCE & BRANDING EXPERIENCE \u2022 \").repeat(2);\n\n  const LOGO = \"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/Logo-ATENAS-horizontal_05.png\";\n\n  const d2r = a => a*Math.PI\/180;\n  const polar = (r,ang)=>[r*Math.cos(d2r(ang)), r*Math.sin(d2r(ang))];\n\n  function node(tag, attrs={}, parent){\n    const el=document.createElementNS(NS,tag);\n    for(const k in attrs) el.setAttribute(k, attrs[k]);\n    parent&&parent.appendChild(el);\n    return el;\n  }\n\n  \/* texto externo *\/\n  const gOuter = node('g', {class:'outer-chars'}, svg);\n  const total = OUTER_TEXT.length;\n  const step = 360 \/ total;\n\n  for(let i=0;i<total;i++){\n    const ang = -90 + i*step;\n    const [x,y] = polar(OUTER_TEXT_R, ang);\n    const t = node('text',{\n      class:'outer-char',\n      x:x.toFixed(2),\n      y:y.toFixed(2)\n    }, gOuter);\n    t.textContent = OUTER_TEXT[i];\n    t.setAttribute(\n      'transform',\n      `rotate(${ang+90} ${x.toFixed(2)} ${y.toFixed(2)})`\n    );\n  }\n\n  \/* anel *\/\n  const gRing = node('g',{},svg);\n  const slice = (360 - n*GAP_DEG) \/ n;\n\n  for(let i=0;i<n;i++){\n    const a0 = START + i*(slice + GAP_DEG);\n    const a1 = a0 + slice;\n\n    const d = trapezoidWithTip(\n      INNER_R, OUTER_R, a0, a1,\n      CORNER, SIDE_FACTOR, TIP_DEPTH, TIP_WIDTH_DEG\n    );\n    node('path', {d, class:'segment'}, gRing);\n\n    const midA = (a0+a1)\/2;\n    const rMid = (INNER_R + OUTER_R)\/2 + 1;\n    const [tx,ty] = polar(rMid, midA);\n\n    const label = node('text',{\n      class:'seg-label',\n      x:tx.toFixed(2),\n      y:ty.toFixed(2),\n      'data-no-translation':'true'\n    }, svg);\n\n    label.textContent = items[i];\n  }\n\n  \/* centro *\/\n  const gCenter = node('g',{},svg);\n\n  const logoW = 150;\n  const logoH = 38;\n  node('image',{\n    href:LOGO,\n    x:-logoW\/2,\n    y:-88-logoH\/2,\n    width:logoW,\n    height:logoH\n  }, gCenter);\n\n  node('text',{class:'center-line1',x:0,y:26},gCenter)\n    .textContent = \"brAndinG\";\n  node('text',{class:'center-line2',x:0,y:84},gCenter)\n    .textContent = \"Experience\";\n\n  \/* geometria *\/\n  function trapezoidWithTip(\n    r0, r1, a0, a1,\n    corner=11, sideFactor=0.95,\n    tipDepth=6, tipWidthDeg=4\n  ){\n    const daO=(corner\/r1)*(180\/Math.PI),\n          daI=(corner\/r0)*(180\/Math.PI);\n\n    const A0o=a0+daO,\n          A1o=a1-daO;\n\n    const angMid=(a0+a1)\/2,\n          half=(a1-a0)\/2;\n\n    const innerHalf = half*sideFactor;\n    const A0i = angMid - innerHalf + daI;\n    const A1i = angMid + innerHalf - daI;\n\n    const [x0o,y0o]=polar(r1,A0o),\n          [x1o,y1o]=polar(r1,A1o);\n    const [x1i,y1i]=polar(r0,A1i),\n          [x0i,y0i]=polar(r0,A0i);\n\n    const tipR = Math.max(0, r0 - tipDepth);\n    const tipHalf = tipWidthDeg\/2;\n    const left = angMid - tipHalf,\n          right = angMid + tipHalf;\n    const [xLi,yLi]=polar(r0,left),\n          [xRi,yRi]=polar(r0,right);\n    const [xTip,yTip]=polar(tipR, angMid);\n\n    return [\n      `M ${x0o.toFixed(2)} ${y0o.toFixed(2)}`,\n      `A ${r1} ${r1} 0 0 1 ${x1o.toFixed(2)} ${y1o.toFixed(2)}`,\n      `L ${x1i.toFixed(2)} ${y1i.toFixed(2)}`,\n      `A ${r0} ${r0} 0 0 0 ${xRi.toFixed(2)} ${yRi.toFixed(2)}`,\n      `L ${xTip.toFixed(2)} ${yTip.toFixed(2)}`,\n      `L ${xLi.toFixed(2)} ${yLi.toFixed(2)}`,\n      `A ${r0} ${r0} 0 0 0 ${x0i.toFixed(2)} ${y0i.toFixed(2)}`,\n      'Z'\n    ].join(' ');\n  }\n\n})();\n<\/script>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0d0a2c8 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"0d0a2c8\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-710c169 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"710c169\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Reaching people in<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a8f03e tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"0a8f03e\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">every possible way<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bc4e51f e-flex e-con-boxed tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"bc4e51f\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-8c25583 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"8c25583\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d63f67e e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"d63f67e\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0341688 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"0341688\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">NUMBERS ALSO TELL <\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f59592 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"3f59592\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">storiE<font color=\"#D65D4A\"><!-- hidden --><\/font>s<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1f467d6 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"1f467d6\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5ddb41 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"a5ddb41\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">And we\u2019re proud of every one of them.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f7d9db1 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"f7d9db1\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f511b93 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-jesper-service\" data-id=\"f511b93\" data-element_type=\"widget\" data-widget_type=\"jesper-service.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"tt-horizontal-accordion\">\n\t\t\t\t\t\t<!-- Begin horizontal accordion item \n\t\t\t===================================== -->\n\t\t\t<div class=\"tt-hac-item cursor-alter\">\n\t\t\t\t\t\t\t\t<div class=\"tt-hac-item-inner\">\n\t\t\t\t\t<div class=\"tt-hac-item-content\">\n\t\t\t\t\t\t<div class=\"tt-haci-content-top\">\n\t\t\t\t\t\t\t<h2 class=\"tt-haci-title\">CANNES <br>2025<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-haci-description\"> <!-- Max 4 lines of text displayed -->\n\t\t\t\t\t\t\t\t4 Shortlists at Cannes in 2025.\n\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-description -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-content-top -->\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-hac-item-content -->\n\t\t\t\t<\/div> <!-- \/.tt-hac-item-inner -->\n\t\t\t<\/div>\n\t\t\t<!-- End horizontal accordion item -->\n\t\t\t\t\t\t<!-- Begin horizontal accordion item \n\t\t\t===================================== -->\n\t\t\t<div class=\"tt-hac-item cursor-alter\">\n\t\t\t\t\t\t\t\t<div class=\"tt-hac-item-inner\">\n\t\t\t\t\t<div class=\"tt-hac-item-content\">\n\t\t\t\t\t\t<div class=\"tt-haci-content-top\">\n\t\t\t\t\t\t\t<h4 class=\"tt-haci-title\">BEA WORLD<br>FESTIVAL 2025<\/h4>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-haci-description\"> <!-- Max 4 lines of text displayed -->\n\t\t\t\t\t\t\t\t3 awards with Ita\u00fa for the \u201cLetters from Simone\u201d case, including a Grand Prix.\n\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-description -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-content-top -->\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-hac-item-content -->\n\t\t\t\t<\/div> <!-- \/.tt-hac-item-inner -->\n\t\t\t<\/div>\n\t\t\t<!-- End horizontal accordion item -->\n\t\t\t\t\t\t<!-- Begin horizontal accordion item \n\t\t\t===================================== -->\n\t\t\t<div class=\"tt-hac-item cursor-alter\">\n\t\t\t\t\t\t\t\t<div class=\"tt-hac-item-inner\">\n\t\t\t\t\t<div class=\"tt-hac-item-content\">\n\t\t\t\t\t\t<div class=\"tt-haci-content-top\">\n\t\t\t\t\t\t\t<h2 class=\"tt-haci-title\">AMPRO AWARDS 2025<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-haci-description\"> <!-- Max 4 lines of text displayed -->\n\t\t\t\t\t\t\t\tA total of 11 trophies, including 4 Golds.\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-description -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-content-top -->\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-hac-item-content -->\n\t\t\t\t<\/div> <!-- \/.tt-hac-item-inner -->\n\t\t\t<\/div>\n\t\t\t<!-- End horizontal accordion item -->\n\t\t\t\t\t\t<!-- Begin horizontal accordion item \n\t\t\t===================================== -->\n\t\t\t<div class=\"tt-hac-item cursor-alter\">\n\t\t\t\t\t\t\t\t<div class=\"tt-hac-item-inner\">\n\t\t\t\t\t<div class=\"tt-hac-item-content\">\n\t\t\t\t\t\t<div class=\"tt-haci-content-top\">\n\t\t\t\t\t\t\t<h4 class=\"tt-haci-title\">EFFIE AWARDS 2025<\/h4>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-haci-description\"> <!-- Max 4 lines of text displayed -->\n\t\t\t\t\t\t\t\t14 trophies, including a Grand Prix, Gold, Silver and Bronze awards.\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-description -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-content-top -->\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-hac-item-content -->\n\t\t\t\t<\/div> <!-- \/.tt-hac-item-inner -->\n\t\t\t<\/div>\n\t\t\t<!-- End horizontal accordion item -->\n\t\t\t\t\t\t<!-- Begin horizontal accordion item \n\t\t\t===================================== -->\n\t\t\t<div class=\"tt-hac-item cursor-alter\">\n\t\t\t\t\t\t\t\t<div class=\"tt-hac-item-inner\">\n\t\t\t\t\t<div class=\"tt-hac-item-content\">\n\t\t\t\t\t\t<div class=\"tt-haci-content-top\">\n\t\t\t\t\t\t\t<h2 class=\"tt-haci-title\">GPTW <br>2025<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-haci-description\"> <!-- Max 4 lines of text displayed -->\n\t\t\t\t\t\t\t\tGreat Place to Work\u00ae Certified in 2025.\n\n\n\n\n\n\n\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-description -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-content-top -->\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-hac-item-content -->\n\t\t\t\t<\/div> <!-- \/.tt-hac-item-inner -->\n\t\t\t<\/div>\n\t\t\t<!-- End horizontal accordion item -->\n\t\t\t\t\t\t<!-- Begin horizontal accordion item \n\t\t\t===================================== -->\n\t\t\t<div class=\"tt-hac-item cursor-alter\">\n\t\t\t\t\t\t\t\t<div class=\"tt-hac-item-inner\">\n\t\t\t\t\t<div class=\"tt-hac-item-content\">\n\t\t\t\t\t\t<div class=\"tt-haci-content-top\">\n\t\t\t\t\t\t\t<h2 class=\"tt-haci-title\">AMPRO AWARDS 2022<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-haci-description\"> <!-- Max 4 lines of text displayed -->\n\t\t\t\t\t\t\t\tAgency of the Year at AMPRO Awards 2022.\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-description -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-content-top -->\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-hac-item-content -->\n\t\t\t\t<\/div> <!-- \/.tt-hac-item-inner -->\n\t\t\t<\/div>\n\t\t\t<!-- End horizontal accordion item -->\n\t\t\t\t\t\t<!-- Begin horizontal accordion item \n\t\t\t===================================== -->\n\t\t\t<div class=\"tt-hac-item cursor-alter\">\n\t\t\t\t\t\t\t\t<div class=\"tt-hac-item-inner\">\n\t\t\t\t\t<div class=\"tt-hac-item-content\">\n\t\t\t\t\t\t<div class=\"tt-haci-content-top\">\n\t\t\t\t\t\t\t<h2 class=\"tt-haci-title\">GUINNESS <br>BOOK<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-haci-description\"> <!-- Max 4 lines of text displayed -->\n\t\t\t\t\t\t\t\tThe only Brazilian agency featured in the Guinness World Records.\n\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-description -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-content-top -->\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-hac-item-content -->\n\t\t\t\t<\/div> <!-- \/.tt-hac-item-inner -->\n\t\t\t<\/div>\n\t\t\t<!-- End horizontal accordion item -->\n\t\t\t\t\t\t<!-- Begin horizontal accordion item \n\t\t\t===================================== -->\n\t\t\t<div class=\"tt-hac-item cursor-alter\">\n\t\t\t\t\t\t\t\t<div class=\"tt-hac-item-inner\">\n\t\t\t\t\t<div class=\"tt-hac-item-content\">\n\t\t\t\t\t\t<div class=\"tt-haci-content-top\">\n\t\t\t\t\t\t\t<h2 class=\"tt-haci-title\">LGBTQIAP+ <br> CERT.<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-haci-description\"> <!-- Max 4 lines of text displayed -->\n\t\t\t\t\t\t\t\tThe only Brazilian agency certified for racial diversity and LGBTQIAP+ inclusion.\n\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-description -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-content-top -->\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-hac-item-content -->\n\t\t\t\t<\/div> <!-- \/.tt-hac-item-inner -->\n\t\t\t<\/div>\n\t\t\t<!-- End horizontal accordion item -->\n\t\t\t\t\t\t<!-- Begin horizontal accordion item \n\t\t\t===================================== -->\n\t\t\t<div class=\"tt-hac-item cursor-alter\">\n\t\t\t\t\t\t\t\t<div class=\"tt-hac-item-inner\">\n\t\t\t\t\t<div class=\"tt-hac-item-content\">\n\t\t\t\t\t\t<div class=\"tt-haci-content-top\">\n\t\t\t\t\t\t\t<h4 class=\"tt-haci-title\">WME<br> CERT. <\/h4>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-haci-description\"> <!-- Max 4 lines of text displayed -->\n\t\t\t\t\t\t\t\tThe first brand experience agency to receive the Equal Seal from Women\u2019s Music Event.\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-description -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-haci-content-top -->\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-hac-item-content -->\n\t\t\t\t<\/div> <!-- \/.tt-hac-item-inner -->\n\t\t\t<\/div>\n\t\t\t<!-- End horizontal accordion item -->\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9a870e2 e-flex e-con-boxed tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"9a870e2\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b9d30d tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-image-carousel\" data-id=\"9b9d30d\" data-element_type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;6&quot;,&quot;slides_to_scroll&quot;:&quot;1&quot;,&quot;navigation&quot;:&quot;none&quot;,&quot;autoplay_speed&quot;:20,&quot;speed&quot;:2000,&quot;slides_to_show_mobile&quot;:&quot;3&quot;,&quot;slides_to_scroll_mobile&quot;:&quot;1&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carrossel de imagens\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 de 9\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/12\/Prancheta-1.png\" alt=\"Prancheta 1\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 de 9\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/12\/logo4.png\" alt=\"logo4\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"3 de 9\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/12\/logo2.png\" alt=\"logo2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"4 de 9\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/12\/Prancheta-2.png\" alt=\"Prancheta 2\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"5 de 9\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/12\/Prancheta-3.png\" alt=\"Prancheta 3\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"6 de 9\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/12\/Prancheta-4.png\" alt=\"Prancheta 4\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"7 de 9\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/12\/Prancheta-5.png\" alt=\"Prancheta 5\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"8 de 9\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/12\/Prancheta-6.png\" alt=\"Prancheta 6\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"9 de 9\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/12\/logo01.png\" alt=\"logo01\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-77195ca e-flex e-con-boxed tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"77195ca\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d867b70 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"d867b70\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7434e3b e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"7434e3b\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c8a41ec tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"c8a41ec\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">OUR<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9915e24 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"9915e24\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">pro<font color=\"#D65D4A\">J<\/font>ects<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-454cea2 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"454cea2\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3e8f53c elementor-widget__width-initial elementor-widget-mobile__width-inherit tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"3e8f53c\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">CHECK OUT THE EXPERIENCES WE\u2019VE TAKEN TO THE STREETS AND BROUGHT TO LIFE.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4f6e758 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"4f6e758\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1d84242 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-jesper-portfolio-grid\" data-id=\"1d84242\" data-element_type=\"widget\" data-widget_type=\"jesper-portfolio-grid.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"portfolio-grid\" class=\"pgi_cap_outside pgi-hover\">\n\n\t<div class=\"tt-grid ttgr-layout-3 ttgr-cropped ttgr-shifted-off ttgr-gap-3\">\n\t\t\n\t\t<!-- Begin tt-Grid items wrap \n\t\t============================== -->\n\t\t<div class=\"tt-grid-items-wrap isotope-items-wrap\">\n\n\t\t\t\t\t\t\t<!-- Begin tt-Grid item\n\t\t\t\t======================== -->\n\t\t\t\t<div class=\"tt-grid-item isotope-item projetos-proprietarios plataformas brand-experience\">\n\t\t\t\t\t<div class=\"ttgr-item-inner\">\n\n\t\t\t\t\t\t<!-- Begin portfolio grid item \n\t\t\t\t\t\t===============================\n\t\t\t\t\t\t* Use class \"pgi-image-is-light\" if needed, it makes the caption visible better if you use light image (only effect if \"pgi-cap-inside\" is enabled on \"portfolio-grid\"! Also no effect on small screens!).\n\t\t\t\t\t\t-->\n\t\t\t\t\t\t<div class=\"portfolio-grid-item\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/heineken-no-line-up-festival\/\" class=\"pgi-image-wrap\" data-cursor=\"Ver<br>Experi\u00eancia\">\n\t\t\t\t\t\t\t\t<!-- Use class \"cover-opacity-*\" to set image overlay if needed. For example \"cover-opacity-2\". Useful if class \"pgi-cap-inside\" is enabled on \"portfolio-grid\". Note: It is individual and depends on the image you use. More info about helper classes in file \"helper.css\". -->\n\t\t\t\t\t\t\t\t<div class=\"pgi-image-holder\">\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-image-inner tt-anim-zoomin\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"pgi-image ttgr-height\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/destaque-mateussilvafotografo-146-scaled.jpg\" loading=\"lazy\" alt=\"HEINEKEN \u2013 No Line-Up Festival\">\n\t\t\t\t\t\t\t\t\t\t<\/figure> <!-- \/.pgi-image -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-inner -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-holder -->\n\t\t\t\t\t\t\t<\/a> <!-- \/.pgi-image-wrap -->\n\n\t\t\t\t\t\t\t<div class=\"pgi-caption\">\n\t\t\t\t\t\t\t\t<div class=\"pgi-caption-inner\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"pgi-title\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/heineken-no-line-up-festival\/\">\n\t\t\t\t\t\t\t\t\t\tHEINEKEN \u2013 No Line-Up Festival\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/h2>\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-categories-wrap\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/projetos-proprietarios\/\" class=\"pgi-category\">PROPRIETARY PROJECTS  <\/a><a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/plataformas\/\" class=\"pgi-category\">PLATFORMS  <\/a><a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/brand-experience\/\" class=\"pgi-category\">BRAND EXPERIENCE  <\/a>\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pli-categories-wrap -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption-inner -->\n\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<!-- End portfolio grid item -->\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div> <!-- \/.ttgr-item-inner -->\n\t\t\t\t<\/div>\n\t\t\t\t<!-- End tt-Grid item -->\n\t\t\t\t\t\t\t\t<!-- Begin tt-Grid item\n\t\t\t\t======================== -->\n\t\t\t\t<div class=\"tt-grid-item isotope-item brand-experience\">\n\t\t\t\t\t<div class=\"ttgr-item-inner\">\n\n\t\t\t\t\t\t<!-- Begin portfolio grid item \n\t\t\t\t\t\t===============================\n\t\t\t\t\t\t* Use class \"pgi-image-is-light\" if needed, it makes the caption visible better if you use light image (only effect if \"pgi-cap-inside\" is enabled on \"portfolio-grid\"! Also no effect on small screens!).\n\t\t\t\t\t\t-->\n\t\t\t\t\t\t<div class=\"portfolio-grid-item\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/itau-com-fernanda-montenegro\/\" class=\"pgi-image-wrap\" data-cursor=\"Ver<br>Experi\u00eancia\">\n\t\t\t\t\t\t\t\t<!-- Use class \"cover-opacity-*\" to set image overlay if needed. For example \"cover-opacity-2\". Useful if class \"pgi-cap-inside\" is enabled on \"portfolio-grid\". Note: It is individual and depends on the image you use. More info about helper classes in file \"helper.css\". -->\n\t\t\t\t\t\t\t\t<div class=\"pgi-image-holder\">\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-image-inner tt-anim-zoomin\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"pgi-image ttgr-height\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/08\/destaque-Itau\u0301-Fernanda-Montenegro-e-ATENAS.ag-2024_-divulgac\u0327a\u0303o-scaled.jpg\" loading=\"lazy\" alt=\"ITA\u00da &#8211; Fernanda Montenegro l\u00ea Simone de Beauvoir\">\n\t\t\t\t\t\t\t\t\t\t<\/figure> <!-- \/.pgi-image -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-inner -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-holder -->\n\t\t\t\t\t\t\t<\/a> <!-- \/.pgi-image-wrap -->\n\n\t\t\t\t\t\t\t<div class=\"pgi-caption\">\n\t\t\t\t\t\t\t\t<div class=\"pgi-caption-inner\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"pgi-title\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/itau-com-fernanda-montenegro\/\">\n\t\t\t\t\t\t\t\t\t\tITA\u00da \u2013 Fernanda Montenegro reads Simone de Beauvoir\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/h2>\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-categories-wrap\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/brand-experience\/\" class=\"pgi-category\">BRAND EXPERIENCE  <\/a>\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pli-categories-wrap -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption-inner -->\n\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<!-- End portfolio grid item -->\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div> <!-- \/.ttgr-item-inner -->\n\t\t\t\t<\/div>\n\t\t\t\t<!-- End tt-Grid item -->\n\t\t\t\t\t\t\t\t<!-- Begin tt-Grid item\n\t\t\t\t======================== -->\n\t\t\t\t<div class=\"tt-grid-item isotope-item plataformas brand-experience\">\n\t\t\t\t\t<div class=\"ttgr-item-inner\">\n\n\t\t\t\t\t\t<!-- Begin portfolio grid item \n\t\t\t\t\t\t===============================\n\t\t\t\t\t\t* Use class \"pgi-image-is-light\" if needed, it makes the caption visible better if you use light image (only effect if \"pgi-cap-inside\" is enabled on \"portfolio-grid\"! Also no effect on small screens!).\n\t\t\t\t\t\t-->\n\t\t\t\t\t\t<div class=\"portfolio-grid-item\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/amstel-kings-day\/\" class=\"pgi-image-wrap\" data-cursor=\"Ver<br>Experi\u00eancia\">\n\t\t\t\t\t\t\t\t<!-- Use class \"cover-opacity-*\" to set image overlay if needed. For example \"cover-opacity-2\". Useful if class \"pgi-cap-inside\" is enabled on \"portfolio-grid\". Note: It is individual and depends on the image you use. More info about helper classes in file \"helper.css\". -->\n\t\t\t\t\t\t\t\t<div class=\"pgi-image-holder\">\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-image-inner tt-anim-zoomin\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"pgi-image ttgr-height\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/destaque-DSC00004-min-scaled.jpg\" loading=\"lazy\" alt=\"AMSTEL \u2013 King\u2019s Day\">\n\t\t\t\t\t\t\t\t\t\t<\/figure> <!-- \/.pgi-image -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-inner -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-holder -->\n\t\t\t\t\t\t\t<\/a> <!-- \/.pgi-image-wrap -->\n\n\t\t\t\t\t\t\t<div class=\"pgi-caption\">\n\t\t\t\t\t\t\t\t<div class=\"pgi-caption-inner\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"pgi-title\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/amstel-kings-day\/\">\n\t\t\t\t\t\t\t\t\t\tAMSTEL \u2013 King\u2019s Day\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/h2>\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-categories-wrap\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/plataformas\/\" class=\"pgi-category\">PLATFORMS  <\/a><a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/brand-experience\/\" class=\"pgi-category\">BRAND EXPERIENCE  <\/a>\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pli-categories-wrap -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption-inner -->\n\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<!-- End portfolio grid item -->\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div> <!-- \/.ttgr-item-inner -->\n\t\t\t\t<\/div>\n\t\t\t\t<!-- End tt-Grid item -->\n\t\t\t\t\t\t\t\t<!-- Begin tt-Grid item\n\t\t\t\t======================== -->\n\t\t\t\t<div class=\"tt-grid-item isotope-item brand-experience\">\n\t\t\t\t\t<div class=\"ttgr-item-inner\">\n\n\t\t\t\t\t\t<!-- Begin portfolio grid item \n\t\t\t\t\t\t===============================\n\t\t\t\t\t\t* Use class \"pgi-image-is-light\" if needed, it makes the caption visible better if you use light image (only effect if \"pgi-cap-inside\" is enabled on \"portfolio-grid\"! Also no effect on small screens!).\n\t\t\t\t\t\t-->\n\t\t\t\t\t\t<div class=\"portfolio-grid-item\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/heineken-heinequeen\/\" class=\"pgi-image-wrap\" data-cursor=\"Ver<br>Experi\u00eancia\">\n\t\t\t\t\t\t\t\t<!-- Use class \"cover-opacity-*\" to set image overlay if needed. For example \"cover-opacity-2\". Useful if class \"pgi-cap-inside\" is enabled on \"portfolio-grid\". Note: It is individual and depends on the image you use. More info about helper classes in file \"helper.css\". -->\n\t\t\t\t\t\t\t\t<div class=\"pgi-image-holder\">\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-image-inner tt-anim-zoomin\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"pgi-image ttgr-height\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/destaque-IMG_1724-scaled.jpeg\" loading=\"lazy\" alt=\"HEINEKEN &#8211; #HeineQueen\">\n\t\t\t\t\t\t\t\t\t\t<\/figure> <!-- \/.pgi-image -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-inner -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-holder -->\n\t\t\t\t\t\t\t<\/a> <!-- \/.pgi-image-wrap -->\n\n\t\t\t\t\t\t\t<div class=\"pgi-caption\">\n\t\t\t\t\t\t\t\t<div class=\"pgi-caption-inner\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"pgi-title\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/heineken-heinequeen\/\">\n\t\t\t\t\t\t\t\t\t\tHEINEKEN &#8211; #HeineQueen\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/h2>\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-categories-wrap\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/brand-experience\/\" class=\"pgi-category\">BRAND EXPERIENCE  <\/a>\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pli-categories-wrap -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption-inner -->\n\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<!-- End portfolio grid item -->\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div> <!-- \/.ttgr-item-inner -->\n\t\t\t\t<\/div>\n\t\t\t\t<!-- End tt-Grid item -->\n\t\t\t\t\t\t\t\t<!-- Begin tt-Grid item\n\t\t\t\t======================== -->\n\t\t\t\t<div class=\"tt-grid-item isotope-item brand-experience\">\n\t\t\t\t\t<div class=\"ttgr-item-inner\">\n\n\t\t\t\t\t\t<!-- Begin portfolio grid item \n\t\t\t\t\t\t===============================\n\t\t\t\t\t\t* Use class \"pgi-image-is-light\" if needed, it makes the caption visible better if you use light image (only effect if \"pgi-cap-inside\" is enabled on \"portfolio-grid\"! Also no effect on small screens!).\n\t\t\t\t\t\t-->\n\t\t\t\t\t\t<div class=\"portfolio-grid-item\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/adidas-arena-trionda\/\" class=\"pgi-image-wrap\" data-cursor=\"Ver<br>Experi\u00eancia\">\n\t\t\t\t\t\t\t\t<!-- Use class \"cover-opacity-*\" to set image overlay if needed. For example \"cover-opacity-2\". Useful if class \"pgi-cap-inside\" is enabled on \"portfolio-grid\". Note: It is individual and depends on the image you use. More info about helper classes in file \"helper.css\". -->\n\t\t\t\t\t\t\t\t<div class=\"pgi-image-holder\">\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-image-inner tt-anim-zoomin\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"pgi-image ttgr-height\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/destaque-adidas-ARENA-Trionda-1-1-scaled.jpg\" loading=\"lazy\" alt=\"ADIDAS \u2013 Arena Trionda\">\n\t\t\t\t\t\t\t\t\t\t<\/figure> <!-- \/.pgi-image -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-inner -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-holder -->\n\t\t\t\t\t\t\t<\/a> <!-- \/.pgi-image-wrap -->\n\n\t\t\t\t\t\t\t<div class=\"pgi-caption\">\n\t\t\t\t\t\t\t\t<div class=\"pgi-caption-inner\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"pgi-title\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/adidas-arena-trionda\/\">\n\t\t\t\t\t\t\t\t\t\tADIDAS \u2013 Trionda Arena\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/h2>\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-categories-wrap\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/brand-experience\/\" class=\"pgi-category\">BRAND EXPERIENCE  <\/a>\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pli-categories-wrap -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption-inner -->\n\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<!-- End portfolio grid item -->\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div> <!-- \/.ttgr-item-inner -->\n\t\t\t\t<\/div>\n\t\t\t\t<!-- End tt-Grid item -->\n\t\t\t\t\t\t\t\t<!-- Begin tt-Grid item\n\t\t\t\t======================== -->\n\t\t\t\t<div class=\"tt-grid-item isotope-item b2b\">\n\t\t\t\t\t<div class=\"ttgr-item-inner\">\n\n\t\t\t\t\t\t<!-- Begin portfolio grid item \n\t\t\t\t\t\t===============================\n\t\t\t\t\t\t* Use class \"pgi-image-is-light\" if needed, it makes the caption visible better if you use light image (only effect if \"pgi-cap-inside\" is enabled on \"portfolio-grid\"! Also no effect on small screens!).\n\t\t\t\t\t\t-->\n\t\t\t\t\t\t<div class=\"portfolio-grid-item\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/netflix-behind-the-streams\/\" class=\"pgi-image-wrap\" data-cursor=\"Ver<br>Experi\u00eancia\">\n\t\t\t\t\t\t\t\t<!-- Use class \"cover-opacity-*\" to set image overlay if needed. For example \"cover-opacity-2\". Useful if class \"pgi-cap-inside\" is enabled on \"portfolio-grid\". Note: It is individual and depends on the image you use. More info about helper classes in file \"helper.css\". -->\n\t\t\t\t\t\t\t\t<div class=\"pgi-image-holder\">\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-image-inner tt-anim-zoomin\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"pgi-image ttgr-height\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/12\/PRINCIPAL_GNF3196-scaled.jpg\" loading=\"lazy\" alt=\"NETFLIX &#8211; Behind the Streams\">\n\t\t\t\t\t\t\t\t\t\t<\/figure> <!-- \/.pgi-image -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-inner -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-holder -->\n\t\t\t\t\t\t\t<\/a> <!-- \/.pgi-image-wrap -->\n\n\t\t\t\t\t\t\t<div class=\"pgi-caption\">\n\t\t\t\t\t\t\t\t<div class=\"pgi-caption-inner\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"pgi-title\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/netflix-behind-the-streams\/\">\n\t\t\t\t\t\t\t\t\t\tNETFLIX &#8211; Behind the Streams\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/h2>\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-categories-wrap\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/b2b\/\" class=\"pgi-category\">B2B  <\/a>\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pli-categories-wrap -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption-inner -->\n\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<!-- End portfolio grid item -->\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div> <!-- \/.ttgr-item-inner -->\n\t\t\t\t<\/div>\n\t\t\t\t<!-- End tt-Grid item -->\n\t\t\t\t\t\t\t\t<!-- Begin tt-Grid item\n\t\t\t\t======================== -->\n\t\t\t\t<div class=\"tt-grid-item isotope-item projetos-proprietarios plataformas brand-experience\">\n\t\t\t\t\t<div class=\"ttgr-item-inner\">\n\n\t\t\t\t\t\t<!-- Begin portfolio grid item \n\t\t\t\t\t\t===============================\n\t\t\t\t\t\t* Use class \"pgi-image-is-light\" if needed, it makes the caption visible better if you use light image (only effect if \"pgi-cap-inside\" is enabled on \"portfolio-grid\"! Also no effect on small screens!).\n\t\t\t\t\t\t-->\n\t\t\t\t\t\t<div class=\"portfolio-grid-item\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/eisenbahn-eisen-rock-station\/\" class=\"pgi-image-wrap\" data-cursor=\"Ver<br>Experi\u00eancia\">\n\t\t\t\t\t\t\t\t<!-- Use class \"cover-opacity-*\" to set image overlay if needed. For example \"cover-opacity-2\". Useful if class \"pgi-cap-inside\" is enabled on \"portfolio-grid\". Note: It is individual and depends on the image you use. More info about helper classes in file \"helper.css\". -->\n\t\t\t\t\t\t\t\t<div class=\"pgi-image-holder\">\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-image-inner tt-anim-zoomin\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"pgi-image ttgr-height\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/destaque-TheTown_130925-478-scaled.jpg\" loading=\"lazy\" alt=\"EISENBAHN \u2013 Eisen Rock Station\">\n\t\t\t\t\t\t\t\t\t\t<\/figure> <!-- \/.pgi-image -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-inner -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-holder -->\n\t\t\t\t\t\t\t<\/a> <!-- \/.pgi-image-wrap -->\n\n\t\t\t\t\t\t\t<div class=\"pgi-caption\">\n\t\t\t\t\t\t\t\t<div class=\"pgi-caption-inner\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"pgi-title\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/eisenbahn-eisen-rock-station\/\">\n\t\t\t\t\t\t\t\t\t\tEISENBAHN \u2013 Eisen Rock Station\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/h2>\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-categories-wrap\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/projetos-proprietarios\/\" class=\"pgi-category\">PROPRIETARY PROJECTS  <\/a><a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/plataformas\/\" class=\"pgi-category\">PLATFORMS  <\/a><a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/brand-experience\/\" class=\"pgi-category\">BRAND EXPERIENCE  <\/a>\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pli-categories-wrap -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption-inner -->\n\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<!-- End portfolio grid item -->\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div> <!-- \/.ttgr-item-inner -->\n\t\t\t\t<\/div>\n\t\t\t\t<!-- End tt-Grid item -->\n\t\t\t\t\t\t\t\t<!-- Begin tt-Grid item\n\t\t\t\t======================== -->\n\t\t\t\t<div class=\"tt-grid-item isotope-item brand-experience\">\n\t\t\t\t\t<div class=\"ttgr-item-inner\">\n\n\t\t\t\t\t\t<!-- Begin portfolio grid item \n\t\t\t\t\t\t===============================\n\t\t\t\t\t\t* Use class \"pgi-image-is-light\" if needed, it makes the caption visible better if you use light image (only effect if \"pgi-cap-inside\" is enabled on \"portfolio-grid\"! Also no effect on small screens!).\n\t\t\t\t\t\t-->\n\t\t\t\t\t\t<div class=\"portfolio-grid-item\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/volkswagen-rock-in-rio-2024\/\" class=\"pgi-image-wrap\" data-cursor=\"Ver<br>Experi\u00eancia\">\n\t\t\t\t\t\t\t\t<!-- Use class \"cover-opacity-*\" to set image overlay if needed. For example \"cover-opacity-2\". Useful if class \"pgi-cap-inside\" is enabled on \"portfolio-grid\". Note: It is individual and depends on the image you use. More info about helper classes in file \"helper.css\". -->\n\t\t\t\t\t\t\t\t<div class=\"pgi-image-holder\">\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-image-inner tt-anim-zoomin\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"pgi-image ttgr-height\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/destaque-@bonografia-5154-min-scaled.jpg\" loading=\"lazy\" alt=\"VOLKSWAGEN \u2013 Rock in Rio 2024\">\n\t\t\t\t\t\t\t\t\t\t<\/figure> <!-- \/.pgi-image -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-inner -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-holder -->\n\t\t\t\t\t\t\t<\/a> <!-- \/.pgi-image-wrap -->\n\n\t\t\t\t\t\t\t<div class=\"pgi-caption\">\n\t\t\t\t\t\t\t\t<div class=\"pgi-caption-inner\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"pgi-title\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/volkswagen-rock-in-rio-2024\/\">\n\t\t\t\t\t\t\t\t\t\tVOLKSWAGEN \u2013 Rock in Rio 2024\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/h2>\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-categories-wrap\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/brand-experience\/\" class=\"pgi-category\">BRAND EXPERIENCE  <\/a>\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pli-categories-wrap -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption-inner -->\n\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<!-- End portfolio grid item -->\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div> <!-- \/.ttgr-item-inner -->\n\t\t\t\t<\/div>\n\t\t\t\t<!-- End tt-Grid item -->\n\t\t\t\t\t\t\t\t<!-- Begin tt-Grid item\n\t\t\t\t======================== -->\n\t\t\t\t<div class=\"tt-grid-item isotope-item brand-experience\">\n\t\t\t\t\t<div class=\"ttgr-item-inner\">\n\n\t\t\t\t\t\t<!-- Begin portfolio grid item \n\t\t\t\t\t\t===============================\n\t\t\t\t\t\t* Use class \"pgi-image-is-light\" if needed, it makes the caption visible better if you use light image (only effect if \"pgi-cap-inside\" is enabled on \"portfolio-grid\"! Also no effect on small screens!).\n\t\t\t\t\t\t-->\n\t\t\t\t\t\t<div class=\"portfolio-grid-item\">\n\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/tim-rock-in-rio-2024\/\" class=\"pgi-image-wrap\" data-cursor=\"Ver<br>Experi\u00eancia\">\n\t\t\t\t\t\t\t\t<!-- Use class \"cover-opacity-*\" to set image overlay if needed. For example \"cover-opacity-2\". Useful if class \"pgi-cap-inside\" is enabled on \"portfolio-grid\". Note: It is individual and depends on the image you use. More info about helper classes in file \"helper.css\". -->\n\t\t\t\t\t\t\t\t<div class=\"pgi-image-holder\">\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-image-inner tt-anim-zoomin\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<figure class=\"pgi-image ttgr-height\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/destaque-BONO6842-min-scaled.jpg\" loading=\"lazy\" alt=\"TIM \u2013 Rock in Rio 2024\">\n\t\t\t\t\t\t\t\t\t\t<\/figure> <!-- \/.pgi-image -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-inner -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-image-holder -->\n\t\t\t\t\t\t\t<\/a> <!-- \/.pgi-image-wrap -->\n\n\t\t\t\t\t\t\t<div class=\"pgi-caption\">\n\t\t\t\t\t\t\t\t<div class=\"pgi-caption-inner\">\n\t\t\t\t\t\t\t\t\t<h2 class=\"pgi-title\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio\/tim-rock-in-rio-2024\/\">\n\t\t\t\t\t\t\t\t\t\tTIM \u2013 Rock in Rio 2024\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/h2>\n\t\t\t\t\t\t\t\t\t<div class=\"pgi-categories-wrap\">\n\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/atenas.ag\/en\/portfolio_category\/brand-experience\/\" class=\"pgi-category\">BRAND EXPERIENCE  <\/a>\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.pli-categories-wrap -->\n\t\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption-inner -->\n\t\t\t\t\t\t\t<\/div> <!-- \/.pgi-caption -->\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<!-- End portfolio grid item -->\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div> <!-- \/.ttgr-item-inner -->\n\t\t\t\t<\/div>\n\t\t\t\t<!-- End tt-Grid item -->\n\t\t\t\t\t\t\n\t\t\n\t\t<\/div>\n\t\t<!-- End tt-Grid items wrap  -->\n\n\t\t<\/div>\n\t\t<!-- End tt-Grid -->\n\n\t\t\n\n<\/div>\n<!-- End portfolio grid -->\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-019f869 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"019f869\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-33fdd01 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-jesper-divider\" data-id=\"33fdd01\" data-element_type=\"widget\" data-widget_type=\"jesper-divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"border-top\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-712c7a9 e-flex e-con-boxed tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"712c7a9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3c0d72b e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"3c0d72b\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-389efee e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"389efee\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7127a6e tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"7127a6e\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THEY TALK ABOUT<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-09e2008 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"09e2008\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><!-- hidden --><font color=\"#D65D4A\">U<\/font>s<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-43498c7 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"43498c7\" data-element_type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ce97056 e-flex e-con-boxed tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"ce97056\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-04ccab9 tt-sticker-scroller tt-sticker-scroller-yes tt-sticky-element-no elementor-widget elementor-widget-jesper-testimonial\" data-id=\"04ccab9\" data-element_type=\"widget\" data-widget_type=\"jesper-testimonial.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"clear\">\n\t\t\t\t\t\t<!-- Begin sticky testimonials item -->\n\t\t\t<div class=\"tt-stte-item\">\n\t\t\t\t<div class=\"tt-stte-card cursor-alter\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"tt-stte-card-caption\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-stte-text\">\n\t\t\t\t\t\t\"My admiration for ATENAS.ag comes from the fact that the team positions itself as a business partner, always very aligned with our needs. It is a very close relationship, based on understanding \u2014 with provocations and creative deliveries \u2014 that deepens day by day. The team has clarity about our challenges, works collaboratively, and generates opportunities, always contributing to the construction of actions.\"\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-stte-subtext\">\n\t\t\t\t\t\t\t<a target=\"_blank\" rel=\"nofollow\" class=\"tt-link\">Guilherme Bail\u00e3o \u2013 Director of Brand Experiences and Sponsorships, Heineken Group Brazil<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-stte-card-caption -->\n\t\t\t\t<\/div> <!-- \/.tt-stte-card -->\n\t\t\t<\/div>\n\t\t\t<!-- End sticky testimonials item -->\n\t\t\t\t\t\t<!-- Begin sticky testimonials item -->\n\t\t\t<div class=\"tt-stte-item\">\n\t\t\t\t<div class=\"tt-stte-card cursor-alter\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"tt-stte-card-caption\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-stte-text\">\n\t\t\t\t\t\t\"The relationship with ATENAS.ag has always been based on a high level of transparency and trust. I believe this is one of the main reasons why we are able to collaborate and act quickly in the face of unforeseen situations to deliver the best projects. The care they put into the projects and into human relationships always leaves me motivated for the next challenges together.\"\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-stte-subtext\">\n\t\t\t\t\t\t\t<a target=\"_blank\" rel=\"nofollow\" class=\"tt-link\">Isabela Corr\u00eaa \u2013 Culture Marketing Manager, Red Bull Brazil<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-stte-card-caption -->\n\t\t\t\t<\/div> <!-- \/.tt-stte-card -->\n\t\t\t<\/div>\n\t\t\t<!-- End sticky testimonials item -->\n\t\t\t\t\t\t<!-- Begin sticky testimonials item -->\n\t\t\t<div class=\"tt-stte-item\">\n\t\t\t\t<div class=\"tt-stte-card cursor-alter\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"tt-stte-card-caption\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-stte-text\">\n\t\t\t\t\t\t\u201cTransparency, trust, competence, creativity, partnership, and agility in solving unexpected situations summarize the relationship with ATENAS.ag. All of this, blended with technical expertise and care in the deliveries, consistently ensures innovative projects that are easy and enjoyable to work on.\u201d\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"tt-stte-subtext\">\n\t\t\t\t\t\t\t<a target=\"_blank\" rel=\"nofollow\" class=\"tt-link\">Carla Soares Kuty \u2013 Brand Experience &amp; Sponsorship, Volkswagen Brazil<\/a>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div> <!-- \/.tt-stte-card-caption -->\n\t\t\t\t<\/div> <!-- \/.tt-stte-card -->\n\t\t\t<\/div>\n\t\t\t<!-- End sticky testimonials item -->\n\t\t\t\t\t<\/div>\n\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d56b4c1 e-flex e-con-boxed tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"d56b4c1\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-2e254cc e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"2e254cc\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3e69c78 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"3e69c78\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6c1388f tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"6c1388f\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">OUR<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-de4b731 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"de4b731\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">a cli<font color=\"#D65D4A\">E<\/font>nts<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f4d82c8 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"f4d82c8\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-31efec3 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"31efec3\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">THEY ARE THE ONES WITH WHOM WE BUILD <br>EXPERIENCES, EVENTS, AND STORIES.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d4bc37f e-flex e-con-boxed tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"d4bc37f\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-aefae42 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"aefae42\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1043862 elementor-arrows-position-outside tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-image-carousel\" data-id=\"1043862\" data-element_type=\"widget\" data-settings=\"{&quot;slides_to_show&quot;:&quot;1&quot;,&quot;navigation&quot;:&quot;arrows&quot;,&quot;autoplay_speed&quot;:2000,&quot;speed&quot;:2000,&quot;autoplay&quot;:&quot;yes&quot;,&quot;pause_on_hover&quot;:&quot;yes&quot;,&quot;pause_on_interaction&quot;:&quot;yes&quot;,&quot;infinite&quot;:&quot;yes&quot;,&quot;effect&quot;:&quot;slide&quot;}\" data-widget_type=\"image-carousel.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-image-carousel-wrapper swiper\" role=\"region\" aria-roledescription=\"carousel\" aria-label=\"Carrossel de imagens\" dir=\"ltr\">\n\t\t\t<div class=\"elementor-image-carousel swiper-wrapper\" aria-live=\"off\">\n\t\t\t\t\t\t\t\t<div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"1 de 2\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/Logos-site.png\" alt=\"Logos site\" \/><\/figure><\/div><div class=\"swiper-slide\" role=\"group\" aria-roledescription=\"slide\" aria-label=\"2 de 2\"><figure class=\"swiper-slide-inner\"><img decoding=\"async\" class=\"swiper-slide-image\" src=\"https:\/\/atenas.ag\/wp-content\/uploads\/2025\/11\/logos-empresas2.png\" alt=\"logos empresas2\" \/><\/figure><\/div>\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-prev\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-left\" viewbox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-swiper-button elementor-swiper-button-next\" role=\"button\" tabindex=\"0\">\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-chevron-right\" viewbox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z\"><\/path><\/svg>\t\t\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5657228 e-flex e-con-boxed tt-sticky-element-no tt-sticker-scroller-no e-con e-parent\" data-id=\"5657228\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3e957fa e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"3e957fa\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-51240e7 e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"51240e7\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-814869d tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"814869d\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">TALK TO<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e288a46 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-heading\" data-id=\"e288a46\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><!-- hidden --><font color=\"#D65D4A\">U<\/font>s<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-072834c e-con-full e-flex tt-sticky-element-no tt-sticker-scroller-no e-con e-child\" data-id=\"072834c\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-02f2a15 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-html\" data-id=\"02f2a15\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!-- Bot\u00e3o circular \"Quero ser CLIENTE\" -->\n<a class=\"cta-circle\" href=\"https:\/\/atenas.ag\/en\/quero-ser-cliente\/\" aria-label=\"Quero ser cliente\">\n  <span class=\"cta-line1\">I want to be a<\/span>\n  <span class=\"cta-line2\">CLIENT<\/span>\n  <span class=\"cta-arrow\" aria-hidden=\"true\">\n    <svg viewbox=\"0 0 24 24\" width=\"22\" height=\"22\">\n      <path d=\"M4 12h14M13 6l6 6-6 6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n    <\/svg>\n  <\/span>\n<\/a>\n\n<style>\n\/* ===== BOT\u00c3O CIRCULAR \u2013 estilos isolados ===== *\/\n@font-face{\n  font-family: 'BigShoulders24pt-Light';\n  src: url('https:\/\/atenas.ag\/wp-content\/uploads\/2025\/08\/BigShoulders_24pt-Light.ttf') format('truetype');\n  font-weight: 300;\n  font-style: normal;\n  font-display: swap;\n}\n\n:root{\n  --cta-size: 190px;           \/* di\u00e2metro do c\u00edrculo reduzido *\/\n  --cta-color: #D65D4A;        \/* cor do tra\u00e7o\/texto *\/\n  --cta-hover-text: #FFF0D7;   \/* cor do texto no hover *\/\n  --cta-font: 'BigShoulders24pt-Light', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;\n}\n\na.cta-circle{\n  font-family: var(--cta-font);\n  display: inline-flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  width: var(--cta-size);\n  height: var(--cta-size);\n  border-radius: 50%;\n  border: 2.5px solid var(--cta-color);\n  color: var(--cta-color);\n  text-decoration: none;\n  background: transparent;  \/* fundo transparente *\/\n  line-height: 1.1;\n  gap: 8px;\n  transition: all .18s ease;\n  box-sizing: border-box;\n  text-align: center;\n}\n\na.cta-circle .cta-line1{\n  font-size: 18px;\n  letter-spacing: .3px;\n}\n\na.cta-circle .cta-line2{\n  font-size: 32px;\n  letter-spacing: .5px;\n}\n\na.cta-circle .cta-arrow{\n  display: inline-flex;\n  margin-top: 4px;\n}\n\n\/* Hover\/foco acess\u00edvel *\/\na.cta-circle:hover,\na.cta-circle:focus-visible{\n  transform: translateY(-2px);\n  background: var(--cta-color);     \/* fundo laranja *\/\n  color: var(--cta-hover-text);     \/* texto creme *\/\n  outline: none;\n}\na.cta-circle:hover svg path {\n  stroke: var(--cta-hover-text);\n}\n\n\/* Responsivo *\/\n@media (max-width: 480px){\n  :root{ --cta-size: 160px; }\n  a.cta-circle .cta-line1{ font-size: 16px; }\n  a.cta-circle .cta-line2{ font-size: 26px; }\n}\n<\/style>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-848bb90 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-html\" data-id=\"848bb90\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!-- Bot\u00e3o circular \"Quero ser CLIENTE\" -->\n<a class=\"cta-circle\" href=\"https:\/\/atenas.ag\/en\/quero-ser-fornecedor\/\" aria-label=\"Quero ser cliente\">\n  <span class=\"cta-line1\">I want to be a<\/span>\n  <span class=\"cta-line2\">SUPPLIER<\/span>\n  <span class=\"cta-arrow\" aria-hidden=\"true\">\n    <svg viewbox=\"0 0 24 24\" width=\"22\" height=\"22\">\n      <path d=\"M4 12h14M13 6l6 6-6 6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n    <\/svg>\n  <\/span>\n<\/a>\n\n<style>\n\/* ===== BOT\u00c3O CIRCULAR \u2013 estilos isolados ===== *\/\n@font-face{\n  font-family: 'BigShoulders24pt-Light';\n  src: url('https:\/\/atenas.ag\/wp-content\/uploads\/2025\/08\/BigShoulders_24pt-Light.ttf') format('truetype');\n  font-weight: 300;\n  font-style: normal;\n  font-display: swap;\n}\n\n:root{\n  --cta-size: 190px;           \/* di\u00e2metro do c\u00edrculo reduzido *\/\n  --cta-color: #D65D4A;        \/* cor do tra\u00e7o\/texto *\/\n  --cta-hover-text: #FFF0D7;   \/* cor do texto no hover *\/\n  --cta-font: 'BigShoulders24pt-Light', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;\n}\n\na.cta-circle{\n  font-family: var(--cta-font);\n  display: inline-flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  width: var(--cta-size);\n  height: var(--cta-size);\n  border-radius: 50%;\n  border: 2.5px solid var(--cta-color);\n  color: var(--cta-color);\n  text-decoration: none;\n  background: transparent;  \/* fundo transparente *\/\n  line-height: 1.1;\n  gap: 8px;\n  transition: all .18s ease;\n  box-sizing: border-box;\n  text-align: center;\n}\n\na.cta-circle .cta-line1{\n  font-size: 18px;\n  letter-spacing: .3px;\n}\n\na.cta-circle .cta-line2{\n  font-size: 32px;\n  letter-spacing: .5px;\n}\n\na.cta-circle .cta-arrow{\n  display: inline-flex;\n  margin-top: 4px;\n}\n\n\/* Hover\/foco acess\u00edvel *\/\na.cta-circle:hover,\na.cta-circle:focus-visible{\n  transform: translateY(-2px);\n  background: var(--cta-color);     \/* fundo laranja *\/\n  color: var(--cta-hover-text);     \/* texto creme *\/\n  outline: none;\n}\na.cta-circle:hover svg path {\n  stroke: var(--cta-hover-text);\n}\n\n\/* Responsivo *\/\n@media (max-width: 480px){\n  :root{ --cta-size: 160px; }\n  a.cta-circle .cta-line1{ font-size: 16px; }\n  a.cta-circle .cta-line2{ font-size: 26px; }\n}\n<\/style>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-92edee5 tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-html\" data-id=\"92edee5\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!-- Bot\u00e3o circular \"Quero ser CLIENTE\" -->\n<a class=\"cta-circle\" href=\"https:\/\/atenas.ag\/en\/quero-ser-colaborador\/\" aria-label=\"Quero ser cliente\">\n  <span class=\"cta-line1\">I want to be a<\/span>\n  <span class=\"cta-line2\">COLLABORATOR<\/span>\n  <span class=\"cta-arrow\" aria-hidden=\"true\">\n    <svg viewbox=\"0 0 24 24\" width=\"22\" height=\"22\">\n      <path d=\"M4 12h14M13 6l6 6-6 6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n    <\/svg>\n  <\/span>\n<\/a>\n\n<style>\n\/* ===== BOT\u00c3O CIRCULAR \u2013 estilos isolados ===== *\/\n@font-face{\n  font-family: 'BigShoulders24pt-Light';\n  src: url('https:\/\/atenas.ag\/wp-content\/uploads\/2025\/08\/BigShoulders_24pt-Light.ttf') format('truetype');\n  font-weight: 300;\n  font-style: normal;\n  font-display: swap;\n}\n\n:root{\n  --cta-size: 190px;           \/* di\u00e2metro do c\u00edrculo reduzido *\/\n  --cta-color: #D65D4A;        \/* cor do tra\u00e7o\/texto *\/\n  --cta-hover-text: #FFF0D7;   \/* cor do texto no hover *\/\n  --cta-font: 'BigShoulders24pt-Light', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;\n}\n\na.cta-circle{\n  font-family: var(--cta-font);\n  display: inline-flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  width: var(--cta-size);\n  height: var(--cta-size);\n  border-radius: 50%;\n  border: 2.5px solid var(--cta-color);\n  color: var(--cta-color);\n  text-decoration: none;\n  background: transparent;  \/* fundo transparente *\/\n  line-height: 1.1;\n  gap: 8px;\n  transition: all .18s ease;\n  box-sizing: border-box;\n  text-align: center;\n}\n\na.cta-circle .cta-line1{\n  font-size: 18px;\n  letter-spacing: .3px;\n}\n\na.cta-circle .cta-line2{\n  font-size: 32px;\n  letter-spacing: .5px;\n}\n\na.cta-circle .cta-arrow{\n  display: inline-flex;\n  margin-top: 4px;\n}\n\n\/* Hover\/foco acess\u00edvel *\/\na.cta-circle:hover,\na.cta-circle:focus-visible{\n  transform: translateY(-2px);\n  background: var(--cta-color);     \/* fundo laranja *\/\n  color: var(--cta-hover-text);     \/* texto creme *\/\n  outline: none;\n}\na.cta-circle:hover svg path {\n  stroke: var(--cta-hover-text);\n}\n\n\/* Responsivo *\/\n@media (max-width: 480px){\n  :root{ --cta-size: 160px; }\n  a.cta-circle .cta-line1{ font-size: 16px; }\n  a.cta-circle .cta-line2{ font-size: 26px; }\n}\n<\/style>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-99d0daf tt-sticky-element-no tt-sticker-scroller-no elementor-widget elementor-widget-html\" data-id=\"99d0daf\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<!-- Bot\u00e3o circular \"Quero entrar EM CONTATO\" (FILLED) -->\n<a class=\"cta-circle-filled\" href=\"https:\/\/atenas.ag\/en\/pautas-para-imprensa\/\" aria-label=\"Quero entrar em contato\">\n  <span class=\"cta-line1\">Press<\/span>\n  <span class=\"cta-line2\">INQUIRIES<\/span>\n  <span class=\"cta-arrow\" aria-hidden=\"true\">\n    <svg viewbox=\"0 0 24 24\" width=\"22\" height=\"22\">\n      <path d=\"M4 12h14M13 6l6 6-6 6\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"\/>\n    <\/svg>\n  <\/span>\n<\/a>\n\n<style>\n\/* Fonte (pode repetir em cada HTML) *\/\n@font-face{\n  font-family: 'BigShoulders24pt-Light';\n  src: url('https:\/\/atenas.ag\/wp-content\/uploads\/2025\/08\/BigShoulders_24pt-Light.ttf') format('truetype');\n  font-weight: 300; font-style: normal; font-display: swap;\n}\n\n\/* Vari\u00e1veis s\u00f3 deste bot\u00e3o *\/\n:root{\n  --cta-size-filled: 190px;\n  --cta-bg-filled: #D65D4A;     \/* fundo vermelho-terra *\/\n  --cta-text-filled: #ffffff;   \/* texto branco *\/\n  --cta-font: 'BigShoulders24pt-Light', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;\n}\n\n\/* Estilo FILLED (preenchido) *\/\na.cta-circle-filled{\n  font-family: var(--cta-font);\n  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;\n  width: var(--cta-size-filled); height: var(--cta-size-filled);\n  border-radius: 50%;\n  border: 2.5px solid var(--cta-bg-filled);\n  background: var(--cta-bg-filled);\n  color: var(--cta-text-filled);\n  text-decoration: none; text-align: center; line-height: 1.1; gap: 8px;\n  transition: transform .18s ease;\n  box-sizing: border-box;\n}\n\na.cta-circle-filled .cta-line1{ font-size: 18px; letter-spacing: .3px; }\na.cta-circle-filled .cta-line2{ font-size: 32px; letter-spacing: .5px; }\na.cta-circle-filled .cta-arrow{ display: inline-flex; margin-top: 4px; }\na.cta-circle-filled svg path{ stroke: var(--cta-text-filled); }\n\n\/* Hover: s\u00f3 movimento (mant\u00e9m preenchido) *\/\na.cta-circle-filled:hover,\na.cta-circle-filled:focus-visible{\n  transform: translateY(-2px);\n  outline: none;\n}\n\n\/* Responsivo *\/\n@media (max-width: 480px){\n  :root{ --cta-size-filled: 160px; }\n  a.cta-circle-filled .cta-line1{ font-size: 16px; }\n  a.cta-circle-filled .cta-line2{ font-size: 26px; }\n}\n<\/style>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>CONSTRUINDO marCas ATRAV\u00c9S DE EXPERI\u00caNCIAS Tiktok Linkedin Youtube Instagram A ATENAS.ag acredita no poder que&#8230;<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-5914","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/atenas.ag\/en\/wp-json\/wp\/v2\/pages\/5914","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atenas.ag\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/atenas.ag\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/atenas.ag\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atenas.ag\/en\/wp-json\/wp\/v2\/comments?post=5914"}],"version-history":[{"count":180,"href":"https:\/\/atenas.ag\/en\/wp-json\/wp\/v2\/pages\/5914\/revisions"}],"predecessor-version":[{"id":6907,"href":"https:\/\/atenas.ag\/en\/wp-json\/wp\/v2\/pages\/5914\/revisions\/6907"}],"wp:attachment":[{"href":"https:\/\/atenas.ag\/en\/wp-json\/wp\/v2\/media?parent=5914"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}