{"id":347,"date":"2024-10-04T14:41:41","date_gmt":"2024-10-04T17:41:41","guid":{"rendered":"https:\/\/wp.ufpel.edu.br\/esporte\/?page_id=347"},"modified":"2025-03-14T17:15:08","modified_gmt":"2025-03-14T20:15:08","slug":"basquete-feminino","status":"publish","type":"page","link":"https:\/\/wp.ufpel.edu.br\/esporte\/basquete-feminino\/","title":{"rendered":"Projetos"},"content":{"rendered":"\n<div class=\"breadcrumb-container\">\n    <nav class=\"breadcrumb\">\n        <a href=\"https:\/\/wp.ufpel.edu.br\/esporte\/\">In\u00edcio<\/a> &gt; \n        <span>Projetos<\/span>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"container\">\n    <!-- T\u00edtulo do projeto Basquetebol Feminino -->\n    <div class=\"project-title\" onclick=\"toggleBasqueteFemininoContent()\">\n        Basquetebol Feminino\n        <span id=\"basquete-feminino-symbol\">+<\/span> <!-- S\u00edmbolo para estado fechado -->\n    <\/div>\n\n    <!-- Conte\u00fado do projeto Basquetebol Feminino -->\n    <div id=\"basquete-feminino-content\" class=\"project-content\" style=\"display: none;\">\n        <div class=\"carousel\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/01.jpg\" alt=\"Basquetebol Feminino 1\" class=\"active\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Imagem-do-WhatsApp-de-2024-10-06-as-21.15.31_dcd8386a-copiar.jpg\" alt=\"Basquetebol Feminino 2\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/04.jpg\" alt=\"Basquetebol Feminino 3\">\n\n            <button class=\"carousel-button prev\" onclick=\"changeBasqueteFemininoSlide(-1)\">&#10094;<\/button>\n            <button class=\"carousel-button next\" onclick=\"changeBasqueteFemininoSlide(1)\">&#10095;<\/button>\n        <\/div>\n\n        <div class=\"text-block\">\n            <p><strong>Coordena\u00e7\u00e3o:<\/strong> Prof. Mario Renato de Azevedo J\u00fanior<\/p>\n            <p><strong>P\u00fablico-alvo:<\/strong> Atletas de basquetebol feminino, com idade de 15 anos ou mais, da UFPel e da comunidade em geral<\/p>\n            <p><strong>Dias e hor\u00e1rios de treinos:<\/strong> Ter\u00e7as e quintas-feiras, das 20h \u00e0s 22h<\/p>\n            <p><strong>Local:<\/strong> Gin\u00e1sio do CESC-UFPel<\/p>\n            <p><strong>Contato:<\/strong> <a href=\"mailto:mrazevedojr@gmail.com\">mrazevedojr@gmail.com<\/a><\/p>\n                   <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    let currentBasqueteFemininoSlide = 0;\n    const basqueteFemininoSlides = document.querySelectorAll('#basquete-feminino-content .carousel img');\n\n    function showBasqueteFemininoSlide(index) {\n        basqueteFemininoSlides.forEach((slide, i) => {\n            slide.classList.toggle('active', i === index);\n        });\n    }\n\n    function changeBasqueteFemininoSlide(direction) {\n        currentBasqueteFemininoSlide = (currentBasqueteFemininoSlide + direction + basqueteFemininoSlides.length) % basqueteFemininoSlides.length;\n        showBasqueteFemininoSlide(currentBasqueteFemininoSlide);\n    }\n\n    function toggleBasqueteFemininoContent() {\n        const content = document.getElementById('basquete-feminino-content');\n        const symbol = document.getElementById('basquete-feminino-symbol');\n\n        if (content.style.display === \"none\" || content.style.display === \"\") {\n            content.style.display = \"block\";\n            showBasqueteFemininoSlide(currentBasqueteFemininoSlide); \/\/ Mostra o primeiro slide ao abrir\n            symbol.textContent = \"\u2212\"; \/\/ Muda para o s\u00edmbolo de fechado\n        } else {\n            content.style.display = \"none\";\n            symbol.textContent = \"+\"; \/\/ Muda para o s\u00edmbolo de aberto\n        }\n    }\n<\/script>\n\n<style>\n    .project-title {\n        background: #e43c15; \/* Cor de fundo do t\u00edtulo *\/\n        color: #fff;\n        padding: 10px 15px; \/* Ajustado para melhor espa\u00e7amento *\/\n        cursor: pointer;\n        text-align: left; \/* Alinhado \u00e0 esquerda *\/\n        transition: background 0.3s;\n        max-width: 600px; \/* Largura m\u00e1xima do cabe\u00e7alho *\/\n        margin-bottom: 10px; \/* Espa\u00e7amento entre os cabe\u00e7alhos *\/\n    }\n\n    .project-title:hover {\n        background: #d9350c;\n    }\n\n    .project-content {\n        display: none;\n        margin-top: 20px;\n        max-width: 600px; \/* Largura m\u00e1xima do conte\u00fado *\/\n    }\n\n    .carousel {\n        position: relative;\n        max-width: 100%;\n        margin-bottom: 10px;\n        overflow: hidden;\n    }\n\n    .carousel img {\n        width: 100%;\n        max-height: 300px; \/* Altura m\u00e1xima para as imagens *\/\n        display: none;\n        border-radius: 10px;\n    }\n\n    .carousel img.active {\n        display: block;\n    }\n\n    .text-block {\n        max-width: 600px;\n    }\n\n    .text-block p {\n        margin: 0;\n    }\n\n    .carousel-button {\n        position: absolute;\n        top: 50%;\n        transform: translateY(-50%);\n        background-color: rgba(0, 0, 0, 0.5);\n        color: white;\n        border: none;\n        cursor: pointer;\n        padding: 10px;\n        font-size: 18px;\n    }\n\n    .prev {\n        left: 10px;\n    }\n\n    .next {\n        right: 10px;\n    }\n<\/style>\n\n\n\n<div class=\"container\">\n    <div class=\"project-title\" onclick=\"toggleProjectContent()\">\n        Basquete Comunit\u00e1rio\n        <span id=\"toggle-symbol\">+<\/span>\n    <\/div>\n\n    <div id=\"project-content\" class=\"project-content\" style=\"display: none;\">\n        <div class=\"carousel\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/basquete-masculino-.jpg\" alt=\"Basquete Comunit\u00e1rio 1\" class=\"active\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/basquete-masculino-II-e1728651450658.jpg\" alt=\"Basquete Comunit\u00e1rio 2\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/basquete-masculino-III-e1728651566399.jpg\" alt=\"Basquete Comunit\u00e1rio 3\">\n            <button class=\"carousel-button prev\" onclick=\"changeSlide(-1)\">&#10094;<\/button>\n            <button class=\"carousel-button next\" onclick=\"changeSlide(1)\">&#10095;<\/button>\n        <\/div>\n\n        <div class=\"text-block\">\n            <p>O projeto <strong>Basquete Comunit\u00e1rio na UFPEL<\/strong> visa integrar a comunidade atrav\u00e9s da pr\u00e1tica do basquete, oferecendo categorias para adultos e sub-18. Os treinos s\u00e3o realizados no Gin\u00e1sio do CESC-UFPel, \u00e0s segundas, quartas e sextas-feiras das 21:00h \u00e0s 23h e nas ter\u00e7as e quintas-feiras das 18:00h \u00e0s 19:00h com a equipe sub-18.<\/p>\n            <p><strong>Coordena\u00e7\u00e3o:<\/strong> Prof. Marcelo Olivera Cavalli<\/p>\n            <p><strong>Respons\u00e1vel t\u00e9cnico:<\/strong> Prof. Paulo Vicente Burin de Barros Correia<\/p>\n            <p><strong>Contatos:<\/strong> <a href=\"mailto:paulinho.di3@gmail.com\">paulinho.di3@gmail.com<\/a>, <a href=\"mailto:maltcavalli@gmail.com\">maltcavalli@gmail.com<\/a><\/p>\n            <p><strong>Rede social:<\/strong> <a href=\"https:\/\/www.instagram.com\/basqueteufpel\" target=\"_blank\" rel=\"noopener\">@basqueteufpel<\/a><\/p>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    let currentSlide = 0;\n    const slides = document.querySelectorAll('#project-content .carousel img');\n\n    function showSlide(index) {\n        slides.forEach((slide, i) => {\n            slide.classList.toggle('active', i === index);\n        });\n    }\n\n    function changeSlide(direction) {\n        currentSlide = (currentSlide + direction + slides.length) % slides.length;\n        showSlide(currentSlide);\n    }\n\n    function toggleProjectContent() {\n        const content = document.getElementById('project-content');\n        const symbol = document.getElementById('toggle-symbol');\n\n        if (content.style.display === \"none\" || content.style.display === \"\") {\n            content.style.display = \"block\";\n            showSlide(currentSlide);\n            symbol.textContent = \"\u2212\";\n        } else {\n            content.style.display = \"none\";\n            symbol.textContent = \"+\";\n        }\n    }\n<\/script>\n\n<style>\n    .project-title {\n        background: #e43c15;\n        color: #fff;\n        padding: 10px 15px;\n        cursor: pointer;\n        text-align: left;\n        transition: background 0.3s;\n        max-width: 600px;\n        margin-bottom: 10px;\n    }\n\n    .project-title:hover {\n        background: #d9350c;\n    }\n\n    .project-content {\n        display: none;\n        margin-top: 20px;\n        max-width: 600px;\n    }\n\n    .carousel {\n        position: relative;\n        max-width: 100%;\n        margin-bottom: 10px;\n        overflow: hidden;\n    }\n\n    .carousel img {\n        width: 100%;\n        max-height: 300px;\n        display: none;\n        border-radius: 10px;\n    }\n\n    .carousel img.active {\n        display: block;\n    }\n\n    .text-block {\n        max-width: 600px;\n    }\n\n    .text-block p {\n        margin: 0;\n    }\n\n    .carousel-button {\n        position: absolute;\n        top: 50%;\n        transform: translateY(-50%);\n        background-color: rgba(0, 0, 0, 0.5);\n        color: white;\n        border: none;\n        cursor: pointer;\n        padding: 10px;\n        font-size: 18px;\n    }\n\n    .prev {\n        left: 10px;\n    }\n\n    .next {\n        right: 10px;\n    }\n<\/style>\n\n\n\n<div class=\"container\">\n    <!-- T\u00edtulo do projeto Voleibol -->\n    <div class=\"project-title\" onclick=\"toggleVolleyballContent()\">\n        Voleibol Masculino\n        <span id=\"volleyball-symbol\">+<\/span> <!-- S\u00edmbolo para estado fechado -->\n    <\/div>\n\n    <!-- Conte\u00fado do projeto Voleibol -->\n    <div id=\"volleyball-content\" class=\"project-content\" style=\"display: none;\">\n        <div class=\"carousel\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Imagem-do-WhatsApp-de-2024-10-04-as-18.59.20_bf4cd3af-scaled-e1728504196112.jpg\" alt=\"Voleibol Masculino 1\" class=\"active\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Imagem-do-WhatsApp-de-2024-10-04-as-18.59.22_3037d94c-scaled-e1728504252108.jpg\" alt=\"Voleibol Masculino 2\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Imagem-do-WhatsApp-de-2024-10-04-as-18.59.19_c3263d72-scaled-e1728504157484.jpg\" alt=\"Voleibol Masculino 3\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Imagem-do-WhatsApp-de-2024-10-04-as-18.59.22_f6c358e8-scaled-e1728504483843.jpg\" alt=\"Voleibol Masculino 4\">\n           \n            <button class=\"carousel-button prev\" onclick=\"changeVolleyballSlide(-1)\">&#10094;<\/button>\n            <button class=\"carousel-button next\" onclick=\"changeVolleyballSlide(1)\">&#10095;<\/button>\n        <\/div>\n\n        <div class=\"text-block\">\n            <p>O projeto <strong>Equipe de Voleibol Masculino da UFPel<\/strong> busca promover a pr\u00e1tica do voleibol entre os alunos da universidade, oferecendo treinos regulares e a oportunidade de desenvolver habilidades no esporte.<\/p>\n            <p><strong>Coordena\u00e7\u00e3o:<\/strong> Prof. Dr. Rodolfo Novellino Benda<\/p>\n            <p><strong>T\u00e9cnico da equipe:<\/strong> Profa. Me. Ana Val\u00e9ria Lima Reis<\/p>\n            <p><strong>P\u00fablico-alvo:<\/strong> Alunos da UFPEL<\/p>\n            <p><strong>Dias e hor\u00e1rios de treinos:<\/strong> Quartas e sextas-feiras, das 19 h \u00e0s 21 h<\/p>\n            <p><strong>Local:<\/strong> Gin\u00e1sio da ESEF-UFPel<\/p>\n            <p><strong>Contato:<\/strong> <a href=\"mailto:anavalerialimars@gmail.com\">anavalerialimars@gmail.com<\/a><\/p>\n            <p><strong>Rede social:<\/strong> <a href=\"https:\/\/www.instagram.com\/voleibolufpel\" target=\"_blank\" rel=\"noopener\">@voleibolufpel<\/a><\/p>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    let currentVolleyballSlide = 0;\n    const volleyballSlides = document.querySelectorAll('#volleyball-content .carousel img');\n\n    function showVolleyballSlide(index) {\n        volleyballSlides.forEach((slide, i) => {\n            slide.classList.toggle('active', i === index);\n        });\n    }\n\n    function changeVolleyballSlide(direction) {\n        currentVolleyballSlide = (currentVolleyballSlide + direction + volleyballSlides.length) % volleyballSlides.length;\n        showVolleyballSlide(currentVolleyballSlide);\n    }\n\n    function toggleVolleyballContent() {\n        const content = document.getElementById('volleyball-content');\n        const symbol = document.getElementById('volleyball-symbol');\n\n        if (content.style.display === \"none\" || content.style.display === \"\") {\n            content.style.display = \"block\";\n            showVolleyballSlide(currentVolleyballSlide); \/\/ Mostra o primeiro slide do voleibol ao abrir\n            symbol.textContent = \"\u2212\"; \/\/ Muda para o s\u00edmbolo de fechado\n        } else {\n            content.style.display = \"none\";\n            symbol.textContent = \"+\"; \/\/ Muda para o s\u00edmbolo de aberto\n        }\n    }\n<\/script>\n\n<style>\n    .project-title {\n        background: #e43c15; \/* Cor de fundo do t\u00edtulo *\/\n        color: #fff;\n        padding: 10px 15px; \/* Ajustado para melhor espa\u00e7amento *\/\n        cursor: pointer;\n        text-align: left; \/* Alinhado \u00e0 esquerda *\/\n        transition: background 0.3s;\n        max-width: 600px; \/* Largura m\u00e1xima do cabe\u00e7alho *\/\n        margin-bottom: 10px; \/* Espa\u00e7amento entre os cabe\u00e7alhos *\/\n    }\n\n    .project-title:hover {\n        background: #d9350c;\n    }\n\n    .project-content {\n        display: none;\n        margin-top: 20px;\n        max-width: 600px; \/* Largura m\u00e1xima do conte\u00fado *\/\n    }\n\n    .carousel {\n        position: relative;\n        max-width: 100%;\n        margin-bottom: 10px;\n        overflow: hidden;\n    }\n\n    .carousel img {\n        width: 100%;\n        max-height: 300px; \/* Altura m\u00e1xima para as imagens *\/\n        display: none;\n        border-radius: 10px;\n    }\n\n    .carousel img.active {\n        display: block;\n    }\n\n    .text-block {\n        max-width: 600px;\n    }\n\n    .text-block p {\n        margin: 0;\n    }\n\n    .carousel-button {\n        position: absolute;\n        top: 50%;\n        transform: translateY(-50%);\n        background-color: rgba(0, 0, 0, 0.5);\n        color: white;\n        border: none;\n        cursor: pointer;\n        padding: 10px;\n        font-size: 18px;\n    }\n\n    .prev {\n        left: 10px;\n    }\n\n    .next {\n        right: 10px;\n    }\n<\/style>\n\n\n\n<div class=\"container\">\n    <!-- T\u00edtulo do projeto Voleibol Feminino -->\n    <div class=\"project-title\" onclick=\"toggleVolleyballFemininoContent()\">\n         Voleibol Feminino\n        <span id=\"volleyball-feminino-symbol\">+<\/span> <!-- S\u00edmbolo para estado fechado -->\n    <\/div>\n\n    <!-- Conte\u00fado do projeto Voleibol Feminino -->\n    <div id=\"volleyball-feminino-content\" class=\"project-content\" style=\"display: none;\">\n        <div class=\"carousel\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Imagem-do-WhatsApp-de-2024-10-05-as-18.38.38_2cc220da.jpg\" alt=\"Voleibol Feminino 1\" class=\"active\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/02.jpg\" alt=\"Voleibol Feminino 2\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/03-scaled.jpg\" alt=\"Voleibol Feminino 3\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Imagem-do-WhatsApp-de-2024-10-05-as-18.38.39_1ea06bf0-scaled.jpg\" alt=\"Voleibol Feminino 4\">\n\n            <button class=\"carousel-button prev\" onclick=\"changeVolleyballFemininoSlide(-1)\">&#10094;<\/button>\n            <button class=\"carousel-button next\" onclick=\"changeVolleyballFemininoSlide(1)\">&#10095;<\/button>\n        <\/div>\n\n        <div class=\"text-block\">\n            <p>O projeto <strong>ADESP Voleibol Feminino UFPEL &#8211; Equipe Universit\u00e1ria<\/strong> \u00e9 voltado para atletas de voleibol feminino que possuam v\u00ednculo com a UFPel.<\/p>\n            <p><strong>Coordena\u00e7\u00e3o:<\/strong> Prof. Fernanda de Souza Teixeira<\/p>\n            <p><strong>T\u00e9cnico(a) da equipe:<\/strong> Vitor Saraiva Jeske<\/p>\n            <p><strong>P\u00fablico-alvo:<\/strong> Atletas de voleibol feminino com v\u00ednculo \u00e0 UFPel<\/p>\n            <p><strong>Dias e hor\u00e1rios de treinos:<\/strong> Ter\u00e7as e quintas-feiras, das 18 \u00e0s 19:30h<\/p>\n            <p><strong>Local:<\/strong> Gin\u00e1sio da ESEF, Rua Lu\u00eds de Cam\u00f5es 625<\/p>\n            <p><strong>Contato:<\/strong> <a href=\"mailto:fteixeira78@gmail.com\">fteixeira78@gmail.com<\/a><\/p>\n            <p><strong>Rede social:<\/strong> <a href=\"https:\/\/www.instagram.com\/voleibolfemininoufpel\" target=\"_blank\" rel=\"noopener\">@voleibolfemininoufpel<\/a><\/p>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    let currentVolleyballFemininoSlide = 0;\n    const volleyballFemininoSlides = document.querySelectorAll('#volleyball-feminino-content .carousel img');\n\n    function showVolleyballFemininoSlide(index) {\n        volleyballFemininoSlides.forEach((slide, i) => {\n            slide.classList.toggle('active', i === index);\n        });\n    }\n\n    function changeVolleyballFemininoSlide(direction) {\n        currentVolleyballFemininoSlide = (currentVolleyballFemininoSlide + direction + volleyballFemininoSlides.length) % volleyballFemininoSlides.length;\n        showVolleyballFemininoSlide(currentVolleyballFemininoSlide);\n    }\n\n    function toggleVolleyballFemininoContent() {\n        const content = document.getElementById('volleyball-feminino-content');\n        const symbol = document.getElementById('volleyball-feminino-symbol');\n\n        if (content.style.display === \"none\" || content.style.display === \"\") {\n            content.style.display = \"block\";\n            showVolleyballFemininoSlide(currentVolleyballFemininoSlide); \/\/ Mostra o primeiro slide ao abrir\n            symbol.textContent = \"\u2212\"; \/\/ Muda para o s\u00edmbolo de fechado\n        } else {\n            content.style.display = \"none\";\n            symbol.textContent = \"+\"; \/\/ Muda para o s\u00edmbolo de aberto\n        }\n    }\n<\/script>\n\n<style>\n    .project-title {\n        background: #e43c15; \/* Cor de fundo do t\u00edtulo *\/\n        color: #fff;\n        padding: 10px 15px; \/* Ajustado para melhor espa\u00e7amento *\/\n        cursor: pointer;\n        text-align: left; \/* Alinhado \u00e0 esquerda *\/\n        transition: background 0.3s;\n        max-width: 600px; \/* Largura m\u00e1xima do cabe\u00e7alho *\/\n        margin-bottom: 10px; \/* Espa\u00e7amento entre os cabe\u00e7alhos *\/\n    }\n\n    .project-title:hover {\n        background: #d9350c;\n    }\n\n    .project-content {\n        display: none;\n        margin-top: 20px;\n        max-width: 600px; \/* Largura m\u00e1xima do conte\u00fado *\/\n    }\n\n    .carousel {\n        position: relative;\n        max-width: 100%;\n        margin-bottom: 10px;\n        overflow: hidden;\n    }\n\n    .carousel img {\n        width: 100%;\n        max-height: 300px; \/* Altura m\u00e1xima para as imagens *\/\n        display: none;\n        border-radius: 10px;\n    }\n\n    .carousel img.active {\n        display: block;\n    }\n\n    .text-block {\n        max-width: 600px;\n    }\n\n    .text-block p {\n        margin: 0;\n    }\n\n    .carousel-button {\n        position: absolute;\n        top: 50%;\n        transform: translateY(-50%);\n        background-color: rgba(0, 0, 0, 0.5);\n        color: white;\n        border: none;\n        cursor: pointer;\n        padding: 10px;\n        font-size: 18px;\n    }\n\n    .prev {\n        left: 10px;\n    }\n\n    .next {\n        right: 10px;\n    }\n<\/style>\n\n\n\n<div class=\"container\">\n    <!-- T\u00edtulo do projeto Handebol Masculino -->\n    <div class=\"project-title\" onclick=\"toggleHandebolMasculinoContent()\">\n        Handebol Masculino\n        <span id=\"handebol-masculino-symbol\">+<\/span> <!-- S\u00edmbolo para estado fechado -->\n    <\/div>\n\n    <!-- Conte\u00fado do projeto Handebol Masculino -->\n    <div id=\"handebol-masculino-content\" class=\"project-content\" style=\"display: none;\">\n        <div class=\"carousel\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Imagem-do-WhatsApp-de-2024-10-06-as-22.35.11_71ce4de6.jpg\" alt=\"Handebol Masculino 1\" class=\"active\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Imagem-do-WhatsApp-de-2024-10-06-as-22.35.12_b26e9772-scaled.jpg\" alt=\"Handebol Masculino 2\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Imagem-do-WhatsApp-de-2024-10-06-as-22.40.51_c56fe496.jpg\" alt=\"Handebol Masculino 3\">\n\n            <button class=\"carousel-button prev\" onclick=\"changeHandebolMasculinoSlide(-1)\">&#10094;<\/button>\n            <button class=\"carousel-button next\" onclick=\"changeHandebolMasculinoSlide(1)\">&#10095;<\/button>\n        <\/div>\n\n        <div class=\"text-block\">\n            <p><strong>Coordena\u00e7\u00e3o:<\/strong> Prof. Mario Renato de Azevedo J\u00fanior<\/p>\n            <p><strong>T\u00e9cnico(a) da equipe:<\/strong> Eduardo Guimar\u00e3es<\/p>\n            <p><strong>P\u00fablico-alvo:<\/strong> Atletas de handebol masculino com idade de 18 anos ou mais, da UFPel e da comunidade em geral<\/p>\n            <p><strong>Dias e hor\u00e1rios de treinos:<\/strong> Segundas das 20h \u00e0s 22h e s\u00e1bados das 8h \u00e0s 10h<\/p>\n            <p><strong>Local:<\/strong> Gin\u00e1sio da ESEF<\/p>\n            <p><strong>Contato:<\/strong> <a href=\"mailto:mrazevedojr@gmail.com\">mrazevedojr@gmail.com<\/a><\/p>\n            <p><strong>Rede social:<\/strong> <a href=\"https:\/\/www.instagram.com\/handebolufpel\" target=\"_blank\" rel=\"noopener\">@handebolufpel<\/a><\/p>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    let currentHandebolMasculinoSlide = 0;\n    const handebolMasculinoSlides = document.querySelectorAll('#handebol-masculino-content .carousel img');\n\n    function showHandebolMasculinoSlide(index) {\n        handebolMasculinoSlides.forEach((slide, i) => {\n            slide.classList.toggle('active', i === index);\n        });\n    }\n\n    function changeHandebolMasculinoSlide(direction) {\n        currentHandebolMasculinoSlide = (currentHandebolMasculinoSlide + direction + handebolMasculinoSlides.length) % handebolMasculinoSlides.length;\n        showHandebolMasculinoSlide(currentHandebolMasculinoSlide);\n    }\n\n    function toggleHandebolMasculinoContent() {\n        const content = document.getElementById('handebol-masculino-content');\n        const symbol = document.getElementById('handebol-masculino-symbol');\n\n        if (content.style.display === \"none\" || content.style.display === \"\") {\n            content.style.display = \"block\";\n            showHandebolMasculinoSlide(currentHandebolMasculinoSlide); \/\/ Mostra o primeiro slide ao abrir\n            symbol.textContent = \"\u2212\"; \/\/ Muda para o s\u00edmbolo de fechado\n        } else {\n            content.style.display = \"none\";\n            symbol.textContent = \"+\"; \/\/ Muda para o s\u00edmbolo de aberto\n        }\n    }\n<\/script>\n\n<style>\n    .project-title {\n        background: #e43c15; \/* Cor de fundo do t\u00edtulo *\/\n        color: #fff;\n        padding: 10px 15px; \/* Ajustado para melhor espa\u00e7amento *\/\n        cursor: pointer;\n        text-align: left; \/* Alinhado \u00e0 esquerda *\/\n        transition: background 0.3s;\n        max-width: 600px; \/* Largura m\u00e1xima do cabe\u00e7alho *\/\n        margin-bottom: 10px; \/* Espa\u00e7amento entre os cabe\u00e7alhos *\/\n    }\n\n    .project-title:hover {\n        background: #d9350c;\n    }\n\n    .project-content {\n        display: none;\n        margin-top: 20px;\n        max-width: 600px; \/* Largura m\u00e1xima do conte\u00fado *\/\n    }\n\n    .carousel {\n        position: relative;\n        max-width: 100%;\n        margin-bottom: 10px;\n        overflow: hidden;\n    }\n\n    .carousel img {\n        width: 100%;\n        max-height: 300px; \/* Altura m\u00e1xima para as imagens *\/\n        display: none;\n        border-radius: 10px;\n    }\n\n    .carousel img.active {\n        display: block;\n    }\n\n    .text-block {\n        max-width: 600px;\n    }\n\n    .text-block p {\n        margin: 0;\n    }\n\n    .carousel-button {\n        position: absolute;\n        top: 50%;\n        transform: translateY(-50%);\n        background-color: rgba(0, 0, 0, 0.5);\n        color: white;\n        border: none;\n        cursor: pointer;\n        padding: 10px;\n        font-size: 18px;\n    }\n\n    .prev {\n        left: 10px;\n    }\n\n    .next {\n        right: 10px;\n    }\n<\/style>\n\n\n\n<div class=\"container\">\n    <div class=\"project-title\" onclick=\"toggleHandebolFemininoContent()\">\n        Handebol Feminino\n        <span id=\"handebol-feminino-symbol\">+<\/span>\n    <\/div>\n\n    <div id=\"handebol-feminino-content\" class=\"project-content\" style=\"display: none;\">\n        <div class=\"carousel\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/handebol-feminino-II-e1728652300290.jpg\" alt=\"Handebol Feminino 1\" class=\"active\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/handebol-feminino-I-e1728652272992.jpg\" alt=\"Handebol Feminino 2\">\n\n            <button class=\"carousel-button prev\" onclick=\"changeHandebolFemininoSlide(-1)\">&#10094;<\/button>\n            <button class=\"carousel-button next\" onclick=\"changeHandebolFemininoSlide(1)\">&#10095;<\/button>\n        <\/div>\n\n        <div class=\"text-block\">\n            <p><strong>Coordena\u00e7\u00e3o:<\/strong> Prof. Mario Renato de Azevedo J\u00fanior<\/p>\n            <p><strong>T\u00e9cnicos:<\/strong> Pietra Cazeiro Corr\u00eaa e Jeremias Fick Porto<\/p>\n            <p><strong>P\u00fablico-alvo:<\/strong> Atletas de handebol feminino, com idade de 16 anos ou mais, da UFPel e da comunidade em geral<\/p>\n            <p><strong>Dias e hor\u00e1rios de treinos:<\/strong> Quintas-feiras, das 20:40 \u00e0s 22:30h<\/p>\n            <p><strong>Local:<\/strong> Gin\u00e1sio da ESEF-UFPel<\/p>\n            <p><strong>Contato:<\/strong> <a href=\"mailto:pietraccorrea@gmail.com\">pietraccorrea@gmail.com<\/a><\/p>\n            <p><strong>Rede social:<\/strong> <a href=\"https:\/\/www.instagram.com\/handebolufpel\" target=\"_blank\" rel=\"noopener\">@handebolufpel<\/a><\/p>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    let currentHandebolFemininoSlide = 0;\n    const handebolFemininoSlides = document.querySelectorAll('#handebol-feminino-content .carousel img');\n\n    function showHandebolFemininoSlide(index) {\n        handebolFemininoSlides.forEach((slide, i) => {\n            slide.classList.toggle('active', i === index);\n        });\n    }\n\n    function changeHandebolFemininoSlide(direction) {\n        currentHandebolFemininoSlide = (currentHandebolFemininoSlide + direction + handebolFemininoSlides.length) % handebolFemininoSlides.length;\n        showHandebolFemininoSlide(currentHandebolFemininoSlide);\n    }\n\n    function toggleHandebolFemininoContent() {\n        const content = document.getElementById('handebol-feminino-content');\n        const symbol = document.getElementById('handebol-feminino-symbol');\n\n        if (content.style.display === \"none\" || content.style.display === \"\") {\n            content.style.display = \"block\";\n            showHandebolFemininoSlide(currentHandebolFemininoSlide);\n            symbol.textContent = \"\u2212\";\n        } else {\n            content.style.display = \"none\";\n            symbol.textContent = \"+\";\n        }\n    }\n<\/script>\n\n<style>\n    .project-title {\n        background: #e43c15;\n        color: #fff;\n        padding: 10px 15px;\n        cursor: pointer;\n        text-align: left;\n        transition: background 0.3s;\n        max-width: 600px;\n    }\n\n    .project-title:hover {\n        background: #d9350c;\n    }\n\n    .project-content {\n        display: none;\n        margin-top: 20px;\n        max-width: 600px;\n    }\n\n    .carousel {\n        position: relative;\n        max-width: 100%;\n        margin-bottom: 10px;\n        overflow: hidden;\n    }\n\n    .carousel img {\n        width: 100%;\n        max-height: 300px;\n        display: none;\n        border-radius: 10px;\n    }\n\n    .carousel img.active {\n        display: block;\n    }\n\n    .text-block {\n        max-width: 600px;\n    }\n\n    .text-block p {\n        margin: 0;\n    }\n\n    .carousel-button {\n        position: absolute;\n        top: 50%;\n        transform: translateY(-50%);\n        background-color: rgba(0, 0, 0, 0.5);\n        color: white;\n        border: none;\n        cursor: pointer;\n        padding: 10px;\n        font-size: 18px;\n    }\n\n    .prev {\n        left: 10px;\n    }\n\n    .next {\n        right: 10px;\n    }\n<\/style>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"container\">\n    <!-- T\u00edtulo do projeto Futsal Masculino -->\n    <div class=\"project-title\" onclick=\"toggleFutsalContent()\">\n        Futsal UFPel\n        <span id=\"futsal-symbol\">+<\/span> <!-- S\u00edmbolo para estado fechado -->\n    <\/div>\n\n    <!-- Conte\u00fado do projeto Futsal Masculino -->\n    <div id=\"futsal-content\" class=\"project-content\" style=\"display: none;\">\n        <div class=\"carousel\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Captura-de-tela-2024-10-31-081714.png\" class=\"active\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/Captura-de-tela-2024-10-31-081819.png\">\n            <img decoding=\"async\" src=\"https:\/\/wp.ufpel.edu.br\/esporte\/files\/2024\/10\/IMG_1147-scaled.jpeg\" alt=\"Futsal UFPel 3\">\n            \n            <button class=\"carousel-button prev\" onclick=\"changeFutsalSlide(-1)\">&#10094;<\/button>\n            <button class=\"carousel-button next\" onclick=\"changeFutsalSlide(1)\">&#10095;<\/button>\n        <\/div>\n\n        <div class=\"text-block\">\n            <p><strong>Coordena\u00e7\u00e3o:<\/strong> T\u00e9cnico Desportivo M\u00e1rcio de Almeida Mendes<\/p>\n            <p><strong>T\u00e9cnico da equipe:<\/strong> Guilherme Silveira<\/p>\n            <p><strong>P\u00fablico-alvo:<\/strong> Atletas de futsal masculino, alunos da UFPel<\/p>\n            <p><strong>Dias e hor\u00e1rios de treinos:<\/strong> Segundas e quartas-feiras, das 22h \u00e0s 23:50h<\/p>\n            <p><strong>Local:<\/strong> Gin\u00e1sio da ESEF-UFPel<\/p>\n            <p><strong>Contato:<\/strong> <a href=\"mailto:marciopenha.esef@yahoo.com.br\">marciopenha.esef@yahoo.com.br<\/a><\/p>\n            <p><strong>Rede social:<\/strong> <a href=\"https:\/\/www.instagram.com\/futsalufpel\" target=\"_blank\" rel=\"noopener\">@futsalufpel<\/a><\/p>\n        <\/div>\n    <\/div>\n<\/div>\n\n<script>\n    let currentFutsalSlide = 0;\n    const futsalSlides = document.querySelectorAll('#futsal-content .carousel img');\n\n    function showFutsalSlide(index) {\n        futsalSlides.forEach((slide, i) => {\n            slide.classList.toggle('active', i === index);\n        });\n    }\n\n    function changeFutsalSlide(direction) {\n        currentFutsalSlide = (currentFutsalSlide + direction + futsalSlides.length) % futsalSlides.length;\n        showFutsalSlide(currentFutsalSlide);\n    }\n\n    function toggleFutsalContent() {\n        const content = document.getElementById('futsal-content');\n        const symbol = document.getElementById('futsal-symbol');\n\n        if (content.style.display === \"none\" || content.style.display === \"\") {\n            content.style.display = \"block\";\n            showFutsalSlide(currentFutsalSlide); \/\/ Mostra o primeiro slide ao abrir\n            symbol.textContent = \"\u2212\"; \/\/ Muda para o s\u00edmbolo de fechado\n        } else {\n            content.style.display = \"none\";\n            symbol.textContent = \"+\"; \/\/ Muda para o s\u00edmbolo de aberto\n        }\n    }\n<\/script>\n\n<style>\n    .project-title {\n        background: #e43c15;\n        color: #fff;\n        padding: 10px 15px;\n        cursor: pointer;\n        text-align: left;\n        transition: background 0.3s;\n        max-width: 600px;\n        margin-bottom: 10px;\n    }\n\n    .project-title:hover {\n        background: #d9350c;\n    }\n\n    .project-content {\n        display: none;\n        margin-top: 20px;\n        max-width: 600px;\n    }\n\n    .carousel {\n        position: relative;\n        max-width: 100%;\n        margin-bottom: 10px;\n        overflow: hidden;\n    }\n\n    .carousel img {\n        width: 100%;\n        max-height: 300px;\n        display: none;\n        border-radius: 10px;\n    }\n\n    .carousel img.active {\n        display: block;\n    }\n\n    .text-block {\n        max-width: 600px;\n    }\n\n    .text-block p {\n        margin: 0;\n    }\n\n    .carousel-button {\n        position: absolute;\n        top: 50%;\n        transform: translateY(-50%);\n        background-color: rgba(0, 0, 0, 0.5);\n        color: white;\n        border: none;\n        cursor: pointer;\n        padding: 10px;\n        font-size: 18px;\n    }\n\n    .prev {\n        left: 10px;\n    }\n\n    .next {\n        right: 10px;\n    }\n<\/style>\n","protected":false},"excerpt":{"rendered":"<p>In\u00edcio &gt; Projetos Basquetebol Feminino + &#10094; &#10095; Coordena\u00e7\u00e3o: Prof. Mario Renato de Azevedo J\u00fanior P\u00fablico-alvo: Atletas de basquetebol feminino, com idade de 15 anos ou mais, da UFPel e da comunidade em geral&#46;&#46;&#46;<\/p>\n","protected":false},"author":1253,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-347","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/wp.ufpel.edu.br\/esporte\/wp-json\/wp\/v2\/pages\/347","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wp.ufpel.edu.br\/esporte\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/wp.ufpel.edu.br\/esporte\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/wp.ufpel.edu.br\/esporte\/wp-json\/wp\/v2\/users\/1253"}],"replies":[{"embeddable":true,"href":"https:\/\/wp.ufpel.edu.br\/esporte\/wp-json\/wp\/v2\/comments?post=347"}],"version-history":[{"count":34,"href":"https:\/\/wp.ufpel.edu.br\/esporte\/wp-json\/wp\/v2\/pages\/347\/revisions"}],"predecessor-version":[{"id":602,"href":"https:\/\/wp.ufpel.edu.br\/esporte\/wp-json\/wp\/v2\/pages\/347\/revisions\/602"}],"wp:attachment":[{"href":"https:\/\/wp.ufpel.edu.br\/esporte\/wp-json\/wp\/v2\/media?parent=347"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}