Skip to content

Instantly share code, notes, and snippets.

@tiagofrancafernandes
Last active February 2, 2024 13:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tiagofrancafernandes/b946b22037e7d715f283df2187dcf808 to your computer and use it in GitHub Desktop.
Save tiagofrancafernandes/b946b22037e7d715f283df2187dcf808 to your computer and use it in GitHub Desktop.
dev-CSS-snippets
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Sequi, itaque nostrum placeat quisquam quae quasi perspiciatis incidunt tempora at omnis ipsam tempore labore, consequuntur iure et! Consequuntur, excepturi tempora officia laborum doloribus voluptates nemo doloremque! Reprehenderit odit sapiente enim dolores eveniet deserunt doloremque ut impedit omnis, repudiandae quos necessitatibus accusantium!</p>
<div>
  <input type="text">
  <button class="tooltip" data-tooltip="Resetar alterações.">reset</button>
</div>
:root {
    --pink: #ff3466;
}
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400');

body {
    background: #424B54;
    font-family: 'Source Sans Pro', sans-serif;
    overflow: hidden;
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100vh;
}

input {
    border: none;
    width: 170px;
    height: 25px;
    outline: none;
    padding-left: 10px;
}

.tooltip {
    position: relative;
    background: var(--pink);
    padding: 5px 5px;
    margin: 5px;
    font-size: 15px;
    border-radius: 100%;
    color: #FFF;
}

.tooltip:before,
.tooltip:after {
    position: absolute;
    content: '';
    opacity: 0;
    transition: all 0.4s ease;
}

.tooltip:before {
    border-width: 10px 8px 0 8px;
    border-style: solid;
    border-color: var(--pink) transparent transparent transparent;
    top: -15px;
    transform: translateY(20px);
}

.tooltip:after {
    content: attr(data-tooltip);
    background: var(--pink);
    width: 160px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    top: -75px;
    left: -10px;
    padding: 10px;
    border-radius: 5px;
    letter-spacing: 1px;
    transform: translateY(20px);
}

.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
    transform: translateY(-2px);
}

@keyframes shake {
    0% {
        transform: rotate(2deg);
    }

    50% {
        transform: rotate(-3deg);
    }

    70% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
/* #Habilitar darkmode em uma página */
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: white;
}
}
/* Via estilo: */
/*
<html class="theme-light"></html>
<html class="theme-dark"></html>
*/
:root.theme-light {
color-scheme: light;
/* custom style for light */
--custom-style: #ffffff;
}
:root.theme-dark {
color-scheme: dark;
/* custom style for dark */
--custom-style: #000000;
}
.tgo_flex{
display: flex;
justify-content: space-between;/*space-around*/
}
body {
font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
"Helvetica Neue", Helvetica, Arial, sans-serif;
}
/*----------------------------------------------------*/
/* #Habilitar darkmode em uma página */
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: white;
}
}
/*----------------------------------------------------*/
/*----------------------------------------------------*/
#Botao estilizado arredondado
{
background: #fed133 !important;
border-bottom-left-radius: 6px !important;
border-bottom-right-radius: 6px !important;
border-bottom-width: 2px !important;
border-color: rgba(0,0,0,.35) !important;
border-left-width: 2px !important;
border-right-width: 2px !important;
border-style: solid !important;
border-top-left-radius: 6px !important;
border-top-right-radius: 6px !important;
border-top-width: 2px !important;
box-shadow: 0px 4px 0px 0px rgba(14,84,159,0.14) !important;
color: rgba(0,0,0,0.62) !important;
font-family: Ubuntu !important;
font-size: 16px !important;
font-weight: 600 !important;
-webkit-letter-spacing: 0 !important;
-moz-letter-spacing: 0 !important;
-ms-letter-spacing: 0 !important;
letter-spacing: 0 !important;
line-height: 1 !important;
margin-bottom: 8px !important;
margin-left: 0px !important;
margin-right: 0px !important;
margin-top: 0px !important;
max-width: 100% !important;
padding-bottom: 14px !important;
padding-left: 12px !important;
padding-right: 12px !important;
padding-top: 14px !important;
text-transform: none !important;
-webkit-text-decoration: none !important;
text-decoration: none !important;
width: 100% !important;
cursor: pointer;
}
/*----------------------------------------------------*/
#Div fixada bottom
#unverified_bar {
position: fixed;
bottom: 0;
z-index: 999999;
background: #55b559;
color: #fff;
padding: 15px 0;
font-size: 12px;
width: 100%;
font-weight: 700;
padding-left: 40px;
padding-right: 40px;
}
/*
<div id="unverified_bar">
<p>Content</p>
</div>
*/
/*----------------------------------------------------*/
/* Remove o outline dos botoes */
button { outline: none; }
.btn:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; }
.btn:focus { outline: none !important; }
.btn:focus { box-shadow: none; }/*----------------------------------------------------*/
/*----------------------------------------------------*/
/* Key CSS Media Query Applies Classname */
None None Always .pure-u-*
sm @media screen and (min-width: 35.5em) ≥ 568px .pure-u-sm-*
md @media screen and (min-width: 48em) ≥ 768px .pure-u-md-*
lg @media screen and (min-width: 64em) ≥ 1024px .pure-u-lg-*
xl @media screen and (min-width: 80em) ≥ 1280px .pure-u-xl-*
/*----------------------------------------------------*/
@media (min-width: 1200px){
.container {
max-width: 1140px;
}
}
@media (min-width: 992px){
.container {
max-width: 960px;
}
}
@media (min-width: 768px){
.container {
max-width: 720px;
}
}
@media (min-width: 576px){
.container {
max-width: 540px;
}
}
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
*, ::after, ::before {
box-sizing: border-box;
}
/*----------------------------------------------------*/
#Estilizando o title
/*
Opção 1
#https://jsfiddle.net/z42r2vv0/2/
*/
a {
position: relative;
display: inline-block;
margin-top: 20px;
}
a[title]:hover:after {
content: attr(title);
position: absolute;
top: -100%;
left: 0;
}
/*
<a href="http://www.google.com/" title="Hello world!">
Hover over me
</a>
*/
/*
Opção 2
#https://stackoverflow.com/questions/2011142/how-to-change-the-style-of-the-title-attribute-inside-an-anchor-tag
*/
a.tip {
border-bottom: 1px dashed;
text-decoration: none
}
a.tip:hover {
cursor: help;
position: relative
}
a.tip span {
display: none
}
a.tip:hover span {
border: #c0c0c0 1px dotted;
padding: 5px 20px 5px 5px;
display: block;
z-index: 100;
background: url(../images/status-info.png) #f0f0f0 no-repeat 100% 5%;
left: 0px;
margin: 10px;
width: 250px;
position: absolute;
top: 10px;
text-decoration: none
}
/*
<a href="#" class="tip">Link<span>This is the CSS tooltip showing up when you mouse over the link</span></a>
*/
/*----------------------------------------------------*/
/*
#Comment box
<div style='
margin-top: 16px!important;
margin-bottom: 16px!important;
width: auto;
background-color: #04040424;
padding: 8px 12px;
border-left: 4px solid #4CAF50;
word-wrap: break-word;
font-family: Consolas,"courier new";
font-size: 16px;'>
</div> */
/*----------------------------------------------------*/
/* Pre code tag */
code,
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 20px;
word-break: break-all;
word-wrap: break-word;
white-space: pre;
white-space: pre-wrap;
background-color: #f5f5f5;
border: 1px solid #ccc;
border: 1px solid #00000026;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
padding: 0 3px 2px;
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
font-size: 12px;
color: #333;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
/* <pre style="position: relative;">
{
"id": "1608574934713"
}
</pre>
*/
/*----------------------------------------------------*/
/* Link hover estilizado:
https://jsfiddle.net/TiagoFranca/rc6ga8pj/ */
/*----------------------------------------------------*/
.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}
.col {
  flex: 1 0 0%;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

/* display: flex Flex-direction: row | row-reverse | column | column-reverse align-self: flex-start | flex-end | center | baseline | stretch justify-content: start | center | space-between | space-around | space-evenly */

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            grid-template-rows: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1rem;
        }

        @media (min-width: 600px) {
            .container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 599px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
    </style>
</head>

<body>
    <div class="container">
        <div>Conteudo da div 1</div>
        <div>Conteudo da div 2</div>
        <div>Conteudo da div 3</div>
        <div>Conteudo da div 4</div>
        <div>Conteudo da div 5</div>
        <div>Conteudo da div 6</div>
        <div>Conteudo da div 7</div>
        <div>Conteudo da div 8</div>
        <div>Conteudo da div 9</div>
    </div>
</body>

</html>
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Bootstrap 5.3.2</title>
        <link
            rel="stylesheet"
            href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css"
            crossorigin="anonymous"
            referrerpolicy="no-referrer"
        />
        <script>
            document.addEventListener('DOMContentLoaded', (event) => {
                if (document.querySelector('#loadingModal')) {
                    setTimeout(function() {
                        document.querySelector('#loadingModal').style.display = 'none';
                    }, 1000);
                }
            });
        </script>
    </head>
    <body>
        <div
            id="loadingModal"
            style="display: block;"
            class="modal text-center"
        >
            <div
                class="d-flex align-items-center justify-content-center bg-white"
                style="height: 100vh;"
            >
            <div>
                    <div
                        role="status"
                        class="spinner-border text-primary spinner-border-lg">
                    </div>
                </div>
            </div>
        </div>
        <h4>Lorem ipsum dolor sit amet.</h4>
        <script
            src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/js/bootstrap.bundle.min.js"
            crossorigin="anonymous"
            referrerpolicy="no-referrer"
        ></script>
    </body>
</html>
/* Ações quando a largura for MENOR que 768px */
@media (max-width: 768px) {
    #content-wrapper #content div[data-element-name="content-container"] {
        background: red !important;
    }
}

/* Ações quando a largura for MAIOR que 768px */
@media (min-width: 768px) {
    #content-wrapper #content div[data-element-name="content-container"] {
        background: blue !important;
    }
}

(MOBILE FIRST) Valores MAIOR QUE ('min-')

/* COR PADRÃO (telas pequenas)*/
body {
  background-color: peru;
}

/* COR PARA TODOS ACIMA DE 800px (como existe uma regra mais abaixo para >= 1024px, ela substuirá essa) */
@media (min-width: 800px) {
  body {
    background-color: blue;
  }
}

/* COR PARA TODOS ACIMA DE 1024px (essa substitui a de cima quando a tela for >= 1024px) */
@media (min-width: 1024px) {
  body {
    background-color: green;
  }
}

Desktop/screen first

/* COR PADRÃO (telas grandes) */
body {
  background-color: peru;
}

/* COR PARA TELAS MENORES QUE 1024px (como existe uma regra abaixo para itens menores, ela sobrescreverá essa nas telas) */
@media (max-width: 1024px) {
  body {
    background-color: green;
  }
}

/* COR PARA TELAS MENORES QUE 800px */
@media (max-width: 800px) {
  body {
    background-color: blue;
  }
}

Nota:

  • Quando o objetivo é mobile first, a regra é min-width... e a ordem segue: padrão (mobile) > do SM para o LG,
  • Quando o objetivo é desktop first, a regra é max-width... e a ordem segue: padrão (desktop) > do LG para o SM,
<style>
.commando-voting-holder .arrow-up {
width: 0;
height: 0;
border-left: 14px solid transparent;
border-right: 14px solid transparent;
border-bottom: 14px solid gray;
}
.commando-voting-holder .arrow-down {
width: 0;
height: 0;
border-left: 14px solid transparent;
border-right: 14px solid transparent;
border-top: 14px solid gray;
}
.commando-voting-holder {
width: 1.6rem;
}
.commando-voting-number {
text-align: center;
}
.commando-voting-holder .arrow-up:hover {
border-bottom: 14px solid green;
cursor: pointer;
}
.commando-voting-holder .arrow-down:hover {
border-top: 14px solid green;
cursor: pointer;
}
</style>
<div>
<a href="https://codepen.io/tiagofranca/pen/dyZgwKj">
https://codepen.io/tiagofranca/pen/dyZgwKj
</a>
</div>
<div class="commando-voting-holder">
<div class="arrow-up"></div>
<div class="commando-voting-number">10</div>
<div class="arrow-down"></div>
</div>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        /* :root {
            --color-red: #f00;
            --color-blue: #00f;
            --primary-0: #765702;
            --primary-1: #bb8a00;
            --primary-2: #e3ac11;
            --primary-3: #e8c02f;
            --primary-4: #ffd911;
            --primary-5: #ffe55f;
            --primary-6: #ebdfa1;
            --primary-7: #efebd4;
        } */
        :root {
            --color-red: #f00;
            --color-blue: #00f;
            --primary-0: #A00505;
            --primary-1: #d17272;
            --primary-2: #9f0d0d;
            --primary-3: #e8c02f;
            --primary-4: #ffd911;
            --primary-5: #cfcbb8;
            --primary-6: #c9c7bc;
            --primary-7: #efebd4;
        }

        .completed {
            --color-red: #f00;
            --color-blue: #00f;
            --primary-0: #765702;
            --primary-1: #bb8a00;
            --primary-2: #e3ac11;
            --primary-3: #e8c02f;
            --primary-4: #ffd911;
            --primary-5: #ffe55f;
            --primary-6: #ebdfa1;
            --primary-7: #efebd4;
        }

        .completed {
            opacity: 0.7;
        }

        .to-do {
            opacity: 0.7;
        }

        .doing {
            opacity: 1;
        }

        .completed:hover {
            opacity: 1;
        }

        .d-none {
            display: none;
        }
    </style>
</head>
<body>
    <div class="parent">
        <div class="child d-none" svg-file="Button game.svg">
            <svg width="164" height="159" viewBox="0 0 164 159" fill="none" xmlns="http://www.w3.org/2000/svg">
                <ellipse cx="82" cy="85" rx="66" ry="65" fill="#BB8A00"/>
                <ellipse cx="82.3624" cy="79.5007" rx="63.0343" ry="60.9128" fill="#FFD600"/>
                <rect x="121.965" y="32.3535" width="17" height="122.803" transform="rotate(47.7959 121.965 32.3535)" fill="#FFDF37"/>
                <rect x="114.996" y="27" width="4.65027" height="120.161" transform="rotate(47.7959 114.996 27)" fill="#FFDF37"/>
                <path d="M117.496 107V101.103L44.9992 101.103V107L117.496 107Z" fill="#BB8A00"/>
                <path d="M45 55.8965H75.2484C78.5621 55.8965 81.2484 58.5828 81.2484 61.8965V103.069H45V55.8965Z" fill="#FFE55F"/>
                <path d="M116.812 55.8965H87.272C83.9583 55.8965 81.272 58.5828 81.272 61.8965V102.613H116.812V55.8965Z" fill="#FFD911"/>
                <path d="M81.25 103.068V102.189C81.25 98.8753 78.5637 96.189 75.25 96.189H45.0016V103.068H81.25Z" fill="#E3AC11"/>
                <path d="M65.2412 92.2578C65.4251 92.2578 65.5742 92.1087 65.5742 91.9248V90.6253C65.5742 90.4414 65.4251 90.2923 65.2412 90.2923H48.2729C48.089 90.2923 47.9398 90.4414 47.9398 90.6253V91.9248C47.9398 92.1087 48.089 92.2578 48.2729 92.2578H65.2412Z" fill="#D19A00"/>
                <path d="M77.332 72.6035V72.3032C77.332 71.3835 76.5865 70.638 75.6668 70.638H48.2745C48.0905 70.638 47.9414 70.7871 47.9414 70.971V72.2705C47.9414 72.4544 48.0905 72.6035 48.2745 72.6035H77.332Z" fill="#D19A00"/>
                <path d="M77.332 67.6895V67.3892C77.332 66.4695 76.5865 65.7239 75.6668 65.7239H48.2745C48.0905 65.7239 47.9414 65.873 47.9414 66.057V67.3564C47.9414 67.5403 48.0905 67.6895 48.2745 67.6895H77.332Z" fill="#D19A00"/>
                <path d="M77.332 62.7754V62.4751C77.332 61.5554 76.5865 60.8099 75.6668 60.8099L48.2745 60.8099C48.0905 60.8099 47.9414 60.959 47.9414 61.1429V62.4423C47.9414 62.6263 48.0905 62.7754 48.2745 62.7754L77.332 62.7754Z" fill="#D19A00"/>
                <path d="M77.332 77.5176C77.332 76.4321 76.452 75.5521 75.3665 75.5521H48.9242C48.3814 75.5521 47.9414 75.9921 47.9414 76.5348C47.9414 77.0776 48.3814 77.5176 48.9242 77.5176H77.332Z" fill="#D19A00"/>
                <path d="M77.332 82.4316C77.332 81.3461 76.452 80.4661 75.3665 80.4661H48.9242C48.3814 80.4661 47.9414 80.9061 47.9414 81.4489C47.9414 81.9916 48.3814 82.4316 48.9242 82.4316H77.332Z" fill="#D19A00"/>
                <path d="M77.332 87.3457C77.332 86.2602 76.452 85.3802 75.3665 85.3802H48.9242C48.3814 85.3802 47.9414 85.8202 47.9414 86.3629C47.9414 86.9057 48.3814 87.3457 48.9242 87.3457H77.332Z" fill="#D19A00"/>
                <path d="M117.496 55.8965H114.557V103.069H117.496V55.8965Z" fill="#E3AC11"/>
                <path d="M81.25 103.068V102.189C81.25 98.8753 83.9363 96.189 87.25 96.189H117.498V103.068H81.25Z" fill="#E3AC11"/>
                <path d="M116.173 60.5061L108.073 68.6323H104.801V65.3503L112.902 57.2098L116.173 60.5061ZM121.031 59.3882C121.017 59.8182 120.574 60.2624 120.117 60.7067L116.516 64.3327L115.273 63.0858L118.988 59.3739L118.145 58.5283L117.188 59.4885L113.916 56.2065L116.988 53.1252C117.331 52.7812 117.888 52.7812 118.216 53.1252L120.259 55.1746C120.602 55.4899 120.602 56.0632 120.259 56.4072C119.959 56.7081 119.674 56.9948 119.674 57.2814C119.645 57.568 119.931 57.8834 120.217 58.127C120.631 58.557 121.045 58.9582 121.031 59.3882Z" fill="#BB8A00"/>
                <path d="M94.3406 72.9669V69.3253H100.436V83.793H96.3792V72.9669H94.3406Z" fill="#BB8A00"/>
                <path d="M100.446 68.6126C100.446 68.393 100.499 68.1967 100.605 68.0236C100.715 67.8504 100.869 67.7153 101.067 67.6182C101.27 67.5211 101.504 67.4726 101.77 67.4726C102.036 67.4726 102.268 67.5211 102.467 67.6182C102.669 67.7153 102.824 67.8504 102.929 68.0236C103.039 68.1967 103.094 68.393 103.094 68.6126C103.094 68.8321 103.039 69.0306 102.929 69.2079C102.819 69.381 102.663 69.5182 102.46 69.6196C102.262 69.7167 102.03 69.7652 101.764 69.7652C101.498 69.7652 101.266 69.7167 101.067 69.6196C100.869 69.5182 100.715 69.381 100.605 69.2079C100.499 69.0306 100.446 68.8321 100.446 68.6126ZM102.15 68.6126C102.15 68.4732 102.114 68.3677 102.042 68.2959C101.971 68.2199 101.88 68.1819 101.77 68.1819C101.66 68.1819 101.57 68.2199 101.498 68.2959C101.426 68.3677 101.39 68.4732 101.39 68.6126C101.39 68.7519 101.426 68.8596 101.498 68.9356C101.57 69.0116 101.658 69.0496 101.764 69.0496C101.874 69.0496 101.964 69.0116 102.036 68.9356C102.112 68.8596 102.15 68.7519 102.15 68.6126Z" fill="#BB8A00"/>
            </svg>
        </div>

        <div class="d-none child" svg="Acordeon B.svg" original>
            <svg width="91" height="83" viewBox="0 0 91 83" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M54.5883 66.1736C54.0814 66.4368 53.4924 66.4938 52.9444 66.3326C52.3965 66.1714 51.932 65.8046 51.6483 65.3089L26.8936 20.1931C26.3215 19.1627 27.3025 17.5161 29.1003 16.5919C30.8981 15.6677 32.8033 15.8299 33.3092 16.8937L55.595 63.2778C55.8326 63.7972 55.8606 64.3883 55.673 64.9278C55.4855 65.4673 55.0969 65.9136 54.5883 66.1736ZM62.4586 62.6481C61.9265 62.8539 61.3355 62.846 60.8091 62.6261C60.2827 62.4062 59.8617 61.9914 59.6342 61.4683L39.8767 13.9515C39.4194 12.8656 40.5653 11.3357 42.4477 10.6142C44.3294 9.89073 46.2023 10.2567 46.5911 11.3704L63.7638 59.8812C63.946 60.4217 63.9119 61.0117 63.6685 61.5276C63.4252 62.0434 62.9916 62.445 62.4586 62.6481ZM70.6519 59.9928C70.101 60.1401 69.5145 60.0689 69.0148 59.794C68.5152 59.5191 68.1412 59.0617 67.9709 58.5175L53.4293 9.15337C53.0896 8.0241 54.3936 6.62712 56.3421 6.11139C58.2898 5.59375 60.115 6.15854 60.3806 7.30692L72.2461 57.3809C72.3691 57.9378 72.2718 58.5208 71.9746 59.0077C71.6774 59.4945 71.2034 59.8475 70.6519 59.9928Z" fill="#E5D48C"/>
                <path d="M54.5883 66.1736C54.0814 66.4368 53.4924 66.4938 52.9444 66.3326C52.3965 66.1714 51.932 65.8046 51.6483 65.3089L26.8936 20.1931C26.3215 19.1627 27.3025 17.5161 29.1003 16.5919C30.8981 15.6677 32.8033 15.8299 33.3092 16.8937L55.595 63.2778C55.8326 63.7972 55.8606 64.3883 55.673 64.9278C55.4855 65.4673 55.0969 65.9136 54.5883 66.1736ZM62.4586 62.6481C61.9265 62.8539 61.3355 62.846 60.8091 62.6261C60.2827 62.4062 59.8617 61.9914 59.6342 61.4683L39.8767 13.9515C39.4194 12.8656 40.5653 11.3357 42.4477 10.6142C44.3294 9.89073 46.2023 10.2567 46.5911 11.3704L63.7638 59.8812C63.946 60.4217 63.9119 61.0117 63.6685 61.5276C63.4252 62.0434 62.9916 62.445 62.4586 62.6481ZM70.6519 59.9928C70.101 60.1401 69.5145 60.0689 69.0148 59.794C68.5152 59.5191 68.1412 59.0617 67.9709 58.5175L53.4293 9.15337C53.0896 8.0241 54.3936 6.62712 56.3421 6.11139C58.2898 5.59375 60.115 6.15854 60.3806 7.30692L72.2461 57.3809C72.3691 57.9378 72.2718 58.5208 71.9746 59.0077C71.6774 59.4945 71.2034 59.8475 70.6519 59.9928Z" fill="#F4F7FE"/>
                <path d="M58.4694 64.3052C57.9492 64.5399 57.3585 64.5643 56.8207 64.3734C56.283 64.1825 55.8399 63.791 55.5841 63.2809L33.2983 16.8968C32.7828 15.8368 33.8468 14.2473 35.6902 13.4242C37.5328 12.5992 39.4245 12.8644 39.8704 13.9549L59.6278 61.4717C59.8371 62.0023 59.8335 62.5932 59.6177 63.1211C59.4018 63.649 58.9904 64.0732 58.4694 64.3052ZM66.5114 61.2128C65.9694 61.3896 65.3799 61.3499 64.8665 61.102C64.353 60.8541 63.9553 60.4172 63.7566 59.8828L46.584 11.3719C46.1857 10.2621 47.4112 8.79734 49.3282 8.17697C51.2444 7.5547 53.0965 8.02215 53.4241 9.15415L67.9657 58.5183C68.1169 59.0682 68.0501 59.6554 67.7792 60.1573C67.5083 60.6593 67.0542 61.0374 66.5114 61.2128Z" fill="white"/>
                <path d="M78.611 58.244L76.5241 58.7407C75.4178 59.0008 74.2535 58.8124 73.2858 58.2166C72.318 57.6209 71.6254 56.6663 71.3594 55.5614L60.4341 9.67195C60.174 8.56568 60.3624 7.40144 60.9582 6.43368C61.5539 5.46591 62.5085 4.77332 63.6134 4.50728L65.7003 4.01055C66.8066 3.75047 67.9708 3.93889 68.9386 4.53463C69.9063 5.13037 70.5989 6.08499 70.865 7.18984L81.7903 53.0793C82.0498 54.1855 81.8611 55.3495 81.2655 56.3171C80.6698 57.2848 79.7156 57.9774 78.611 58.244Z" fill="#A00505"/>
                <path d="M81.0309 53.0973L80.3512 52.9953C79.9904 52.9386 79.5521 52.4993 79.132 51.7734C78.7119 51.0475 78.3442 50.0941 78.1093 49.1216L68.3957 8.75689C68.1627 7.78462 68.082 6.87433 68.1712 6.22498C68.2604 5.57563 68.5123 5.24003 68.8717 5.29151L69.5515 5.39352C69.9123 5.45025 70.3506 5.88956 70.7707 6.61543C71.1908 7.3413 71.5584 8.2947 71.7934 9.26727L81.507 49.6319C81.7398 50.604 81.8204 51.514 81.7312 52.1633C81.642 52.8126 81.3903 53.1483 81.0309 53.0973Z" fill="#7C0101"/>
                <path d="M68.494 14.341C69.5913 13.8946 70.1189 12.6432 69.6725 11.5459C69.2261 10.4487 67.9747 9.92106 66.8774 10.3675C65.7801 10.8139 65.2525 12.0653 65.6989 13.1625C66.1453 14.2598 67.3968 14.7874 68.494 14.341Z" fill="#F5F8FA"/>
                <path d="M68.494 14.341C69.5913 13.8946 70.1189 12.6432 69.6725 11.5459C69.2261 10.4487 67.9747 9.92106 66.8774 10.3675C65.7801 10.8139 65.2525 12.0653 65.6989 13.1625C66.1453 14.2598 67.3968 14.7874 68.494 14.341Z" fill="#F5F8FA"/>
                <path d="M69.9784 20.6027C71.0756 20.1563 71.6033 18.9049 71.1568 17.8077C70.7104 16.7104 69.459 16.1828 68.3618 16.6292C67.2645 17.0756 66.7369 18.327 67.1833 19.4243C67.6297 20.5215 68.8811 21.0491 69.9784 20.6027Z" fill="#F5F8FA"/>
                <path d="M71.4706 26.8566C72.5678 26.4102 73.0954 25.1588 72.649 24.0616C72.2026 22.9643 70.9512 22.4367 69.854 22.8831C68.7567 23.3295 68.2291 24.5809 68.6755 25.6782C69.1219 26.7754 70.3733 27.3031 71.4706 26.8566Z" fill="#F5F8FA"/>
                <path d="M72.9628 33.1144C74.06 32.668 74.5876 31.4166 74.1412 30.3194C73.6948 29.2221 72.4434 28.6945 71.3461 29.1409C70.2489 29.5873 69.7213 30.8387 70.1677 31.936C70.6141 33.0332 71.8655 33.5609 72.9628 33.1144Z" fill="#F5F8FA"/>
                <path d="M74.4471 39.3723C75.5444 38.9258 76.072 37.6744 75.6256 36.5772C75.1792 35.4799 73.9278 34.9523 72.8305 35.3987C71.7333 35.8451 71.2056 37.0965 71.6521 38.1938C72.0985 39.2911 73.3499 39.8187 74.4471 39.3723Z" fill="#F5F8FA"/>
                <path d="M75.9393 45.6301C77.0366 45.1837 77.5642 43.9323 77.1178 42.835C76.6714 41.7377 75.42 41.2101 74.3227 41.6565C73.2254 42.103 72.6978 43.3544 73.1442 44.4516C73.5907 45.5489 74.8421 46.0765 75.9393 45.6301Z" fill="#F5F8FA"/>
                <path d="M77.4315 51.8879C78.5288 51.4415 79.0564 50.1901 78.61 49.0928C78.1636 47.9955 76.9122 47.4679 75.8149 47.9143C74.7176 48.3608 74.19 49.6122 74.6364 50.7094C75.0828 51.8067 76.3342 52.3343 77.4315 51.8879Z" fill="#F5F8FA"/>
                <path d="M48.4726 69.2865L31.5379 78.5385C30.539 79.0802 29.3663 79.2048 28.2759 78.8849C27.1854 78.565 26.2659 77.8268 25.7179 76.8312L3.10123 35.4347C2.55891 34.4359 2.43406 33.263 2.75397 32.1724C3.07388 31.0818 3.81253 30.1622 4.80846 29.6147L21.7431 20.3627C22.7421 19.821 23.9147 19.6964 25.0052 20.0163C26.0956 20.3361 27.0152 21.0744 27.5631 22.07L50.1798 63.4665C50.7221 64.4653 50.847 65.6382 50.527 66.7288C50.2071 67.8194 49.4685 68.7389 48.4726 69.2865Z" fill="#7C0101"/>
                <path d="M49.3007 68.9467L32.366 78.1986C31.3671 78.7404 30.1944 78.8649 29.104 78.5451C28.0136 78.2252 27.094 77.4869 26.546 76.4914L3.92936 35.0948C3.38703 34.096 3.26218 32.9231 3.58209 31.8326C3.902 30.742 4.64065 29.8224 5.63658 29.2748L22.5713 20.0229C23.5702 19.4811 24.7429 19.3566 25.8333 19.6764C26.9237 19.9963 27.8433 20.7346 28.3912 21.7301L51.0079 63.1267C51.5502 64.1255 51.6751 65.2984 51.3552 66.3889C51.0353 67.4795 50.2966 68.3991 49.3007 68.9467Z" fill="#A00505"/>
                <path d="M21.6469 25.4142L25.7296 23.1837C25.9364 23.0701 26.0898 22.8793 26.1563 22.6529C26.2228 22.4265 26.1971 22.1831 26.0846 21.9757L25.9104 21.6565C25.7968 21.4497 25.606 21.2963 25.3796 21.2298C25.1533 21.1633 24.9098 21.1891 24.7024 21.3015L20.6204 23.534C20.4136 23.6476 20.2602 23.8384 20.1937 24.0648C20.1272 24.2911 20.153 24.5346 20.2654 24.742L20.4396 25.0612C20.5531 25.2678 20.744 25.421 20.9703 25.4872C21.1966 25.5534 21.4399 25.5272 21.6469 25.4142ZM23.7032 29.1778L27.786 26.9473C27.9928 26.8337 28.1462 26.6429 28.2127 26.4165C28.2792 26.1902 28.2534 25.9467 28.141 25.7393L27.9668 25.4201C27.8532 25.2133 27.6624 25.0599 27.436 24.9934C27.2097 24.9269 26.9662 24.9527 26.7588 25.0651L22.676 27.2957C22.4693 27.4098 22.316 27.601 22.2497 27.8277C22.1833 28.0543 22.2093 28.298 22.3218 28.5056L22.496 28.8248C22.6099 29.031 22.8007 29.1839 23.0269 29.25C23.253 29.3161 23.4961 29.2902 23.7032 29.1778ZM25.7596 32.9414L29.8424 30.7109C30.0491 30.5973 30.2025 30.4065 30.2691 30.1801C30.3356 29.9538 30.3098 29.7103 30.1974 29.5029L30.0232 29.1837C29.9096 28.9769 29.7187 28.8235 29.4924 28.757C29.266 28.6905 29.0225 28.7163 28.8151 28.8287L24.7324 31.0593C24.5256 31.1729 24.3722 31.3637 24.3057 31.5901C24.2392 31.8164 24.265 32.0599 24.3774 32.2673L24.5516 32.5865C24.6652 32.7932 24.856 32.9466 25.0824 33.0132C25.3087 33.0797 25.5522 33.0539 25.7596 32.9414ZM27.816 36.705L31.8987 34.4745C32.1055 34.3609 32.2589 34.1701 32.3254 33.9437C32.392 33.7173 32.3662 33.4739 32.2537 33.2665L32.0796 32.9473C31.966 32.7405 31.7751 32.5871 31.5488 32.5206C31.3224 32.4541 31.0789 32.4799 30.8715 32.5923L26.7888 34.8229C26.582 34.9365 26.4286 35.1273 26.3621 35.3537C26.2955 35.58 26.3213 35.8235 26.4338 36.0309L26.6079 36.3501C26.7215 36.5568 26.9124 36.7102 27.1387 36.7768C27.3651 36.8433 27.6086 36.8175 27.816 36.705ZM29.8724 40.4686L33.9551 38.2381C34.1619 38.1245 34.3153 37.9337 34.3818 37.7073C34.4483 37.481 34.4225 37.2375 34.3101 37.0301L34.1359 36.7109C34.0223 36.5041 33.8315 36.3507 33.6051 36.2842C33.3788 36.2177 33.1353 36.2435 32.9279 36.3559L28.8451 38.5865C28.6384 38.7001 28.485 38.8909 28.4184 39.1173C28.3519 39.3436 28.3777 39.5871 28.4902 39.7945L28.6643 40.1137C28.7779 40.3204 28.9688 40.4738 29.1951 40.5404C29.4215 40.6069 29.665 40.5811 29.8724 40.4686ZM31.9287 44.2322L36.0115 42.0017C36.2183 41.8881 36.3717 41.6973 36.4382 41.4709C36.5047 41.2446 36.4789 41.0011 36.3665 40.7937L36.1923 40.4745C36.0787 40.2677 35.8879 40.1143 35.6615 40.0478C35.4351 39.9813 35.1917 40.0071 34.9843 40.1195L30.9015 42.3501C30.6947 42.4637 30.5413 42.6545 30.4748 42.8809C30.4083 43.1072 30.4341 43.3507 30.5465 43.5581L30.7207 43.8773C30.8343 44.084 31.0251 44.2374 31.2515 44.304C31.4778 44.3705 31.7213 44.3447 31.9287 44.2322ZM33.9843 47.9939L38.0671 45.7634C38.2739 45.6498 38.4273 45.459 38.4938 45.2326C38.5603 45.0063 38.5345 44.7628 38.4221 44.5554L38.2479 44.2362C38.1343 44.0294 37.9435 43.876 37.7171 43.8095C37.4907 43.743 37.2473 43.7688 37.0399 43.8812L32.9571 46.1118C32.7503 46.2254 32.5969 46.4162 32.5304 46.6426C32.4639 46.8689 32.4897 47.1124 32.6021 47.3198L32.7763 47.639C33.0098 48.0713 33.5554 48.2305 33.9843 47.9939ZM36.0407 51.7575L40.1235 49.527C40.3302 49.4134 40.4836 49.2226 40.5502 48.9962C40.6167 48.7698 40.5909 48.5264 40.4784 48.319L40.3043 47.9998C40.1907 47.793 39.9998 47.6396 39.7735 47.5731C39.5471 47.5066 39.3036 47.5324 39.0962 47.6448L35.0135 49.8754C34.8067 49.989 34.6533 50.1798 34.5868 50.4062C34.5203 50.6325 34.5461 50.876 34.6585 51.0834L34.8327 51.4026C34.8885 51.5053 34.9641 51.5961 35.0551 51.6696C35.1461 51.7431 35.2507 51.7979 35.363 51.8309C35.4752 51.8639 35.5929 51.8744 35.7092 51.8618C35.8255 51.8492 35.9381 51.8138 36.0407 51.7575ZM38.0952 55.5219L42.1779 53.2914C42.3847 53.1778 42.5381 52.9869 42.6046 52.7606C42.6711 52.5342 42.6454 52.2907 42.5329 52.0833L42.3588 51.7642C42.2452 51.5574 42.0543 51.404 41.828 51.3375C41.6016 51.271 41.3581 51.2968 41.1507 51.4092L37.068 53.6397C36.8612 53.7533 36.7078 53.9442 36.6413 54.1705C36.5747 54.3969 36.6005 54.6404 36.713 54.8478L36.8871 55.1669C37.0007 55.3737 37.1916 55.5271 37.4179 55.5936C37.6443 55.6601 37.8878 55.6344 38.0952 55.5219ZM40.1516 59.2855L44.2343 57.055C44.4411 56.9414 44.5945 56.7505 44.661 56.5242C44.7275 56.2978 44.7017 56.0543 44.5893 55.8469L44.4151 55.5278C44.3015 55.321 44.1107 55.1676 43.8843 55.1011C43.658 55.0346 43.4145 55.0604 43.2071 55.1728L39.1243 57.4033C38.9176 57.5169 38.7641 57.7078 38.6976 57.9341C38.6311 58.1605 38.6569 58.404 38.7693 58.6114L38.9435 58.9305C39.0571 59.1373 39.2479 59.2907 39.4743 59.3572C39.7007 59.4238 39.9442 59.398 40.1516 59.2855ZM42.2079 63.0491L46.2907 60.8186C46.4975 60.705 46.6509 60.5141 46.7174 60.2878C46.7839 60.0614 46.7581 59.8179 46.6457 59.6105L46.4715 59.2914C46.3579 59.0846 46.1671 58.9312 45.9407 58.8647C45.7143 58.7982 45.4709 58.824 45.2634 58.9364L41.1807 61.1669C40.9739 61.2805 40.8205 61.4714 40.754 61.6977C40.6875 61.9241 40.7133 62.1676 40.8257 62.375L40.9999 62.6941C41.1135 62.9009 41.3043 63.0543 41.5307 63.1208C41.757 63.1874 42.0005 63.1616 42.2079 63.0491ZM44.2643 66.8127L48.3471 64.5822C48.5538 64.4686 48.7072 64.2777 48.7738 64.0514C48.8403 63.825 48.8145 63.5815 48.702 63.3741L48.5279 63.055C48.4143 62.8482 48.2234 62.6948 47.9971 62.6283C47.7707 62.5618 47.5272 62.5876 47.3198 62.7L43.2371 64.9305C43.0303 65.0441 42.8769 65.235 42.8104 65.4613C42.7439 65.6877 42.7696 65.9312 42.8821 66.1386L43.0563 66.4577C43.1699 66.6645 43.3607 66.8179 43.5871 66.8844C43.8134 66.951 44.0569 66.9252 44.2643 66.8127Z" fill="#C90707"/>
                <rect x="4.5625" y="30.6328" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 4.5625 30.6328)" fill="white"/>
                <rect x="7.16406" y="35.3516" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 7.16406 35.3516)" fill="white"/>
                <rect x="9.75781" y="40.0703" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 9.75781 40.0703)" fill="white"/>
                <rect x="12.3594" y="44.7891" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 12.3594 44.7891)" fill="white"/>
                <rect x="14.9609" y="49.5039" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 14.9609 49.5039)" fill="white"/>
                <rect x="17.5547" y="54.2227" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 17.5547 54.2227)" fill="white"/>
                <rect x="20.1562" y="58.9414" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 20.1562 58.9414)" fill="white"/>
                <rect x="22.7578" y="63.6602" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 22.7578 63.6602)" fill="white"/>
                <rect x="25.3594" y="68.3789" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 25.3594 68.3789)" fill="white"/>
                <rect x="27.9531" y="73.0977" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 27.9531 73.0977)" fill="white"/>
                <rect x="9.79688" y="30.8242" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 9.79688 30.8242)" fill="#181818"/>
                <rect x="12.3984" y="35.543" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 12.3984 35.543)" fill="#181818"/>
                <rect x="14.9922" y="40.2617" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 14.9922 40.2617)" fill="#181818"/>
                <rect x="17.5938" y="44.9805" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 17.5938 44.9805)" fill="#181818"/>
                <rect x="20.1953" y="49.6953" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 20.1953 49.6953)" fill="#181818"/>
                <rect x="22.7891" y="54.4141" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 22.7891 54.4141)" fill="#181818"/>
                <rect x="25.3906" y="59.1328" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 25.3906 59.1328)" fill="#181818"/>
                <rect x="27.9922" y="63.8516" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 27.9922 63.8516)" fill="#181818"/>
                <rect x="30.5938" y="68.5703" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 30.5938 68.5703)" fill="#181818"/>
            </svg>
        </div>

        <div class="d-none child" svg="Acordeon B.svg">
            <svg width="91" height="83" viewBox="0 0 91 83" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M54.5883 66.1736C54.0814 66.4368 53.4924 66.4938 52.9444 66.3326C52.3965 66.1714 51.932 65.8046 51.6483 65.3089L26.8936 20.1931C26.3215 19.1627 27.3025 17.5161 29.1003 16.5919C30.8981 15.6677 32.8033 15.8299 33.3092 16.8937L55.595 63.2778C55.8326 63.7972 55.8606 64.3883 55.673 64.9278C55.4855 65.4673 55.0969 65.9136 54.5883 66.1736ZM62.4586 62.6481C61.9265 62.8539 61.3355 62.846 60.8091 62.6261C60.2827 62.4062 59.8617 61.9914 59.6342 61.4683L39.8767 13.9515C39.4194 12.8656 40.5653 11.3357 42.4477 10.6142C44.3294 9.89073 46.2023 10.2567 46.5911 11.3704L63.7638 59.8812C63.946 60.4217 63.9119 61.0117 63.6685 61.5276C63.4252 62.0434 62.9916 62.445 62.4586 62.6481ZM70.6519 59.9928C70.101 60.1401 69.5145 60.0689 69.0148 59.794C68.5152 59.5191 68.1412 59.0617 67.9709 58.5175L53.4293 9.15337C53.0896 8.0241 54.3936 6.62712 56.3421 6.11139C58.2898 5.59375 60.115 6.15854 60.3806 7.30692L72.2461 57.3809C72.3691 57.9378 72.2718 58.5208 71.9746 59.0077C71.6774 59.4945 71.2034 59.8475 70.6519 59.9928Z" fill="var(--primary-5)"/>
                <path d="M54.5883 66.1736C54.0814 66.4368 53.4924 66.4938 52.9444 66.3326C52.3965 66.1714 51.932 65.8046 51.6483 65.3089L26.8936 20.1931C26.3215 19.1627 27.3025 17.5161 29.1003 16.5919C30.8981 15.6677 32.8033 15.8299 33.3092 16.8937L55.595 63.2778C55.8326 63.7972 55.8606 64.3883 55.673 64.9278C55.4855 65.4673 55.0969 65.9136 54.5883 66.1736ZM62.4586 62.6481C61.9265 62.8539 61.3355 62.846 60.8091 62.6261C60.2827 62.4062 59.8617 61.9914 59.6342 61.4683L39.8767 13.9515C39.4194 12.8656 40.5653 11.3357 42.4477 10.6142C44.3294 9.89073 46.2023 10.2567 46.5911 11.3704L63.7638 59.8812C63.946 60.4217 63.9119 61.0117 63.6685 61.5276C63.4252 62.0434 62.9916 62.445 62.4586 62.6481ZM70.6519 59.9928C70.101 60.1401 69.5145 60.0689 69.0148 59.794C68.5152 59.5191 68.1412 59.0617 67.9709 58.5175L53.4293 9.15337C53.0896 8.0241 54.3936 6.62712 56.3421 6.11139C58.2898 5.59375 60.115 6.15854 60.3806 7.30692L72.2461 57.3809C72.3691 57.9378 72.2718 58.5208 71.9746 59.0077C71.6774 59.4945 71.2034 59.8475 70.6519 59.9928Z" fill="var(--primary-5)"/>
                <path d="M58.4694 64.3052C57.9492 64.5399 57.3585 64.5643 56.8207 64.3734C56.283 64.1825 55.8399 63.791 55.5841 63.2809L33.2983 16.8968C32.7828 15.8368 33.8468 14.2473 35.6902 13.4242C37.5328 12.5992 39.4245 12.8644 39.8704 13.9549L59.6278 61.4717C59.8371 62.0023 59.8335 62.5932 59.6177 63.1211C59.4018 63.649 58.9904 64.0732 58.4694 64.3052ZM66.5114 61.2128C65.9694 61.3896 65.3799 61.3499 64.8665 61.102C64.353 60.8541 63.9553 60.4172 63.7566 59.8828L46.584 11.3719C46.1857 10.2621 47.4112 8.79734 49.3282 8.17697C51.2444 7.5547 53.0965 8.02215 53.4241 9.15415L67.9657 58.5183C68.1169 59.0682 68.0501 59.6554 67.7792 60.1573C67.5083 60.6593 67.0542 61.0374 66.5114 61.2128Z" fill="var(--primary-7)"/>
                <path d="M78.611 58.244L76.5241 58.7407C75.4178 59.0008 74.2535 58.8124 73.2858 58.2166C72.318 57.6209 71.6254 56.6663 71.3594 55.5614L60.4341 9.67195C60.174 8.56568 60.3624 7.40144 60.9582 6.43368C61.5539 5.46591 62.5085 4.77332 63.6134 4.50728L65.7003 4.01055C66.8066 3.75047 67.9708 3.93889 68.9386 4.53463C69.9063 5.13037 70.5989 6.08499 70.865 7.18984L81.7903 53.0793C82.0498 54.1855 81.8611 55.3495 81.2655 56.3171C80.6698 57.2848 79.7156 57.9774 78.611 58.244Z" fill="var(--primary-2)"/>
                <path d="M81.0309 53.0973L80.3512 52.9953C79.9904 52.9386 79.5521 52.4993 79.132 51.7734C78.7119 51.0475 78.3442 50.0941 78.1093 49.1216L68.3957 8.75689C68.1627 7.78462 68.082 6.87433 68.1712 6.22498C68.2604 5.57563 68.5123 5.24003 68.8717 5.29151L69.5515 5.39352C69.9123 5.45025 70.3506 5.88956 70.7707 6.61543C71.1908 7.3413 71.5584 8.2947 71.7934 9.26727L81.507 49.6319C81.7398 50.604 81.8204 51.514 81.7312 52.1633C81.642 52.8126 81.3903 53.1483 81.0309 53.0973Z" fill="var(--primary-2)"/>
                <path d="M68.494 14.341C69.5913 13.8946 70.1189 12.6432 69.6725 11.5459C69.2261 10.4487 67.9747 9.92106 66.8774 10.3675C65.7801 10.8139 65.2525 12.0653 65.6989 13.1625C66.1453 14.2598 67.3968 14.7874 68.494 14.341Z" fill="var(--primary-6)"/>
                <path d="M68.494 14.341C69.5913 13.8946 70.1189 12.6432 69.6725 11.5459C69.2261 10.4487 67.9747 9.92106 66.8774 10.3675C65.7801 10.8139 65.2525 12.0653 65.6989 13.1625C66.1453 14.2598 67.3968 14.7874 68.494 14.341Z" fill="var(--primary-6)"/>
                <path d="M69.9784 20.6027C71.0756 20.1563 71.6033 18.9049 71.1568 17.8077C70.7104 16.7104 69.459 16.1828 68.3618 16.6292C67.2645 17.0756 66.7369 18.327 67.1833 19.4243C67.6297 20.5215 68.8811 21.0491 69.9784 20.6027Z" fill="var(--primary-6)"/>
                <path d="M71.4706 26.8566C72.5678 26.4102 73.0954 25.1588 72.649 24.0616C72.2026 22.9643 70.9512 22.4367 69.854 22.8831C68.7567 23.3295 68.2291 24.5809 68.6755 25.6782C69.1219 26.7754 70.3733 27.3031 71.4706 26.8566Z" fill="var(--primary-6)"/>
                <path d="M72.9628 33.1144C74.06 32.668 74.5876 31.4166 74.1412 30.3194C73.6948 29.2221 72.4434 28.6945 71.3461 29.1409C70.2489 29.5873 69.7213 30.8387 70.1677 31.936C70.6141 33.0332 71.8655 33.5609 72.9628 33.1144Z" fill="var(--primary-6)"/>
                <path d="M74.4471 39.3723C75.5444 38.9258 76.072 37.6744 75.6256 36.5772C75.1792 35.4799 73.9278 34.9523 72.8305 35.3987C71.7333 35.8451 71.2056 37.0965 71.6521 38.1938C72.0985 39.2911 73.3499 39.8187 74.4471 39.3723Z" fill="var(--primary-6)"/>
                <path d="M75.9393 45.6301C77.0366 45.1837 77.5642 43.9323 77.1178 42.835C76.6714 41.7377 75.42 41.2101 74.3227 41.6565C73.2254 42.103 72.6978 43.3544 73.1442 44.4516C73.5907 45.5489 74.8421 46.0765 75.9393 45.6301Z" fill="var(--primary-6)"/>
                <path d="M77.4315 51.8879C78.5288 51.4415 79.0564 50.1901 78.61 49.0928C78.1636 47.9955 76.9122 47.4679 75.8149 47.9143C74.7176 48.3608 74.19 49.6122 74.6364 50.7094C75.0828 51.8067 76.3342 52.3343 77.4315 51.8879Z" fill="var(--primary-6)"/>
                <path d="M48.4726 69.2865L31.5379 78.5385C30.539 79.0802 29.3663 79.2048 28.2759 78.8849C27.1854 78.565 26.2659 77.8268 25.7179 76.8312L3.10123 35.4347C2.55891 34.4359 2.43406 33.263 2.75397 32.1724C3.07388 31.0818 3.81253 30.1622 4.80846 29.6147L21.7431 20.3627C22.7421 19.821 23.9147 19.6964 25.0052 20.0163C26.0956 20.3361 27.0152 21.0744 27.5631 22.07L50.1798 63.4665C50.7221 64.4653 50.847 65.6382 50.527 66.7288C50.2071 67.8194 49.4685 68.7389 48.4726 69.2865Z" fill="var(--primary-2)"/>
                <path d="M49.3007 68.9467L32.366 78.1986C31.3671 78.7404 30.1944 78.8649 29.104 78.5451C28.0136 78.2252 27.094 77.4869 26.546 76.4914L3.92936 35.0948C3.38703 34.096 3.26218 32.9231 3.58209 31.8326C3.902 30.742 4.64065 29.8224 5.63658 29.2748L22.5713 20.0229C23.5702 19.4811 24.7429 19.3566 25.8333 19.6764C26.9237 19.9963 27.8433 20.7346 28.3912 21.7301L51.0079 63.1267C51.5502 64.1255 51.6751 65.2984 51.3552 66.3889C51.0353 67.4795 50.2966 68.3991 49.3007 68.9467Z" fill="var(--primary-2)"/>
                <path d="M21.6469 25.4142L25.7296 23.1837C25.9364 23.0701 26.0898 22.8793 26.1563 22.6529C26.2228 22.4265 26.1971 22.1831 26.0846 21.9757L25.9104 21.6565C25.7968 21.4497 25.606 21.2963 25.3796 21.2298C25.1533 21.1633 24.9098 21.1891 24.7024 21.3015L20.6204 23.534C20.4136 23.6476 20.2602 23.8384 20.1937 24.0648C20.1272 24.2911 20.153 24.5346 20.2654 24.742L20.4396 25.0612C20.5531 25.2678 20.744 25.421 20.9703 25.4872C21.1966 25.5534 21.4399 25.5272 21.6469 25.4142ZM23.7032 29.1778L27.786 26.9473C27.9928 26.8337 28.1462 26.6429 28.2127 26.4165C28.2792 26.1902 28.2534 25.9467 28.141 25.7393L27.9668 25.4201C27.8532 25.2133 27.6624 25.0599 27.436 24.9934C27.2097 24.9269 26.9662 24.9527 26.7588 25.0651L22.676 27.2957C22.4693 27.4098 22.316 27.601 22.2497 27.8277C22.1833 28.0543 22.2093 28.298 22.3218 28.5056L22.496 28.8248C22.6099 29.031 22.8007 29.1839 23.0269 29.25C23.253 29.3161 23.4961 29.2902 23.7032 29.1778ZM25.7596 32.9414L29.8424 30.7109C30.0491 30.5973 30.2025 30.4065 30.2691 30.1801C30.3356 29.9538 30.3098 29.7103 30.1974 29.5029L30.0232 29.1837C29.9096 28.9769 29.7187 28.8235 29.4924 28.757C29.266 28.6905 29.0225 28.7163 28.8151 28.8287L24.7324 31.0593C24.5256 31.1729 24.3722 31.3637 24.3057 31.5901C24.2392 31.8164 24.265 32.0599 24.3774 32.2673L24.5516 32.5865C24.6652 32.7932 24.856 32.9466 25.0824 33.0132C25.3087 33.0797 25.5522 33.0539 25.7596 32.9414ZM27.816 36.705L31.8987 34.4745C32.1055 34.3609 32.2589 34.1701 32.3254 33.9437C32.392 33.7173 32.3662 33.4739 32.2537 33.2665L32.0796 32.9473C31.966 32.7405 31.7751 32.5871 31.5488 32.5206C31.3224 32.4541 31.0789 32.4799 30.8715 32.5923L26.7888 34.8229C26.582 34.9365 26.4286 35.1273 26.3621 35.3537C26.2955 35.58 26.3213 35.8235 26.4338 36.0309L26.6079 36.3501C26.7215 36.5568 26.9124 36.7102 27.1387 36.7768C27.3651 36.8433 27.6086 36.8175 27.816 36.705ZM29.8724 40.4686L33.9551 38.2381C34.1619 38.1245 34.3153 37.9337 34.3818 37.7073C34.4483 37.481 34.4225 37.2375 34.3101 37.0301L34.1359 36.7109C34.0223 36.5041 33.8315 36.3507 33.6051 36.2842C33.3788 36.2177 33.1353 36.2435 32.9279 36.3559L28.8451 38.5865C28.6384 38.7001 28.485 38.8909 28.4184 39.1173C28.3519 39.3436 28.3777 39.5871 28.4902 39.7945L28.6643 40.1137C28.7779 40.3204 28.9688 40.4738 29.1951 40.5404C29.4215 40.6069 29.665 40.5811 29.8724 40.4686ZM31.9287 44.2322L36.0115 42.0017C36.2183 41.8881 36.3717 41.6973 36.4382 41.4709C36.5047 41.2446 36.4789 41.0011 36.3665 40.7937L36.1923 40.4745C36.0787 40.2677 35.8879 40.1143 35.6615 40.0478C35.4351 39.9813 35.1917 40.0071 34.9843 40.1195L30.9015 42.3501C30.6947 42.4637 30.5413 42.6545 30.4748 42.8809C30.4083 43.1072 30.4341 43.3507 30.5465 43.5581L30.7207 43.8773C30.8343 44.084 31.0251 44.2374 31.2515 44.304C31.4778 44.3705 31.7213 44.3447 31.9287 44.2322ZM33.9843 47.9939L38.0671 45.7634C38.2739 45.6498 38.4273 45.459 38.4938 45.2326C38.5603 45.0063 38.5345 44.7628 38.4221 44.5554L38.2479 44.2362C38.1343 44.0294 37.9435 43.876 37.7171 43.8095C37.4907 43.743 37.2473 43.7688 37.0399 43.8812L32.9571 46.1118C32.7503 46.2254 32.5969 46.4162 32.5304 46.6426C32.4639 46.8689 32.4897 47.1124 32.6021 47.3198L32.7763 47.639C33.0098 48.0713 33.5554 48.2305 33.9843 47.9939ZM36.0407 51.7575L40.1235 49.527C40.3302 49.4134 40.4836 49.2226 40.5502 48.9962C40.6167 48.7698 40.5909 48.5264 40.4784 48.319L40.3043 47.9998C40.1907 47.793 39.9998 47.6396 39.7735 47.5731C39.5471 47.5066 39.3036 47.5324 39.0962 47.6448L35.0135 49.8754C34.8067 49.989 34.6533 50.1798 34.5868 50.4062C34.5203 50.6325 34.5461 50.876 34.6585 51.0834L34.8327 51.4026C34.8885 51.5053 34.9641 51.5961 35.0551 51.6696C35.1461 51.7431 35.2507 51.7979 35.363 51.8309C35.4752 51.8639 35.5929 51.8744 35.7092 51.8618C35.8255 51.8492 35.9381 51.8138 36.0407 51.7575ZM38.0952 55.5219L42.1779 53.2914C42.3847 53.1778 42.5381 52.9869 42.6046 52.7606C42.6711 52.5342 42.6454 52.2907 42.5329 52.0833L42.3588 51.7642C42.2452 51.5574 42.0543 51.404 41.828 51.3375C41.6016 51.271 41.3581 51.2968 41.1507 51.4092L37.068 53.6397C36.8612 53.7533 36.7078 53.9442 36.6413 54.1705C36.5747 54.3969 36.6005 54.6404 36.713 54.8478L36.8871 55.1669C37.0007 55.3737 37.1916 55.5271 37.4179 55.5936C37.6443 55.6601 37.8878 55.6344 38.0952 55.5219ZM40.1516 59.2855L44.2343 57.055C44.4411 56.9414 44.5945 56.7505 44.661 56.5242C44.7275 56.2978 44.7017 56.0543 44.5893 55.8469L44.4151 55.5278C44.3015 55.321 44.1107 55.1676 43.8843 55.1011C43.658 55.0346 43.4145 55.0604 43.2071 55.1728L39.1243 57.4033C38.9176 57.5169 38.7641 57.7078 38.6976 57.9341C38.6311 58.1605 38.6569 58.404 38.7693 58.6114L38.9435 58.9305C39.0571 59.1373 39.2479 59.2907 39.4743 59.3572C39.7007 59.4238 39.9442 59.398 40.1516 59.2855ZM42.2079 63.0491L46.2907 60.8186C46.4975 60.705 46.6509 60.5141 46.7174 60.2878C46.7839 60.0614 46.7581 59.8179 46.6457 59.6105L46.4715 59.2914C46.3579 59.0846 46.1671 58.9312 45.9407 58.8647C45.7143 58.7982 45.4709 58.824 45.2634 58.9364L41.1807 61.1669C40.9739 61.2805 40.8205 61.4714 40.754 61.6977C40.6875 61.9241 40.7133 62.1676 40.8257 62.375L40.9999 62.6941C41.1135 62.9009 41.3043 63.0543 41.5307 63.1208C41.757 63.1874 42.0005 63.1616 42.2079 63.0491ZM44.2643 66.8127L48.3471 64.5822C48.5538 64.4686 48.7072 64.2777 48.7738 64.0514C48.8403 63.825 48.8145 63.5815 48.702 63.3741L48.5279 63.055C48.4143 62.8482 48.2234 62.6948 47.9971 62.6283C47.7707 62.5618 47.5272 62.5876 47.3198 62.7L43.2371 64.9305C43.0303 65.0441 42.8769 65.235 42.8104 65.4613C42.7439 65.6877 42.7696 65.9312 42.8821 66.1386L43.0563 66.4577C43.1699 66.6645 43.3607 66.8179 43.5871 66.8844C43.8134 66.951 44.0569 66.9252 44.2643 66.8127Z" fill="var(--primary-1)"/>
                <rect x="4.5625" y="30.6328" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 4.5625 30.6328)" fill="var(--primary-7)"/>
                <rect x="7.16406" y="35.3516" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 7.16406 35.3516)" fill="var(--primary-7)"/>
                <rect x="9.75781" y="40.0703" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 9.75781 40.0703)" fill="var(--primary-7)"/>
                <rect x="12.3594" y="44.7891" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 12.3594 44.7891)" fill="var(--primary-7)"/>
                <rect x="14.9609" y="49.5039" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 14.9609 49.5039)" fill="var(--primary-7)"/>
                <rect x="17.5547" y="54.2227" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 17.5547 54.2227)" fill="var(--primary-7)"/>
                <rect x="20.1562" y="58.9414" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 20.1562 58.9414)" fill="var(--primary-7)"/>
                <rect x="22.7578" y="63.6602" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 22.7578 63.6602)" fill="var(--primary-7)"/>
                <rect x="25.3594" y="68.3789" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 25.3594 68.3789)" fill="var(--primary-7)"/>
                <rect x="27.9531" y="73.0977" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 27.9531 73.0977)" fill="var(--primary-7)"/>
                <rect x="9.79688" y="30.8242" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 9.79688 30.8242)" fill="var(--primary-0)"/>
                <rect x="12.3984" y="35.543" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 12.3984 35.543)" fill="var(--primary-0)"/>
                <rect x="14.9922" y="40.2617" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 14.9922 40.2617)" fill="var(--primary-0)"/>
                <rect x="17.5938" y="44.9805" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 17.5938 44.9805)" fill="var(--primary-0)"/>
                <rect x="20.1953" y="49.6953" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 20.1953 49.6953)" fill="var(--primary-0)"/>
                <rect x="22.7891" y="54.4141" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 22.7891 54.4141)" fill="var(--primary-0)"/>
                <rect x="25.3906" y="59.1328" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 25.3906 59.1328)" fill="var(--primary-0)"/>
                <rect x="27.9922" y="63.8516" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 27.9922 63.8516)" fill="var(--primary-0)"/>
                <rect x="30.5938" y="68.5703" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 30.5938 68.5703)" fill="var(--primary-0)"/>
            </svg>
        </div>

        <div class="d-none child completed" svg="Acordeon B.svg">
            <svg width="91" height="83" viewBox="0 0 91 83" fill="none" xmlns="http://www.w3.org/2000/svg">
                <path d="M54.5883 66.1736C54.0814 66.4368 53.4924 66.4938 52.9444 66.3326C52.3965 66.1714 51.932 65.8046 51.6483 65.3089L26.8936 20.1931C26.3215 19.1627 27.3025 17.5161 29.1003 16.5919C30.8981 15.6677 32.8033 15.8299 33.3092 16.8937L55.595 63.2778C55.8326 63.7972 55.8606 64.3883 55.673 64.9278C55.4855 65.4673 55.0969 65.9136 54.5883 66.1736ZM62.4586 62.6481C61.9265 62.8539 61.3355 62.846 60.8091 62.6261C60.2827 62.4062 59.8617 61.9914 59.6342 61.4683L39.8767 13.9515C39.4194 12.8656 40.5653 11.3357 42.4477 10.6142C44.3294 9.89073 46.2023 10.2567 46.5911 11.3704L63.7638 59.8812C63.946 60.4217 63.9119 61.0117 63.6685 61.5276C63.4252 62.0434 62.9916 62.445 62.4586 62.6481ZM70.6519 59.9928C70.101 60.1401 69.5145 60.0689 69.0148 59.794C68.5152 59.5191 68.1412 59.0617 67.9709 58.5175L53.4293 9.15337C53.0896 8.0241 54.3936 6.62712 56.3421 6.11139C58.2898 5.59375 60.115 6.15854 60.3806 7.30692L72.2461 57.3809C72.3691 57.9378 72.2718 58.5208 71.9746 59.0077C71.6774 59.4945 71.2034 59.8475 70.6519 59.9928Z" fill="var(--primary-5)"/>
                <path d="M54.5883 66.1736C54.0814 66.4368 53.4924 66.4938 52.9444 66.3326C52.3965 66.1714 51.932 65.8046 51.6483 65.3089L26.8936 20.1931C26.3215 19.1627 27.3025 17.5161 29.1003 16.5919C30.8981 15.6677 32.8033 15.8299 33.3092 16.8937L55.595 63.2778C55.8326 63.7972 55.8606 64.3883 55.673 64.9278C55.4855 65.4673 55.0969 65.9136 54.5883 66.1736ZM62.4586 62.6481C61.9265 62.8539 61.3355 62.846 60.8091 62.6261C60.2827 62.4062 59.8617 61.9914 59.6342 61.4683L39.8767 13.9515C39.4194 12.8656 40.5653 11.3357 42.4477 10.6142C44.3294 9.89073 46.2023 10.2567 46.5911 11.3704L63.7638 59.8812C63.946 60.4217 63.9119 61.0117 63.6685 61.5276C63.4252 62.0434 62.9916 62.445 62.4586 62.6481ZM70.6519 59.9928C70.101 60.1401 69.5145 60.0689 69.0148 59.794C68.5152 59.5191 68.1412 59.0617 67.9709 58.5175L53.4293 9.15337C53.0896 8.0241 54.3936 6.62712 56.3421 6.11139C58.2898 5.59375 60.115 6.15854 60.3806 7.30692L72.2461 57.3809C72.3691 57.9378 72.2718 58.5208 71.9746 59.0077C71.6774 59.4945 71.2034 59.8475 70.6519 59.9928Z" fill="var(--primary-5)"/>
                <path d="M58.4694 64.3052C57.9492 64.5399 57.3585 64.5643 56.8207 64.3734C56.283 64.1825 55.8399 63.791 55.5841 63.2809L33.2983 16.8968C32.7828 15.8368 33.8468 14.2473 35.6902 13.4242C37.5328 12.5992 39.4245 12.8644 39.8704 13.9549L59.6278 61.4717C59.8371 62.0023 59.8335 62.5932 59.6177 63.1211C59.4018 63.649 58.9904 64.0732 58.4694 64.3052ZM66.5114 61.2128C65.9694 61.3896 65.3799 61.3499 64.8665 61.102C64.353 60.8541 63.9553 60.4172 63.7566 59.8828L46.584 11.3719C46.1857 10.2621 47.4112 8.79734 49.3282 8.17697C51.2444 7.5547 53.0965 8.02215 53.4241 9.15415L67.9657 58.5183C68.1169 59.0682 68.0501 59.6554 67.7792 60.1573C67.5083 60.6593 67.0542 61.0374 66.5114 61.2128Z" fill="var(--primary-7)"/>
                <path d="M78.611 58.244L76.5241 58.7407C75.4178 59.0008 74.2535 58.8124 73.2858 58.2166C72.318 57.6209 71.6254 56.6663 71.3594 55.5614L60.4341 9.67195C60.174 8.56568 60.3624 7.40144 60.9582 6.43368C61.5539 5.46591 62.5085 4.77332 63.6134 4.50728L65.7003 4.01055C66.8066 3.75047 67.9708 3.93889 68.9386 4.53463C69.9063 5.13037 70.5989 6.08499 70.865 7.18984L81.7903 53.0793C82.0498 54.1855 81.8611 55.3495 81.2655 56.3171C80.6698 57.2848 79.7156 57.9774 78.611 58.244Z" fill="var(--primary-2)"/>
                <path d="M81.0309 53.0973L80.3512 52.9953C79.9904 52.9386 79.5521 52.4993 79.132 51.7734C78.7119 51.0475 78.3442 50.0941 78.1093 49.1216L68.3957 8.75689C68.1627 7.78462 68.082 6.87433 68.1712 6.22498C68.2604 5.57563 68.5123 5.24003 68.8717 5.29151L69.5515 5.39352C69.9123 5.45025 70.3506 5.88956 70.7707 6.61543C71.1908 7.3413 71.5584 8.2947 71.7934 9.26727L81.507 49.6319C81.7398 50.604 81.8204 51.514 81.7312 52.1633C81.642 52.8126 81.3903 53.1483 81.0309 53.0973Z" fill="var(--primary-2)"/>
                <path d="M68.494 14.341C69.5913 13.8946 70.1189 12.6432 69.6725 11.5459C69.2261 10.4487 67.9747 9.92106 66.8774 10.3675C65.7801 10.8139 65.2525 12.0653 65.6989 13.1625C66.1453 14.2598 67.3968 14.7874 68.494 14.341Z" fill="var(--primary-6)"/>
                <path d="M68.494 14.341C69.5913 13.8946 70.1189 12.6432 69.6725 11.5459C69.2261 10.4487 67.9747 9.92106 66.8774 10.3675C65.7801 10.8139 65.2525 12.0653 65.6989 13.1625C66.1453 14.2598 67.3968 14.7874 68.494 14.341Z" fill="var(--primary-6)"/>
                <path d="M69.9784 20.6027C71.0756 20.1563 71.6033 18.9049 71.1568 17.8077C70.7104 16.7104 69.459 16.1828 68.3618 16.6292C67.2645 17.0756 66.7369 18.327 67.1833 19.4243C67.6297 20.5215 68.8811 21.0491 69.9784 20.6027Z" fill="var(--primary-6)"/>
                <path d="M71.4706 26.8566C72.5678 26.4102 73.0954 25.1588 72.649 24.0616C72.2026 22.9643 70.9512 22.4367 69.854 22.8831C68.7567 23.3295 68.2291 24.5809 68.6755 25.6782C69.1219 26.7754 70.3733 27.3031 71.4706 26.8566Z" fill="var(--primary-6)"/>
                <path d="M72.9628 33.1144C74.06 32.668 74.5876 31.4166 74.1412 30.3194C73.6948 29.2221 72.4434 28.6945 71.3461 29.1409C70.2489 29.5873 69.7213 30.8387 70.1677 31.936C70.6141 33.0332 71.8655 33.5609 72.9628 33.1144Z" fill="var(--primary-6)"/>
                <path d="M74.4471 39.3723C75.5444 38.9258 76.072 37.6744 75.6256 36.5772C75.1792 35.4799 73.9278 34.9523 72.8305 35.3987C71.7333 35.8451 71.2056 37.0965 71.6521 38.1938C72.0985 39.2911 73.3499 39.8187 74.4471 39.3723Z" fill="var(--primary-6)"/>
                <path d="M75.9393 45.6301C77.0366 45.1837 77.5642 43.9323 77.1178 42.835C76.6714 41.7377 75.42 41.2101 74.3227 41.6565C73.2254 42.103 72.6978 43.3544 73.1442 44.4516C73.5907 45.5489 74.8421 46.0765 75.9393 45.6301Z" fill="var(--primary-6)"/>
                <path d="M77.4315 51.8879C78.5288 51.4415 79.0564 50.1901 78.61 49.0928C78.1636 47.9955 76.9122 47.4679 75.8149 47.9143C74.7176 48.3608 74.19 49.6122 74.6364 50.7094C75.0828 51.8067 76.3342 52.3343 77.4315 51.8879Z" fill="var(--primary-6)"/>
                <path d="M48.4726 69.2865L31.5379 78.5385C30.539 79.0802 29.3663 79.2048 28.2759 78.8849C27.1854 78.565 26.2659 77.8268 25.7179 76.8312L3.10123 35.4347C2.55891 34.4359 2.43406 33.263 2.75397 32.1724C3.07388 31.0818 3.81253 30.1622 4.80846 29.6147L21.7431 20.3627C22.7421 19.821 23.9147 19.6964 25.0052 20.0163C26.0956 20.3361 27.0152 21.0744 27.5631 22.07L50.1798 63.4665C50.7221 64.4653 50.847 65.6382 50.527 66.7288C50.2071 67.8194 49.4685 68.7389 48.4726 69.2865Z" fill="var(--primary-2)"/>
                <path d="M49.3007 68.9467L32.366 78.1986C31.3671 78.7404 30.1944 78.8649 29.104 78.5451C28.0136 78.2252 27.094 77.4869 26.546 76.4914L3.92936 35.0948C3.38703 34.096 3.26218 32.9231 3.58209 31.8326C3.902 30.742 4.64065 29.8224 5.63658 29.2748L22.5713 20.0229C23.5702 19.4811 24.7429 19.3566 25.8333 19.6764C26.9237 19.9963 27.8433 20.7346 28.3912 21.7301L51.0079 63.1267C51.5502 64.1255 51.6751 65.2984 51.3552 66.3889C51.0353 67.4795 50.2966 68.3991 49.3007 68.9467Z" fill="var(--primary-2)"/>
                <path d="M21.6469 25.4142L25.7296 23.1837C25.9364 23.0701 26.0898 22.8793 26.1563 22.6529C26.2228 22.4265 26.1971 22.1831 26.0846 21.9757L25.9104 21.6565C25.7968 21.4497 25.606 21.2963 25.3796 21.2298C25.1533 21.1633 24.9098 21.1891 24.7024 21.3015L20.6204 23.534C20.4136 23.6476 20.2602 23.8384 20.1937 24.0648C20.1272 24.2911 20.153 24.5346 20.2654 24.742L20.4396 25.0612C20.5531 25.2678 20.744 25.421 20.9703 25.4872C21.1966 25.5534 21.4399 25.5272 21.6469 25.4142ZM23.7032 29.1778L27.786 26.9473C27.9928 26.8337 28.1462 26.6429 28.2127 26.4165C28.2792 26.1902 28.2534 25.9467 28.141 25.7393L27.9668 25.4201C27.8532 25.2133 27.6624 25.0599 27.436 24.9934C27.2097 24.9269 26.9662 24.9527 26.7588 25.0651L22.676 27.2957C22.4693 27.4098 22.316 27.601 22.2497 27.8277C22.1833 28.0543 22.2093 28.298 22.3218 28.5056L22.496 28.8248C22.6099 29.031 22.8007 29.1839 23.0269 29.25C23.253 29.3161 23.4961 29.2902 23.7032 29.1778ZM25.7596 32.9414L29.8424 30.7109C30.0491 30.5973 30.2025 30.4065 30.2691 30.1801C30.3356 29.9538 30.3098 29.7103 30.1974 29.5029L30.0232 29.1837C29.9096 28.9769 29.7187 28.8235 29.4924 28.757C29.266 28.6905 29.0225 28.7163 28.8151 28.8287L24.7324 31.0593C24.5256 31.1729 24.3722 31.3637 24.3057 31.5901C24.2392 31.8164 24.265 32.0599 24.3774 32.2673L24.5516 32.5865C24.6652 32.7932 24.856 32.9466 25.0824 33.0132C25.3087 33.0797 25.5522 33.0539 25.7596 32.9414ZM27.816 36.705L31.8987 34.4745C32.1055 34.3609 32.2589 34.1701 32.3254 33.9437C32.392 33.7173 32.3662 33.4739 32.2537 33.2665L32.0796 32.9473C31.966 32.7405 31.7751 32.5871 31.5488 32.5206C31.3224 32.4541 31.0789 32.4799 30.8715 32.5923L26.7888 34.8229C26.582 34.9365 26.4286 35.1273 26.3621 35.3537C26.2955 35.58 26.3213 35.8235 26.4338 36.0309L26.6079 36.3501C26.7215 36.5568 26.9124 36.7102 27.1387 36.7768C27.3651 36.8433 27.6086 36.8175 27.816 36.705ZM29.8724 40.4686L33.9551 38.2381C34.1619 38.1245 34.3153 37.9337 34.3818 37.7073C34.4483 37.481 34.4225 37.2375 34.3101 37.0301L34.1359 36.7109C34.0223 36.5041 33.8315 36.3507 33.6051 36.2842C33.3788 36.2177 33.1353 36.2435 32.9279 36.3559L28.8451 38.5865C28.6384 38.7001 28.485 38.8909 28.4184 39.1173C28.3519 39.3436 28.3777 39.5871 28.4902 39.7945L28.6643 40.1137C28.7779 40.3204 28.9688 40.4738 29.1951 40.5404C29.4215 40.6069 29.665 40.5811 29.8724 40.4686ZM31.9287 44.2322L36.0115 42.0017C36.2183 41.8881 36.3717 41.6973 36.4382 41.4709C36.5047 41.2446 36.4789 41.0011 36.3665 40.7937L36.1923 40.4745C36.0787 40.2677 35.8879 40.1143 35.6615 40.0478C35.4351 39.9813 35.1917 40.0071 34.9843 40.1195L30.9015 42.3501C30.6947 42.4637 30.5413 42.6545 30.4748 42.8809C30.4083 43.1072 30.4341 43.3507 30.5465 43.5581L30.7207 43.8773C30.8343 44.084 31.0251 44.2374 31.2515 44.304C31.4778 44.3705 31.7213 44.3447 31.9287 44.2322ZM33.9843 47.9939L38.0671 45.7634C38.2739 45.6498 38.4273 45.459 38.4938 45.2326C38.5603 45.0063 38.5345 44.7628 38.4221 44.5554L38.2479 44.2362C38.1343 44.0294 37.9435 43.876 37.7171 43.8095C37.4907 43.743 37.2473 43.7688 37.0399 43.8812L32.9571 46.1118C32.7503 46.2254 32.5969 46.4162 32.5304 46.6426C32.4639 46.8689 32.4897 47.1124 32.6021 47.3198L32.7763 47.639C33.0098 48.0713 33.5554 48.2305 33.9843 47.9939ZM36.0407 51.7575L40.1235 49.527C40.3302 49.4134 40.4836 49.2226 40.5502 48.9962C40.6167 48.7698 40.5909 48.5264 40.4784 48.319L40.3043 47.9998C40.1907 47.793 39.9998 47.6396 39.7735 47.5731C39.5471 47.5066 39.3036 47.5324 39.0962 47.6448L35.0135 49.8754C34.8067 49.989 34.6533 50.1798 34.5868 50.4062C34.5203 50.6325 34.5461 50.876 34.6585 51.0834L34.8327 51.4026C34.8885 51.5053 34.9641 51.5961 35.0551 51.6696C35.1461 51.7431 35.2507 51.7979 35.363 51.8309C35.4752 51.8639 35.5929 51.8744 35.7092 51.8618C35.8255 51.8492 35.9381 51.8138 36.0407 51.7575ZM38.0952 55.5219L42.1779 53.2914C42.3847 53.1778 42.5381 52.9869 42.6046 52.7606C42.6711 52.5342 42.6454 52.2907 42.5329 52.0833L42.3588 51.7642C42.2452 51.5574 42.0543 51.404 41.828 51.3375C41.6016 51.271 41.3581 51.2968 41.1507 51.4092L37.068 53.6397C36.8612 53.7533 36.7078 53.9442 36.6413 54.1705C36.5747 54.3969 36.6005 54.6404 36.713 54.8478L36.8871 55.1669C37.0007 55.3737 37.1916 55.5271 37.4179 55.5936C37.6443 55.6601 37.8878 55.6344 38.0952 55.5219ZM40.1516 59.2855L44.2343 57.055C44.4411 56.9414 44.5945 56.7505 44.661 56.5242C44.7275 56.2978 44.7017 56.0543 44.5893 55.8469L44.4151 55.5278C44.3015 55.321 44.1107 55.1676 43.8843 55.1011C43.658 55.0346 43.4145 55.0604 43.2071 55.1728L39.1243 57.4033C38.9176 57.5169 38.7641 57.7078 38.6976 57.9341C38.6311 58.1605 38.6569 58.404 38.7693 58.6114L38.9435 58.9305C39.0571 59.1373 39.2479 59.2907 39.4743 59.3572C39.7007 59.4238 39.9442 59.398 40.1516 59.2855ZM42.2079 63.0491L46.2907 60.8186C46.4975 60.705 46.6509 60.5141 46.7174 60.2878C46.7839 60.0614 46.7581 59.8179 46.6457 59.6105L46.4715 59.2914C46.3579 59.0846 46.1671 58.9312 45.9407 58.8647C45.7143 58.7982 45.4709 58.824 45.2634 58.9364L41.1807 61.1669C40.9739 61.2805 40.8205 61.4714 40.754 61.6977C40.6875 61.9241 40.7133 62.1676 40.8257 62.375L40.9999 62.6941C41.1135 62.9009 41.3043 63.0543 41.5307 63.1208C41.757 63.1874 42.0005 63.1616 42.2079 63.0491ZM44.2643 66.8127L48.3471 64.5822C48.5538 64.4686 48.7072 64.2777 48.7738 64.0514C48.8403 63.825 48.8145 63.5815 48.702 63.3741L48.5279 63.055C48.4143 62.8482 48.2234 62.6948 47.9971 62.6283C47.7707 62.5618 47.5272 62.5876 47.3198 62.7L43.2371 64.9305C43.0303 65.0441 42.8769 65.235 42.8104 65.4613C42.7439 65.6877 42.7696 65.9312 42.8821 66.1386L43.0563 66.4577C43.1699 66.6645 43.3607 66.8179 43.5871 66.8844C43.8134 66.951 44.0569 66.9252 44.2643 66.8127Z" fill="var(--primary-1)"/>
                <rect x="4.5625" y="30.6328" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 4.5625 30.6328)" fill="var(--primary-7)"/>
                <rect x="7.16406" y="35.3516" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 7.16406 35.3516)" fill="var(--primary-7)"/>
                <rect x="9.75781" y="40.0703" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 9.75781 40.0703)" fill="var(--primary-7)"/>
                <rect x="12.3594" y="44.7891" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 12.3594 44.7891)" fill="var(--primary-7)"/>
                <rect x="14.9609" y="49.5039" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 14.9609 49.5039)" fill="var(--primary-7)"/>
                <rect x="17.5547" y="54.2227" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 17.5547 54.2227)" fill="var(--primary-7)"/>
                <rect x="20.1562" y="58.9414" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 20.1562 58.9414)" fill="var(--primary-7)"/>
                <rect x="22.7578" y="63.6602" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 22.7578 63.6602)" fill="var(--primary-7)"/>
                <rect x="25.3594" y="68.3789" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 25.3594 68.3789)" fill="var(--primary-7)"/>
                <rect x="27.9531" y="73.0977" width="13.4668" height="4.48893" rx="1.79557" transform="rotate(-28.8464 27.9531 73.0977)" fill="var(--primary-7)"/>
                <rect x="9.79688" y="30.8242" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 9.79688 30.8242)" fill="var(--primary-0)"/>
                <rect x="12.3984" y="35.543" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 12.3984 35.543)" fill="var(--primary-0)"/>
                <rect x="14.9922" y="40.2617" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 14.9922 40.2617)" fill="var(--primary-0)"/>
                <rect x="17.5938" y="44.9805" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 17.5938 44.9805)" fill="var(--primary-0)"/>
                <rect x="20.1953" y="49.6953" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 20.1953 49.6953)" fill="var(--primary-0)"/>
                <rect x="22.7891" y="54.4141" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 22.7891 54.4141)" fill="var(--primary-0)"/>
                <rect x="25.3906" y="59.1328" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 25.3906 59.1328)" fill="var(--primary-0)"/>
                <rect x="27.9922" y="63.8516" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 27.9922 63.8516)" fill="var(--primary-0)"/>
                <rect x="30.5938" y="68.5703" width="8.97786" height="3.59115" rx="1.79557" transform="rotate(-28.8464 30.5938 68.5703)" fill="var(--primary-0)"/>
            </svg>
        </div>

        <div class="child to-do" svg="Acordeon-via-wa">
            <svg width="165" height="159" viewBox="0 0 165 159" fill="none" xmlns="http://www.w3.org/2000/svg">
                <circle cx="82.5" cy="87" r="63" fill="#695501"/>
                <ellipse cx="82.0374" cy="79.5" rx="60.5374" ry="58.5" fill="#C6A106"/>
                <path d="M65.3165 67.9807L68.9368 62.0499C73.0075 55.3811 80.5259 51.619 88.3038 52.3586L93.0426 52.8093C102.025 53.6635 110.503 48.5231 113.899 40.1641L116.571 33.588" stroke="black" stroke-width="0.704298" stroke-linecap="round"/>
                <path d="M70.9883 72.3401L74.6086 66.4092C78.6794 59.7405 86.1978 55.9783 93.9757 56.718L98.7144 57.1687C107.696 58.0229 116.175 52.8825 119.571 44.5235L122.242 37.9474" stroke="black" stroke-width="0.704298" stroke-linecap="round"/>
                <path d="M76.6212 78.594L80.2415 72.6632C84.3122 65.9944 91.8306 62.2322 99.6085 62.9719L104.347 63.4226C113.329 64.2768 121.808 59.1364 125.204 50.7774L127.875 44.2013" stroke="black" stroke-width="0.704298" stroke-linecap="round"/>
                <path d="M127.174 45.7279C127.164 45.4377 126.89 45.2273 126.59 45.2754L116.778 46.7997C116.53 46.8406 116.345 47.0494 116.352 47.2903L116.594 54.7425C116.248 54.6441 115.875 54.5905 115.491 54.6029C113.628 54.6633 112.165 56.1414 112.222 57.8991C112.279 59.6567 113.835 61.0314 115.698 60.9709C117.561 60.9105 119.024 59.4379 118.967 57.6802C118.965 57.6145 118.957 57.5435 118.955 57.4778L118.708 49.8668C118.701 49.6533 118.864 49.4726 119.084 49.4381L124.489 48.5995C124.755 48.558 125 48.7473 125.008 48.9992L125.124 52.5747C124.611 52.4251 124.066 52.3937 123.536 52.483C123.006 52.5723 122.506 52.7799 122.078 53.0883C121.649 53.3967 121.305 53.797 121.073 54.2559C120.842 54.7147 120.729 55.2188 120.746 55.726C120.803 57.4836 122.358 58.8583 124.222 58.7979C126.085 58.7374 127.548 57.2648 127.491 55.5072L127.174 45.7279Z" fill="black"/>
                <path d="M121.634 56.561C121.663 56.6205 121.703 56.6741 121.754 56.7184C121.804 56.7627 121.863 56.7969 121.926 56.8191C121.99 56.8412 122.058 56.8507 122.125 56.8471C122.192 56.8436 122.257 56.8269 122.317 56.7982C122.376 56.7695 122.429 56.7293 122.472 56.68C122.515 56.6307 122.547 56.5732 122.567 56.5111C122.586 56.449 122.593 56.3835 122.585 56.3184C122.578 56.2534 122.558 56.1901 122.525 56.1323C122.327 55.7548 122.289 55.3194 122.42 54.9217C122.551 54.5239 122.84 54.1963 123.224 54.0107C123.343 53.9537 123.432 53.8529 123.472 53.7304C123.513 53.6079 123.501 53.4738 123.44 53.3576C123.378 53.2414 123.273 53.1527 123.146 53.1108C123.019 53.069 122.881 53.0775 122.763 53.1346C122.143 53.4345 121.676 53.9636 121.464 54.6059C121.253 55.2482 121.313 55.9513 121.634 56.561Z" fill="#6A6A6A"/>
                <path d="M113.032 58.8423C113.061 58.9018 113.102 58.9553 113.152 58.9996C113.202 59.0439 113.261 59.0782 113.325 59.1003C113.389 59.1224 113.456 59.132 113.523 59.1284C113.59 59.1248 113.655 59.1082 113.715 59.0794C113.775 59.0507 113.828 59.0105 113.871 58.9612C113.914 58.9119 113.946 58.8545 113.965 58.7924C113.985 58.7303 113.991 58.6648 113.984 58.5997C113.977 58.5346 113.956 58.4713 113.924 58.4136C113.725 58.0361 113.687 57.6007 113.819 57.2029C113.95 56.8052 114.239 56.4776 114.623 56.292C114.741 56.235 114.83 56.1341 114.871 56.0116C114.911 55.8892 114.899 55.7551 114.838 55.6389C114.777 55.5227 114.671 55.4339 114.544 55.3921C114.417 55.3503 114.28 55.3588 114.161 55.4158C113.541 55.7157 113.074 56.2448 112.863 56.8871C112.651 57.5295 112.712 58.2326 113.032 58.8423Z" fill="#6A6A6A"/>
                <path d="M97.6223 45.6158C97.615 45.3928 97.4043 45.2311 97.1733 45.2681L89.6325 46.4395C89.4415 46.471 89.2993 46.6315 89.3053 46.8167L89.4912 52.5441C89.2252 52.4685 88.9381 52.4272 88.6436 52.4368C87.2115 52.4832 86.0872 53.6192 86.1311 54.9701C86.1749 56.3209 87.3703 57.3775 88.8024 57.331C90.2345 57.2845 91.3589 56.1528 91.3151 54.8019C91.3134 54.7514 91.3072 54.6968 91.3056 54.6463L91.1158 48.7969C91.1105 48.6327 91.2355 48.4939 91.4043 48.4673L95.5591 47.8228C95.7635 47.7909 95.9513 47.9365 95.9576 48.13L96.0468 50.878C95.6522 50.763 95.2338 50.7389 94.8265 50.8075C94.4192 50.8762 94.0349 51.0357 93.7056 51.2727C93.3763 51.5097 93.1116 51.8174 92.9335 52.1701C92.7555 52.5227 92.6693 52.9101 92.6821 53.3C92.7259 54.6508 93.9213 55.7073 95.3534 55.6609C96.7855 55.6144 97.9099 54.4826 97.8661 53.1318L97.6223 45.6158Z" fill="black"/>
                <path d="M93.3666 53.9411C93.3889 53.9869 93.4203 54.028 93.459 54.062C93.4976 54.0961 93.5428 54.1224 93.5918 54.1394C93.6407 54.1564 93.6925 54.1638 93.744 54.161C93.7955 54.1583 93.8457 54.1455 93.8916 54.1234C93.9375 54.1013 93.9782 54.0704 94.0112 54.0325C94.0442 53.9946 94.069 53.9505 94.0839 53.9028C94.0989 53.855 94.1037 53.8047 94.0982 53.7547C94.0927 53.7046 94.077 53.656 94.0519 53.6116C93.8994 53.3215 93.8704 52.9869 93.9711 52.6812C94.0719 52.3755 94.2942 52.1237 94.5893 51.9811C94.6802 51.9372 94.7487 51.8597 94.7797 51.7656C94.8108 51.6715 94.8018 51.5684 94.7547 51.4791C94.7077 51.3898 94.6265 51.3216 94.5289 51.2894C94.4314 51.2573 94.3255 51.2638 94.2346 51.3077C93.7581 51.5382 93.3992 51.9448 93.2365 52.4385C93.0738 52.9321 93.1206 53.4725 93.3666 53.9411Z" fill="#6A6A6A"/>
                <path d="M86.7494 55.695C86.7717 55.7408 86.8031 55.7819 86.8418 55.8159C86.8805 55.85 86.9256 55.8763 86.9746 55.8933C87.0235 55.9103 87.0753 55.9177 87.1268 55.9149C87.1783 55.9122 87.2285 55.8994 87.2744 55.8773C87.3203 55.8552 87.361 55.8243 87.394 55.7864C87.4271 55.7485 87.4518 55.7044 87.4667 55.6567C87.4817 55.6089 87.4865 55.5586 87.481 55.5086C87.4755 55.4586 87.4598 55.4099 87.4347 55.3655C87.2822 55.0754 87.2532 54.7408 87.354 54.4351C87.4547 54.1294 87.677 53.8776 87.9721 53.735C88.063 53.6911 88.1315 53.6136 88.1625 53.5195C88.1936 53.4254 88.1846 53.3223 88.1375 53.233C88.0905 53.1437 88.0093 53.0755 87.9117 53.0433C87.8142 53.0112 87.7083 53.0178 87.6174 53.0616C87.1409 53.2921 86.782 53.6987 86.6193 54.1924C86.4566 54.686 86.5034 55.2264 86.7494 55.695Z" fill="#6A6A6A"/>
                <path d="M72.7008 114.063C72.1688 114 71.6817 113.733 71.3417 113.319C71.0016 112.906 70.8347 112.376 70.8761 111.842L75.4644 63.7884C75.564 62.6874 77.1933 61.9273 79.0753 62.1585C80.9574 62.3896 82.3498 63.5201 82.1813 64.6122L75.0089 112.348C74.9193 112.876 74.6292 113.349 74.1992 113.669C73.7692 113.988 73.2324 114.13 72.7008 114.063ZM80.6654 115.479C80.1441 115.358 79.6898 115.04 79.3974 114.592C79.105 114.143 78.9972 113.6 79.0965 113.074L88.8277 65.7931C89.0456 64.7096 90.7412 64.1271 92.5821 64.5601C94.4233 64.9911 95.6833 66.2627 95.3976 67.3317L83.137 114.02C82.9934 114.536 82.6557 114.976 82.1949 115.247C81.7341 115.519 81.1859 115.602 80.6654 115.479ZM88.4217 117.739C87.9166 117.563 87.4992 117.199 87.2566 116.722C87.014 116.245 86.965 115.693 87.1199 115.181L101.872 69.218C102.203 68.1628 103.952 67.7668 105.735 68.3942C107.519 69.0198 108.637 70.4205 108.238 71.4514L91.0358 116.554C90.8375 117.051 90.4546 117.452 89.9673 117.673C89.48 117.894 88.9262 117.918 88.4217 117.739Z" fill="#E5D48C"/>
                <path d="M72.7008 114.063C72.1688 114 71.6817 113.733 71.3417 113.319C71.0016 112.906 70.8347 112.376 70.8761 111.842L75.4644 63.7884C75.564 62.6874 77.1933 61.9273 79.0753 62.1585C80.9574 62.3896 82.3498 63.5201 82.1813 64.6122L75.0089 112.348C74.9193 112.876 74.6292 113.349 74.1992 113.669C73.7692 113.988 73.2324 114.13 72.7008 114.063ZM80.6654 115.479C80.1441 115.358 79.6898 115.04 79.3974 114.592C79.105 114.143 78.9972 113.6 79.0965 113.074L88.8277 65.7931C89.0456 64.7096 90.7412 64.1271 92.5821 64.5601C94.4233 64.9911 95.6833 66.2627 95.3976 67.3317L83.137 114.02C82.9933 114.536 82.6557 114.976 82.1949 115.247C81.7341 115.519 81.1859 115.602 80.6654 115.479ZM88.4217 117.739C87.9166 117.563 87.4992 117.199 87.2566 116.722C87.014 116.245 86.965 115.693 87.1199 115.181L101.872 69.218C102.203 68.1628 103.952 67.7668 105.735 68.3942C107.519 69.0198 108.637 70.4205 108.238 71.4514L91.0358 116.554C90.8375 117.051 90.4546 117.452 89.9673 117.673C89.48 117.894 88.9262 117.918 88.4217 117.739Z" fill="#F4F7FE"/>
                <path d="M76.7063 114.66C76.179 114.567 75.7078 114.275 75.3913 113.843C75.0748 113.411 74.9376 112.874 75.0082 112.343L82.1806 64.6081C82.3397 63.5139 84.0033 62.8419 85.8674 63.1755C87.7319 63.5072 89.0595 64.7105 88.8303 65.7917L79.0992 113.072C78.9817 113.594 78.6673 114.051 78.2215 114.347C77.7756 114.642 77.2328 114.754 76.7063 114.66ZM84.5757 116.502C84.062 116.353 83.6257 116.011 83.3581 115.548C83.0905 115.085 83.0124 114.536 83.1401 114.017L95.4006 67.3284C95.6769 66.2573 97.4001 65.7673 99.2143 66.297C101.029 66.8248 102.219 68.1641 101.876 69.215L87.1248 115.178C86.9521 115.685 86.5907 116.105 86.1158 116.351C85.641 116.598 85.0893 116.652 84.5757 116.502Z" fill="white"/>
                <path d="M75.9205 113.912C75.413 113.74 74.9915 113.379 74.7443 112.904C74.497 112.429 74.4431 111.876 74.5939 111.362L89.0075 65.2921C89.3323 64.2354 91.0835 63.8282 92.8772 64.443C94.6709 65.0578 95.7999 66.4516 95.4094 67.4854L78.5332 112.71C78.3364 113.209 77.9549 113.612 77.4681 113.836C76.9814 114.06 76.427 114.087 75.9205 113.912ZM83.4211 116.942C82.936 116.716 82.5571 116.311 82.3636 115.812C82.1701 115.313 82.1769 114.759 82.3827 114.265L101.669 70.0134C102.106 68.9982 103.885 68.7785 105.597 69.5823C107.309 70.3844 108.279 71.8887 107.779 72.8757L86.1406 116.026C85.8936 116.5 85.4724 116.861 84.9654 117.032C84.4584 117.203 83.9049 117.17 83.4211 116.942ZM90.5432 120.756C90.0855 120.479 89.7523 120.036 89.6134 119.52C89.4745 119.003 89.5406 118.453 89.7979 117.984L113.724 76.0583C114.267 75.0944 116.059 75.068 117.675 76.0503C119.291 77.0308 120.096 78.6322 119.492 79.5584L93.3459 120.136C93.0492 120.581 92.5917 120.894 92.0693 121.01C91.5469 121.126 91.0001 121.035 90.5432 120.756Z" fill="#F4F7FE"/>
                <path d="M79.7141 115.322C79.2172 115.123 78.8166 114.74 78.5961 114.252C78.3756 113.764 78.3522 113.21 78.5309 112.705L95.4071 67.4805C95.7888 66.4428 97.5554 66.1289 99.3104 66.8403C101.066 67.5499 102.117 69.0014 101.669 70.0119L82.3831 114.264C82.1605 114.75 81.7585 115.132 81.2612 115.329C80.7639 115.526 80.2096 115.524 79.7141 115.322ZM87.0334 118.75C86.5615 118.498 86.2051 118.074 86.039 117.566C85.8728 117.057 85.9096 116.504 86.1418 116.022L107.78 72.8725C108.272 71.8815 110.059 71.758 111.725 72.6509C113.391 73.5421 114.279 75.0984 113.727 76.0559L89.8009 117.982C89.5273 118.441 89.0869 118.778 88.5714 118.921C88.0558 119.064 87.5049 119.003 87.0334 118.75Z" fill="white"/>
                <path d="M92.3662 122.748L90.7966 121.489C89.967 120.819 89.4361 119.849 89.32 118.789C89.2039 117.73 89.512 116.667 90.1769 115.834L117.866 81.3193C118.536 80.4897 119.506 79.9588 120.566 79.8427C121.626 79.7266 122.688 80.0346 123.522 80.6996L125.091 81.9589C125.921 82.6283 126.452 83.5989 126.568 84.6586C126.684 85.7183 126.376 86.7808 125.711 87.614L98.0213 122.128C97.3516 122.958 96.381 123.488 95.3215 123.604C94.262 123.72 93.1996 123.413 92.3662 122.748Z" fill="#A00505"/>
                <path d="M97.5796 121.575L97.2637 121.013C97.098 120.713 97.1709 120.136 97.4665 119.406C97.7621 118.677 98.2563 117.856 98.8412 117.122L123.137 86.6862C123.723 85.9539 124.351 85.3699 124.883 85.0621C125.415 84.7542 125.809 84.7475 125.978 85.0433L126.294 85.6054C126.459 85.9052 126.386 86.4827 126.091 87.2118C125.795 87.9408 125.301 88.7621 124.716 89.4961L100.42 119.932C99.834 120.664 99.2065 121.248 98.6744 121.556C98.1423 121.863 97.7487 121.87 97.5796 121.575Z" fill="#7C0101"/>
                <path d="M119.051 89.9753C120.014 90.5307 121.244 90.2008 121.8 89.2384C122.355 88.276 122.025 87.0456 121.063 86.4901C120.1 85.9347 118.87 86.2646 118.315 87.227C117.759 88.1894 118.089 89.4198 119.051 89.9753Z" fill="#D1D1D1"/>
                <path d="M115.27 94.6823C116.233 95.2378 117.463 94.9079 118.018 93.9455C118.574 92.9831 118.244 91.7526 117.282 91.1971C116.319 90.6417 115.089 90.9716 114.533 91.934C113.978 92.8964 114.308 94.1268 115.27 94.6823Z" fill="#D1D1D1"/>
                <path d="M111.497 99.3893C112.459 99.9448 113.69 99.6149 114.245 98.6525C114.801 97.6901 114.471 96.4596 113.508 95.9042C112.546 95.3487 111.315 95.6786 110.76 96.641C110.204 97.6034 110.534 98.8339 111.497 99.3893Z" fill="#D1D1D1"/>
                <path d="M107.715 104.096C108.678 104.652 109.908 104.322 110.464 103.36C111.019 102.397 110.689 101.167 109.727 100.611C108.765 100.056 107.534 100.386 106.979 101.348C106.423 102.31 106.753 103.541 107.715 104.096Z" fill="#D1D1D1"/>
                <path d="M103.942 108.799C104.904 109.355 106.135 109.025 106.69 108.063C107.246 107.1 106.916 105.87 105.954 105.314C104.991 104.759 103.761 105.089 103.205 106.051C102.65 107.014 102.98 108.244 103.942 108.799Z" fill="#D1D1D1"/>
                <path d="M100.169 113.51C101.131 114.066 102.361 113.736 102.917 112.774C103.472 111.811 103.142 110.581 102.18 110.025C101.218 109.47 99.9872 109.8 99.4318 110.762C98.8763 111.725 99.2062 112.955 100.169 113.51Z" fill="#D1D1D1"/>
                <path d="M97.1183 118.231C98.205 118.463 99.2742 117.771 99.5065 116.684C99.7389 115.597 99.0463 114.528 97.9597 114.296C96.8731 114.063 95.8038 114.756 95.5715 115.843C95.3392 116.929 96.0317 117.998 97.1183 118.231Z" fill="#D1D1D1"/>
                <path d="M66.3166 113.251L48.3004 111.497C47.2398 111.391 46.2644 110.869 45.5871 110.046C44.9099 109.223 44.5859 108.165 44.6858 107.104L48.9714 63.0631C49.0774 62.0023 49.5991 61.0266 50.4224 60.3493C51.2456 59.672 52.3036 59.3481 53.365 59.4485L71.3812 61.2018C72.4418 61.3083 73.4172 61.8301 74.0945 62.6533C74.7717 63.4765 75.0957 64.5342 74.9958 65.5954L70.7102 109.636C70.6042 110.697 70.0826 111.673 69.2593 112.35C68.436 113.027 67.378 113.351 66.3166 113.251Z" fill="#7C0101"/>
                <path d="M67.137 113.426L49.1207 111.673C48.0601 111.567 47.0847 111.045 46.4075 110.222C45.7302 109.399 45.4062 108.341 45.5061 107.28L49.7917 63.2389C49.8977 62.1781 50.4194 61.2024 51.2427 60.5251C52.066 59.8477 53.1239 59.5239 54.1853 59.6243L72.2015 61.3776C73.2622 61.4841 74.2376 62.0059 74.9148 62.8291C75.592 63.6523 75.916 64.7099 75.8161 65.7712L71.5305 109.812C71.4245 110.873 70.9029 111.848 70.0796 112.526C69.2563 113.203 68.1983 113.527 67.137 113.426Z" fill="#A00505"/>
                <path d="M68.6427 65.0713L72.9862 65.494C73.2066 65.5149 73.4262 65.4478 73.5972 65.3073C73.7682 65.1667 73.8766 64.9643 73.8987 64.7441L73.9319 64.4046C73.9528 64.1843 73.8857 63.9647 73.7451 63.7937C73.6046 63.6227 73.4021 63.5143 73.1819 63.4922L68.838 63.0714C68.6177 63.0505 68.3981 63.1176 68.2271 63.2581C68.0561 63.3987 67.9477 63.6011 67.9256 63.8213L67.8924 64.1608C67.8715 64.3809 67.9387 64.6004 68.0794 64.7711C68.22 64.9418 68.4226 65.0498 68.6427 65.0713ZM68.2532 69.0754L72.5967 69.4981C72.8171 69.519 73.0367 69.4519 73.2077 69.3113C73.3787 69.1708 73.4871 68.9683 73.5092 68.7481L73.5424 68.4087C73.5633 68.1884 73.4962 67.9688 73.3556 67.7978C73.2151 67.6268 73.0126 67.5184 72.7924 67.4963L68.4489 67.0736C68.2284 67.0531 68.0086 67.1206 67.8376 67.2615C67.6666 67.4023 67.5583 67.605 67.5361 67.8254L67.5029 68.1648C67.4825 68.3849 67.5499 68.6041 67.6905 68.7747C67.8311 68.9453 68.0333 69.0533 68.2532 69.0754ZM67.8637 73.0795L72.2072 73.5022C72.4276 73.5231 72.6472 73.4559 72.8182 73.3154C72.9892 73.1749 73.0976 72.9724 73.1197 72.7522L73.1529 72.4128C73.1738 72.1925 73.1067 71.9728 72.9661 71.8019C72.8256 71.6309 72.6231 71.5225 72.4029 71.5003L68.0594 71.0776C67.8391 71.0567 67.6195 71.1239 67.4485 71.2644C67.2775 71.4049 67.1691 71.6074 67.147 71.8276L67.1138 72.167C67.0929 72.3873 67.16 72.607 67.3005 72.778C67.4411 72.9489 67.6435 73.0573 67.8637 73.0795ZM67.4742 77.0836L71.8177 77.5063C72.0381 77.5272 72.2577 77.46 72.4287 77.3195C72.5997 77.179 72.7081 76.9765 72.7302 76.7563L72.7634 76.4169C72.7843 76.1966 72.7172 75.9769 72.5766 75.8059C72.4361 75.635 72.2336 75.5266 72.0134 75.5044L67.6699 75.0817C67.4496 75.0608 67.23 75.128 67.059 75.2685C66.888 75.409 66.7796 75.6115 66.7575 75.8317L66.7243 76.1711C66.7034 76.3914 66.7705 76.6111 66.911 76.782C67.0516 76.953 67.254 77.0614 67.4742 77.0836ZM67.0847 81.0876L71.4282 81.5103C71.6486 81.5312 71.8682 81.4641 72.0392 81.3236C72.2102 81.1831 72.3186 80.9806 72.3407 80.7604L72.3739 80.4209C72.3948 80.2006 72.3277 79.981 72.1871 79.81C72.0466 79.639 71.8441 79.5306 71.6239 79.5085L67.2804 79.0858C67.0601 79.0649 66.8405 79.132 66.6695 79.2726C66.4985 79.4131 66.3901 79.6156 66.368 79.8358L66.3348 80.1752C66.3139 80.3955 66.381 80.6151 66.5215 80.7861C66.6621 80.9571 66.8645 81.0655 67.0847 81.0876ZM66.6952 85.0917L71.0387 85.5144C71.2591 85.5353 71.4787 85.4682 71.6497 85.3277C71.8206 85.1871 71.9291 84.9846 71.9512 84.7645L71.9844 84.425C72.0053 84.2047 71.9382 83.9851 71.7976 83.8141C71.6571 83.6431 71.4546 83.5347 71.2344 83.5126L66.8909 83.0899C66.6706 83.069 66.451 83.1361 66.28 83.2766C66.109 83.4172 66.0006 83.6196 65.9785 83.8398L65.9453 84.1793C65.9244 84.3996 65.9915 84.6192 66.132 84.7902C66.2726 84.9612 66.475 85.0696 66.6952 85.0917ZM66.3061 89.0939L70.6496 89.5166C70.87 89.5375 71.0896 89.4704 71.2606 89.3299C71.4316 89.1893 71.54 88.9868 71.5621 88.7666L71.5953 88.4272C71.6162 88.2069 71.5491 87.9873 71.4085 87.8163C71.268 87.6453 71.0655 87.5369 70.8453 87.5148L66.5018 87.0921C66.2815 87.0712 66.0619 87.1383 65.8909 87.2788C65.7199 87.4193 65.6115 87.6218 65.5894 87.842L65.5562 88.1815C65.5093 88.64 65.8487 89.0512 66.3061 89.0939ZM65.9166 93.098L70.2601 93.5207C70.4805 93.5416 70.7001 93.4744 70.8711 93.3339C71.0421 93.1934 71.1505 92.9909 71.1726 92.7707L71.2058 92.4313C71.2267 92.211 71.1596 91.9913 71.019 91.8204C70.8785 91.6494 70.676 91.541 70.4558 91.5188L66.1123 91.0961C65.892 91.0752 65.6724 91.1424 65.5014 91.2829C65.3304 91.4234 65.222 91.6259 65.1999 91.8461L65.1667 92.1855C65.1558 92.2947 65.1666 92.405 65.1984 92.51C65.2303 92.615 65.2825 92.7127 65.3522 92.7975C65.4219 92.8822 65.5076 92.9524 65.6045 93.004C65.7013 93.0556 65.8074 93.0875 65.9166 93.098ZM65.5253 97.1017L69.8688 97.5244C70.0891 97.5453 70.3087 97.4781 70.4797 97.3376C70.6507 97.1971 70.7591 96.9946 70.7812 96.7744L70.8144 96.435C70.8353 96.2147 70.7682 95.995 70.6277 95.824C70.4871 95.6531 70.2847 95.5447 70.0645 95.5225L65.721 95.0998C65.5006 95.0789 65.281 95.1461 65.11 95.2866C64.9391 95.4271 64.8307 95.6296 64.8085 95.8498L64.7753 96.1892C64.7544 96.4095 64.8215 96.6292 64.9621 96.8001C65.1026 96.9711 65.3051 97.0795 65.5253 97.1017ZM65.1358 101.106L69.4793 101.528C69.6996 101.549 69.9192 101.482 70.0902 101.342C70.2612 101.201 70.3696 100.999 70.3917 100.778L70.4249 100.439C70.4458 100.219 70.3787 99.9991 70.2382 99.8281C70.0976 99.6571 69.8952 99.5487 69.675 99.5266L65.3315 99.1039C65.1111 99.083 64.8915 99.1501 64.7205 99.2907C64.5496 99.4312 64.4411 99.6337 64.419 99.8539L64.3858 100.193C64.3649 100.414 64.432 100.633 64.5726 100.804C64.7131 100.975 64.9156 101.084 65.1358 101.106ZM64.7463 105.11L69.0898 105.533C69.3101 105.553 69.5297 105.486 69.7007 105.346C69.8717 105.205 69.9801 105.003 70.0022 104.783L70.0354 104.443C70.0563 104.223 69.9892 104.003 69.8487 103.832C69.7081 103.661 69.5057 103.553 69.2855 103.531L64.942 103.108C64.7216 103.087 64.502 103.154 64.331 103.295C64.1601 103.435 64.0516 103.638 64.0295 103.858L63.9963 104.197C63.9754 104.418 64.0425 104.637 64.1831 104.808C64.3236 104.979 64.5261 105.088 64.7463 105.11ZM64.3568 109.114L68.7003 109.537C68.9206 109.557 69.1402 109.49 69.3112 109.35C69.4822 109.209 69.5906 109.007 69.6127 108.787L69.6459 108.447C69.6668 108.227 69.5997 108.007 69.4592 107.836C69.3186 107.665 69.1162 107.557 68.896 107.535L64.5525 107.112C64.3321 107.091 64.1125 107.158 63.9415 107.299C63.7706 107.439 63.6621 107.642 63.64 107.862L63.6068 108.201C63.5859 108.422 63.653 108.641 63.7936 108.812C63.9341 108.983 64.1366 109.092 64.3568 109.114Z" fill="#BF0606"/>
                <rect x="52.6328" y="60.1094" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 52.6328 60.1094)" fill="white"/>
                <rect x="52.1641" y="65.1406" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 52.1641 65.1406)" fill="white"/>
                <rect x="51.6875" y="70.1719" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 51.6875 70.1719)" fill="white"/>
                <rect x="51.2188" y="75.2031" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 51.2188 75.2031)" fill="white"/>
                <rect x="50.75" y="80.2344" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 50.75 80.2344)" fill="white"/>
                <rect x="50.2734" y="85.2656" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 50.2734 85.2656)" fill="white"/>
                <rect x="49.8047" y="90.293" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 49.8047 90.293)" fill="white"/>
                <rect x="49.3281" y="95.3242" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 49.3281 95.3242)" fill="white"/>
                <rect x="48.8594" y="100.355" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 48.8594 100.355)" fill="white"/>
                <rect x="48.3906" y="105.387" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 48.3906 105.387)" fill="white"/>
                <rect x="56.5859" y="63.0195" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 56.5859 63.0195)" fill="#181818"/>
                <rect x="56.1172" y="68.0508" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 56.1172 68.0508)" fill="#181818"/>
                <rect x="55.6406" y="73.082" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 55.6406 73.082)" fill="#181818"/>
                <rect x="55.1719" y="78.1133" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 55.1719 78.1133)" fill="#181818"/>
                <rect x="54.7031" y="83.1445" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 54.7031 83.1445)" fill="#181818"/>
                <rect x="54.2266" y="88.1758" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 54.2266 88.1758)" fill="#181818"/>
                <rect x="53.7578" y="93.2031" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 53.7578 93.2031)" fill="#181818"/>
                <rect x="53.2812" y="98.2344" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 53.2812 98.2344)" fill="#181818"/>
                <rect x="52.8125" y="103.266" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 52.8125 103.266)" fill="#181818"/>
            </svg>
        </div>

        <div class="child doing" svg="Acordeon-via-wa">
            <svg width="165" height="159" viewBox="0 0 165 159" fill="none" xmlns="http://www.w3.org/2000/svg">
                <circle cx="82.5" cy="87" r="63" fill="#695501"/>
                <ellipse cx="82.0374" cy="79.5" rx="60.5374" ry="58.5" fill="#C6A106"/>
                <path d="M65.3165 67.9807L68.9368 62.0499C73.0075 55.3811 80.5259 51.619 88.3038 52.3586L93.0426 52.8093C102.025 53.6635 110.503 48.5231 113.899 40.1641L116.571 33.588" stroke="black" stroke-width="0.704298" stroke-linecap="round"/>
                <path d="M70.9883 72.3401L74.6086 66.4092C78.6794 59.7405 86.1978 55.9783 93.9757 56.718L98.7144 57.1687C107.696 58.0229 116.175 52.8825 119.571 44.5235L122.242 37.9474" stroke="black" stroke-width="0.704298" stroke-linecap="round"/>
                <path d="M76.6212 78.594L80.2415 72.6632C84.3122 65.9944 91.8306 62.2322 99.6085 62.9719L104.347 63.4226C113.329 64.2768 121.808 59.1364 125.204 50.7774L127.875 44.2013" stroke="black" stroke-width="0.704298" stroke-linecap="round"/>
                <path d="M127.174 45.7279C127.164 45.4377 126.89 45.2273 126.59 45.2754L116.778 46.7997C116.53 46.8406 116.345 47.0494 116.352 47.2903L116.594 54.7425C116.248 54.6441 115.875 54.5905 115.491 54.6029C113.628 54.6633 112.165 56.1414 112.222 57.8991C112.279 59.6567 113.835 61.0314 115.698 60.9709C117.561 60.9105 119.024 59.4379 118.967 57.6802C118.965 57.6145 118.957 57.5435 118.955 57.4778L118.708 49.8668C118.701 49.6533 118.864 49.4726 119.084 49.4381L124.489 48.5995C124.755 48.558 125 48.7473 125.008 48.9992L125.124 52.5747C124.611 52.4251 124.066 52.3937 123.536 52.483C123.006 52.5723 122.506 52.7799 122.078 53.0883C121.649 53.3967 121.305 53.797 121.073 54.2559C120.842 54.7147 120.729 55.2188 120.746 55.726C120.803 57.4836 122.358 58.8583 124.222 58.7979C126.085 58.7374 127.548 57.2648 127.491 55.5072L127.174 45.7279Z" fill="black"/>
                <path d="M121.634 56.561C121.663 56.6205 121.703 56.6741 121.754 56.7184C121.804 56.7627 121.863 56.7969 121.926 56.8191C121.99 56.8412 122.058 56.8507 122.125 56.8471C122.192 56.8436 122.257 56.8269 122.317 56.7982C122.376 56.7695 122.429 56.7293 122.472 56.68C122.515 56.6307 122.547 56.5732 122.567 56.5111C122.586 56.449 122.593 56.3835 122.585 56.3184C122.578 56.2534 122.558 56.1901 122.525 56.1323C122.327 55.7548 122.289 55.3194 122.42 54.9217C122.551 54.5239 122.84 54.1963 123.224 54.0107C123.343 53.9537 123.432 53.8529 123.472 53.7304C123.513 53.6079 123.501 53.4738 123.44 53.3576C123.378 53.2414 123.273 53.1527 123.146 53.1108C123.019 53.069 122.881 53.0775 122.763 53.1346C122.143 53.4345 121.676 53.9636 121.464 54.6059C121.253 55.2482 121.313 55.9513 121.634 56.561Z" fill="#6A6A6A"/>
                <path d="M113.032 58.8423C113.061 58.9018 113.102 58.9553 113.152 58.9996C113.202 59.0439 113.261 59.0782 113.325 59.1003C113.389 59.1224 113.456 59.132 113.523 59.1284C113.59 59.1248 113.655 59.1082 113.715 59.0794C113.775 59.0507 113.828 59.0105 113.871 58.9612C113.914 58.9119 113.946 58.8545 113.965 58.7924C113.985 58.7303 113.991 58.6648 113.984 58.5997C113.977 58.5346 113.956 58.4713 113.924 58.4136C113.725 58.0361 113.687 57.6007 113.819 57.2029C113.95 56.8052 114.239 56.4776 114.623 56.292C114.741 56.235 114.83 56.1341 114.871 56.0116C114.911 55.8892 114.899 55.7551 114.838 55.6389C114.777 55.5227 114.671 55.4339 114.544 55.3921C114.417 55.3503 114.28 55.3588 114.161 55.4158C113.541 55.7157 113.074 56.2448 112.863 56.8871C112.651 57.5295 112.712 58.2326 113.032 58.8423Z" fill="#6A6A6A"/>
                <path d="M97.6223 45.6158C97.615 45.3928 97.4043 45.2311 97.1733 45.2681L89.6325 46.4395C89.4415 46.471 89.2993 46.6315 89.3053 46.8167L89.4912 52.5441C89.2252 52.4685 88.9381 52.4272 88.6436 52.4368C87.2115 52.4832 86.0872 53.6192 86.1311 54.9701C86.1749 56.3209 87.3703 57.3775 88.8024 57.331C90.2345 57.2845 91.3589 56.1528 91.3151 54.8019C91.3134 54.7514 91.3072 54.6968 91.3056 54.6463L91.1158 48.7969C91.1105 48.6327 91.2355 48.4939 91.4043 48.4673L95.5591 47.8228C95.7635 47.7909 95.9513 47.9365 95.9576 48.13L96.0468 50.878C95.6522 50.763 95.2338 50.7389 94.8265 50.8075C94.4192 50.8762 94.0349 51.0357 93.7056 51.2727C93.3763 51.5097 93.1116 51.8174 92.9335 52.1701C92.7555 52.5227 92.6693 52.9101 92.6821 53.3C92.7259 54.6508 93.9213 55.7073 95.3534 55.6609C96.7855 55.6144 97.9099 54.4826 97.8661 53.1318L97.6223 45.6158Z" fill="black"/>
                <path d="M93.3666 53.9411C93.3889 53.9869 93.4203 54.028 93.459 54.062C93.4976 54.0961 93.5428 54.1224 93.5918 54.1394C93.6407 54.1564 93.6925 54.1638 93.744 54.161C93.7955 54.1583 93.8457 54.1455 93.8916 54.1234C93.9375 54.1013 93.9782 54.0704 94.0112 54.0325C94.0442 53.9946 94.069 53.9505 94.0839 53.9028C94.0989 53.855 94.1037 53.8047 94.0982 53.7547C94.0927 53.7046 94.077 53.656 94.0519 53.6116C93.8994 53.3215 93.8704 52.9869 93.9711 52.6812C94.0719 52.3755 94.2942 52.1237 94.5893 51.9811C94.6802 51.9372 94.7487 51.8597 94.7797 51.7656C94.8108 51.6715 94.8018 51.5684 94.7547 51.4791C94.7077 51.3898 94.6265 51.3216 94.5289 51.2894C94.4314 51.2573 94.3255 51.2638 94.2346 51.3077C93.7581 51.5382 93.3992 51.9448 93.2365 52.4385C93.0738 52.9321 93.1206 53.4725 93.3666 53.9411Z" fill="#6A6A6A"/>
                <path d="M86.7494 55.695C86.7717 55.7408 86.8031 55.7819 86.8418 55.8159C86.8805 55.85 86.9256 55.8763 86.9746 55.8933C87.0235 55.9103 87.0753 55.9177 87.1268 55.9149C87.1783 55.9122 87.2285 55.8994 87.2744 55.8773C87.3203 55.8552 87.361 55.8243 87.394 55.7864C87.4271 55.7485 87.4518 55.7044 87.4667 55.6567C87.4817 55.6089 87.4865 55.5586 87.481 55.5086C87.4755 55.4586 87.4598 55.4099 87.4347 55.3655C87.2822 55.0754 87.2532 54.7408 87.354 54.4351C87.4547 54.1294 87.677 53.8776 87.9721 53.735C88.063 53.6911 88.1315 53.6136 88.1625 53.5195C88.1936 53.4254 88.1846 53.3223 88.1375 53.233C88.0905 53.1437 88.0093 53.0755 87.9117 53.0433C87.8142 53.0112 87.7083 53.0178 87.6174 53.0616C87.1409 53.2921 86.782 53.6987 86.6193 54.1924C86.4566 54.686 86.5034 55.2264 86.7494 55.695Z" fill="#6A6A6A"/>
                <path d="M72.7008 114.063C72.1688 114 71.6817 113.733 71.3417 113.319C71.0016 112.906 70.8347 112.376 70.8761 111.842L75.4644 63.7884C75.564 62.6874 77.1933 61.9273 79.0753 62.1585C80.9574 62.3896 82.3498 63.5201 82.1813 64.6122L75.0089 112.348C74.9193 112.876 74.6292 113.349 74.1992 113.669C73.7692 113.988 73.2324 114.13 72.7008 114.063ZM80.6654 115.479C80.1441 115.358 79.6898 115.04 79.3974 114.592C79.105 114.143 78.9972 113.6 79.0965 113.074L88.8277 65.7931C89.0456 64.7096 90.7412 64.1271 92.5821 64.5601C94.4233 64.9911 95.6833 66.2627 95.3976 67.3317L83.137 114.02C82.9934 114.536 82.6557 114.976 82.1949 115.247C81.7341 115.519 81.1859 115.602 80.6654 115.479ZM88.4217 117.739C87.9166 117.563 87.4992 117.199 87.2566 116.722C87.014 116.245 86.965 115.693 87.1199 115.181L101.872 69.218C102.203 68.1628 103.952 67.7668 105.735 68.3942C107.519 69.0198 108.637 70.4205 108.238 71.4514L91.0358 116.554C90.8375 117.051 90.4546 117.452 89.9673 117.673C89.48 117.894 88.9262 117.918 88.4217 117.739Z" fill="#E5D48C"/>
                <path d="M72.7008 114.063C72.1688 114 71.6817 113.733 71.3417 113.319C71.0016 112.906 70.8347 112.376 70.8761 111.842L75.4644 63.7884C75.564 62.6874 77.1933 61.9273 79.0753 62.1585C80.9574 62.3896 82.3498 63.5201 82.1813 64.6122L75.0089 112.348C74.9193 112.876 74.6292 113.349 74.1992 113.669C73.7692 113.988 73.2324 114.13 72.7008 114.063ZM80.6654 115.479C80.1441 115.358 79.6898 115.04 79.3974 114.592C79.105 114.143 78.9972 113.6 79.0965 113.074L88.8277 65.7931C89.0456 64.7096 90.7412 64.1271 92.5821 64.5601C94.4233 64.9911 95.6833 66.2627 95.3976 67.3317L83.137 114.02C82.9933 114.536 82.6557 114.976 82.1949 115.247C81.7341 115.519 81.1859 115.602 80.6654 115.479ZM88.4217 117.739C87.9166 117.563 87.4992 117.199 87.2566 116.722C87.014 116.245 86.965 115.693 87.1199 115.181L101.872 69.218C102.203 68.1628 103.952 67.7668 105.735 68.3942C107.519 69.0198 108.637 70.4205 108.238 71.4514L91.0358 116.554C90.8375 117.051 90.4546 117.452 89.9673 117.673C89.48 117.894 88.9262 117.918 88.4217 117.739Z" fill="#F4F7FE"/>
                <path d="M76.7063 114.66C76.179 114.567 75.7078 114.275 75.3913 113.843C75.0748 113.411 74.9376 112.874 75.0082 112.343L82.1806 64.6081C82.3397 63.5139 84.0033 62.8419 85.8674 63.1755C87.7319 63.5072 89.0595 64.7105 88.8303 65.7917L79.0992 113.072C78.9817 113.594 78.6673 114.051 78.2215 114.347C77.7756 114.642 77.2328 114.754 76.7063 114.66ZM84.5757 116.502C84.062 116.353 83.6257 116.011 83.3581 115.548C83.0905 115.085 83.0124 114.536 83.1401 114.017L95.4006 67.3284C95.6769 66.2573 97.4001 65.7673 99.2143 66.297C101.029 66.8248 102.219 68.1641 101.876 69.215L87.1248 115.178C86.9521 115.685 86.5907 116.105 86.1158 116.351C85.641 116.598 85.0893 116.652 84.5757 116.502Z" fill="white"/>
                <path d="M75.9205 113.912C75.413 113.74 74.9915 113.379 74.7443 112.904C74.497 112.429 74.4431 111.876 74.5939 111.362L89.0075 65.2921C89.3323 64.2354 91.0835 63.8282 92.8772 64.443C94.6709 65.0578 95.7999 66.4516 95.4094 67.4854L78.5332 112.71C78.3364 113.209 77.9549 113.612 77.4681 113.836C76.9814 114.06 76.427 114.087 75.9205 113.912ZM83.4211 116.942C82.936 116.716 82.5571 116.311 82.3636 115.812C82.1701 115.313 82.1769 114.759 82.3827 114.265L101.669 70.0134C102.106 68.9982 103.885 68.7785 105.597 69.5823C107.309 70.3844 108.279 71.8887 107.779 72.8757L86.1406 116.026C85.8936 116.5 85.4724 116.861 84.9654 117.032C84.4584 117.203 83.9049 117.17 83.4211 116.942ZM90.5432 120.756C90.0855 120.479 89.7523 120.036 89.6134 119.52C89.4745 119.003 89.5406 118.453 89.7979 117.984L113.724 76.0583C114.267 75.0944 116.059 75.068 117.675 76.0503C119.291 77.0308 120.096 78.6322 119.492 79.5584L93.3459 120.136C93.0492 120.581 92.5917 120.894 92.0693 121.01C91.5469 121.126 91.0001 121.035 90.5432 120.756Z" fill="#F4F7FE"/>
                <path d="M79.7141 115.322C79.2172 115.123 78.8166 114.74 78.5961 114.252C78.3756 113.764 78.3522 113.21 78.5309 112.705L95.4071 67.4805C95.7888 66.4428 97.5554 66.1289 99.3104 66.8403C101.066 67.5499 102.117 69.0014 101.669 70.0119L82.3831 114.264C82.1605 114.75 81.7585 115.132 81.2612 115.329C80.7639 115.526 80.2096 115.524 79.7141 115.322ZM87.0334 118.75C86.5615 118.498 86.2051 118.074 86.039 117.566C85.8728 117.057 85.9096 116.504 86.1418 116.022L107.78 72.8725C108.272 71.8815 110.059 71.758 111.725 72.6509C113.391 73.5421 114.279 75.0984 113.727 76.0559L89.8009 117.982C89.5273 118.441 89.0869 118.778 88.5714 118.921C88.0558 119.064 87.5049 119.003 87.0334 118.75Z" fill="white"/>
                <path d="M92.3662 122.748L90.7966 121.489C89.967 120.819 89.4361 119.849 89.32 118.789C89.2039 117.73 89.512 116.667 90.1769 115.834L117.866 81.3193C118.536 80.4897 119.506 79.9588 120.566 79.8427C121.626 79.7266 122.688 80.0346 123.522 80.6996L125.091 81.9589C125.921 82.6283 126.452 83.5989 126.568 84.6586C126.684 85.7183 126.376 86.7808 125.711 87.614L98.0213 122.128C97.3516 122.958 96.381 123.488 95.3215 123.604C94.262 123.72 93.1996 123.413 92.3662 122.748Z" fill="#A00505"/>
                <path d="M97.5796 121.575L97.2637 121.013C97.098 120.713 97.1709 120.136 97.4665 119.406C97.7621 118.677 98.2563 117.856 98.8412 117.122L123.137 86.6862C123.723 85.9539 124.351 85.3699 124.883 85.0621C125.415 84.7542 125.809 84.7475 125.978 85.0433L126.294 85.6054C126.459 85.9052 126.386 86.4827 126.091 87.2118C125.795 87.9408 125.301 88.7621 124.716 89.4961L100.42 119.932C99.834 120.664 99.2065 121.248 98.6744 121.556C98.1423 121.863 97.7487 121.87 97.5796 121.575Z" fill="#7C0101"/>
                <path d="M119.051 89.9753C120.014 90.5307 121.244 90.2008 121.8 89.2384C122.355 88.276 122.025 87.0456 121.063 86.4901C120.1 85.9347 118.87 86.2646 118.315 87.227C117.759 88.1894 118.089 89.4198 119.051 89.9753Z" fill="#D1D1D1"/>
                <path d="M115.27 94.6823C116.233 95.2378 117.463 94.9079 118.018 93.9455C118.574 92.9831 118.244 91.7526 117.282 91.1971C116.319 90.6417 115.089 90.9716 114.533 91.934C113.978 92.8964 114.308 94.1268 115.27 94.6823Z" fill="#D1D1D1"/>
                <path d="M111.497 99.3893C112.459 99.9448 113.69 99.6149 114.245 98.6525C114.801 97.6901 114.471 96.4596 113.508 95.9042C112.546 95.3487 111.315 95.6786 110.76 96.641C110.204 97.6034 110.534 98.8339 111.497 99.3893Z" fill="#D1D1D1"/>
                <path d="M107.715 104.096C108.678 104.652 109.908 104.322 110.464 103.36C111.019 102.397 110.689 101.167 109.727 100.611C108.765 100.056 107.534 100.386 106.979 101.348C106.423 102.31 106.753 103.541 107.715 104.096Z" fill="#D1D1D1"/>
                <path d="M103.942 108.799C104.904 109.355 106.135 109.025 106.69 108.063C107.246 107.1 106.916 105.87 105.954 105.314C104.991 104.759 103.761 105.089 103.205 106.051C102.65 107.014 102.98 108.244 103.942 108.799Z" fill="#D1D1D1"/>
                <path d="M100.169 113.51C101.131 114.066 102.361 113.736 102.917 112.774C103.472 111.811 103.142 110.581 102.18 110.025C101.218 109.47 99.9872 109.8 99.4318 110.762C98.8763 111.725 99.2062 112.955 100.169 113.51Z" fill="#D1D1D1"/>
                <path d="M97.1183 118.231C98.205 118.463 99.2742 117.771 99.5065 116.684C99.7389 115.597 99.0463 114.528 97.9597 114.296C96.8731 114.063 95.8038 114.756 95.5715 115.843C95.3392 116.929 96.0317 117.998 97.1183 118.231Z" fill="#D1D1D1"/>
                <path d="M66.3166 113.251L48.3004 111.497C47.2398 111.391 46.2644 110.869 45.5871 110.046C44.9099 109.223 44.5859 108.165 44.6858 107.104L48.9714 63.0631C49.0774 62.0023 49.5991 61.0266 50.4224 60.3493C51.2456 59.672 52.3036 59.3481 53.365 59.4485L71.3812 61.2018C72.4418 61.3083 73.4172 61.8301 74.0945 62.6533C74.7717 63.4765 75.0957 64.5342 74.9958 65.5954L70.7102 109.636C70.6042 110.697 70.0826 111.673 69.2593 112.35C68.436 113.027 67.378 113.351 66.3166 113.251Z" fill="#7C0101"/>
                <path d="M67.137 113.426L49.1207 111.673C48.0601 111.567 47.0847 111.045 46.4075 110.222C45.7302 109.399 45.4062 108.341 45.5061 107.28L49.7917 63.2389C49.8977 62.1781 50.4194 61.2024 51.2427 60.5251C52.066 59.8477 53.1239 59.5239 54.1853 59.6243L72.2015 61.3776C73.2622 61.4841 74.2376 62.0059 74.9148 62.8291C75.592 63.6523 75.916 64.7099 75.8161 65.7712L71.5305 109.812C71.4245 110.873 70.9029 111.848 70.0796 112.526C69.2563 113.203 68.1983 113.527 67.137 113.426Z" fill="#A00505"/>
                <path d="M68.6427 65.0713L72.9862 65.494C73.2066 65.5149 73.4262 65.4478 73.5972 65.3073C73.7682 65.1667 73.8766 64.9643 73.8987 64.7441L73.9319 64.4046C73.9528 64.1843 73.8857 63.9647 73.7451 63.7937C73.6046 63.6227 73.4021 63.5143 73.1819 63.4922L68.838 63.0714C68.6177 63.0505 68.3981 63.1176 68.2271 63.2581C68.0561 63.3987 67.9477 63.6011 67.9256 63.8213L67.8924 64.1608C67.8715 64.3809 67.9387 64.6004 68.0794 64.7711C68.22 64.9418 68.4226 65.0498 68.6427 65.0713ZM68.2532 69.0754L72.5967 69.4981C72.8171 69.519 73.0367 69.4519 73.2077 69.3113C73.3787 69.1708 73.4871 68.9683 73.5092 68.7481L73.5424 68.4087C73.5633 68.1884 73.4962 67.9688 73.3556 67.7978C73.2151 67.6268 73.0126 67.5184 72.7924 67.4963L68.4489 67.0736C68.2284 67.0531 68.0086 67.1206 67.8376 67.2615C67.6666 67.4023 67.5583 67.605 67.5361 67.8254L67.5029 68.1648C67.4825 68.3849 67.5499 68.6041 67.6905 68.7747C67.8311 68.9453 68.0333 69.0533 68.2532 69.0754ZM67.8637 73.0795L72.2072 73.5022C72.4276 73.5231 72.6472 73.4559 72.8182 73.3154C72.9892 73.1749 73.0976 72.9724 73.1197 72.7522L73.1529 72.4128C73.1738 72.1925 73.1067 71.9728 72.9661 71.8019C72.8256 71.6309 72.6231 71.5225 72.4029 71.5003L68.0594 71.0776C67.8391 71.0567 67.6195 71.1239 67.4485 71.2644C67.2775 71.4049 67.1691 71.6074 67.147 71.8276L67.1138 72.167C67.0929 72.3873 67.16 72.607 67.3005 72.778C67.4411 72.9489 67.6435 73.0573 67.8637 73.0795ZM67.4742 77.0836L71.8177 77.5063C72.0381 77.5272 72.2577 77.46 72.4287 77.3195C72.5997 77.179 72.7081 76.9765 72.7302 76.7563L72.7634 76.4169C72.7843 76.1966 72.7172 75.9769 72.5766 75.8059C72.4361 75.635 72.2336 75.5266 72.0134 75.5044L67.6699 75.0817C67.4496 75.0608 67.23 75.128 67.059 75.2685C66.888 75.409 66.7796 75.6115 66.7575 75.8317L66.7243 76.1711C66.7034 76.3914 66.7705 76.6111 66.911 76.782C67.0516 76.953 67.254 77.0614 67.4742 77.0836ZM67.0847 81.0876L71.4282 81.5103C71.6486 81.5312 71.8682 81.4641 72.0392 81.3236C72.2102 81.1831 72.3186 80.9806 72.3407 80.7604L72.3739 80.4209C72.3948 80.2006 72.3277 79.981 72.1871 79.81C72.0466 79.639 71.8441 79.5306 71.6239 79.5085L67.2804 79.0858C67.0601 79.0649 66.8405 79.132 66.6695 79.2726C66.4985 79.4131 66.3901 79.6156 66.368 79.8358L66.3348 80.1752C66.3139 80.3955 66.381 80.6151 66.5215 80.7861C66.6621 80.9571 66.8645 81.0655 67.0847 81.0876ZM66.6952 85.0917L71.0387 85.5144C71.2591 85.5353 71.4787 85.4682 71.6497 85.3277C71.8206 85.1871 71.9291 84.9846 71.9512 84.7645L71.9844 84.425C72.0053 84.2047 71.9382 83.9851 71.7976 83.8141C71.6571 83.6431 71.4546 83.5347 71.2344 83.5126L66.8909 83.0899C66.6706 83.069 66.451 83.1361 66.28 83.2766C66.109 83.4172 66.0006 83.6196 65.9785 83.8398L65.9453 84.1793C65.9244 84.3996 65.9915 84.6192 66.132 84.7902C66.2726 84.9612 66.475 85.0696 66.6952 85.0917ZM66.3061 89.0939L70.6496 89.5166C70.87 89.5375 71.0896 89.4704 71.2606 89.3299C71.4316 89.1893 71.54 88.9868 71.5621 88.7666L71.5953 88.4272C71.6162 88.2069 71.5491 87.9873 71.4085 87.8163C71.268 87.6453 71.0655 87.5369 70.8453 87.5148L66.5018 87.0921C66.2815 87.0712 66.0619 87.1383 65.8909 87.2788C65.7199 87.4193 65.6115 87.6218 65.5894 87.842L65.5562 88.1815C65.5093 88.64 65.8487 89.0512 66.3061 89.0939ZM65.9166 93.098L70.2601 93.5207C70.4805 93.5416 70.7001 93.4744 70.8711 93.3339C71.0421 93.1934 71.1505 92.9909 71.1726 92.7707L71.2058 92.4313C71.2267 92.211 71.1596 91.9913 71.019 91.8204C70.8785 91.6494 70.676 91.541 70.4558 91.5188L66.1123 91.0961C65.892 91.0752 65.6724 91.1424 65.5014 91.2829C65.3304 91.4234 65.222 91.6259 65.1999 91.8461L65.1667 92.1855C65.1558 92.2947 65.1666 92.405 65.1984 92.51C65.2303 92.615 65.2825 92.7127 65.3522 92.7975C65.4219 92.8822 65.5076 92.9524 65.6045 93.004C65.7013 93.0556 65.8074 93.0875 65.9166 93.098ZM65.5253 97.1017L69.8688 97.5244C70.0891 97.5453 70.3087 97.4781 70.4797 97.3376C70.6507 97.1971 70.7591 96.9946 70.7812 96.7744L70.8144 96.435C70.8353 96.2147 70.7682 95.995 70.6277 95.824C70.4871 95.6531 70.2847 95.5447 70.0645 95.5225L65.721 95.0998C65.5006 95.0789 65.281 95.1461 65.11 95.2866C64.9391 95.4271 64.8307 95.6296 64.8085 95.8498L64.7753 96.1892C64.7544 96.4095 64.8215 96.6292 64.9621 96.8001C65.1026 96.9711 65.3051 97.0795 65.5253 97.1017ZM65.1358 101.106L69.4793 101.528C69.6996 101.549 69.9192 101.482 70.0902 101.342C70.2612 101.201 70.3696 100.999 70.3917 100.778L70.4249 100.439C70.4458 100.219 70.3787 99.9991 70.2382 99.8281C70.0976 99.6571 69.8952 99.5487 69.675 99.5266L65.3315 99.1039C65.1111 99.083 64.8915 99.1501 64.7205 99.2907C64.5496 99.4312 64.4411 99.6337 64.419 99.8539L64.3858 100.193C64.3649 100.414 64.432 100.633 64.5726 100.804C64.7131 100.975 64.9156 101.084 65.1358 101.106ZM64.7463 105.11L69.0898 105.533C69.3101 105.553 69.5297 105.486 69.7007 105.346C69.8717 105.205 69.9801 105.003 70.0022 104.783L70.0354 104.443C70.0563 104.223 69.9892 104.003 69.8487 103.832C69.7081 103.661 69.5057 103.553 69.2855 103.531L64.942 103.108C64.7216 103.087 64.502 103.154 64.331 103.295C64.1601 103.435 64.0516 103.638 64.0295 103.858L63.9963 104.197C63.9754 104.418 64.0425 104.637 64.1831 104.808C64.3236 104.979 64.5261 105.088 64.7463 105.11ZM64.3568 109.114L68.7003 109.537C68.9206 109.557 69.1402 109.49 69.3112 109.35C69.4822 109.209 69.5906 109.007 69.6127 108.787L69.6459 108.447C69.6668 108.227 69.5997 108.007 69.4592 107.836C69.3186 107.665 69.1162 107.557 68.896 107.535L64.5525 107.112C64.3321 107.091 64.1125 107.158 63.9415 107.299C63.7706 107.439 63.6621 107.642 63.64 107.862L63.6068 108.201C63.5859 108.422 63.653 108.641 63.7936 108.812C63.9341 108.983 64.1366 109.092 64.3568 109.114Z" fill="#BF0606"/>
                <rect x="52.6328" y="60.1094" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 52.6328 60.1094)" fill="white"/>
                <rect x="52.1641" y="65.1406" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 52.1641 65.1406)" fill="white"/>
                <rect x="51.6875" y="70.1719" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 51.6875 70.1719)" fill="white"/>
                <rect x="51.2188" y="75.2031" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 51.2188 75.2031)" fill="white"/>
                <rect x="50.75" y="80.2344" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 50.75 80.2344)" fill="white"/>
                <rect x="50.2734" y="85.2656" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 50.2734 85.2656)" fill="white"/>
                <rect x="49.8047" y="90.293" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 49.8047 90.293)" fill="white"/>
                <rect x="49.3281" y="95.3242" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 49.3281 95.3242)" fill="white"/>
                <rect x="48.8594" y="100.355" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 48.8594 100.355)" fill="white"/>
                <rect x="48.3906" y="105.387" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 48.3906 105.387)" fill="white"/>
                <rect x="56.5859" y="63.0195" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 56.5859 63.0195)" fill="#181818"/>
                <rect x="56.1172" y="68.0508" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 56.1172 68.0508)" fill="#181818"/>
                <rect x="55.6406" y="73.082" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 55.6406 73.082)" fill="#181818"/>
                <rect x="55.1719" y="78.1133" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 55.1719 78.1133)" fill="#181818"/>
                <rect x="54.7031" y="83.1445" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 54.7031 83.1445)" fill="#181818"/>
                <rect x="54.2266" y="88.1758" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 54.2266 88.1758)" fill="#181818"/>
                <rect x="53.7578" y="93.2031" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 53.7578 93.2031)" fill="#181818"/>
                <rect x="53.2812" y="98.2344" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 53.2812 98.2344)" fill="#181818"/>
                <rect x="52.8125" y="103.266" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 52.8125 103.266)" fill="#181818"/>
            </svg>
        </div>

        <div class="child completed" svg="Acordeon-via-wa">
            <svg width="165" height="159" viewBox="0 0 165 159" fill="none" xmlns="http://www.w3.org/2000/svg">
                <circle cx="82.5" cy="87" r="63" fill="#695501"/>
                <ellipse cx="82.0374" cy="79.5" rx="60.5374" ry="58.5" fill="#C6A106"/>
                <path d="M65.3165 67.9807L68.9368 62.0499C73.0075 55.3811 80.5259 51.619 88.3038 52.3586L93.0426 52.8093C102.025 53.6635 110.503 48.5231 113.899 40.1641L116.571 33.588" stroke="black" stroke-width="0.704298" stroke-linecap="round"/>
                <path d="M70.9883 72.3401L74.6086 66.4092C78.6794 59.7405 86.1978 55.9783 93.9757 56.718L98.7144 57.1687C107.696 58.0229 116.175 52.8825 119.571 44.5235L122.242 37.9474" stroke="black" stroke-width="0.704298" stroke-linecap="round"/>
                <path d="M76.6212 78.594L80.2415 72.6632C84.3122 65.9944 91.8306 62.2322 99.6085 62.9719L104.347 63.4226C113.329 64.2768 121.808 59.1364 125.204 50.7774L127.875 44.2013" stroke="black" stroke-width="0.704298" stroke-linecap="round"/>
                <path d="M127.174 45.7279C127.164 45.4377 126.89 45.2273 126.59 45.2754L116.778 46.7997C116.53 46.8406 116.345 47.0494 116.352 47.2903L116.594 54.7425C116.248 54.6441 115.875 54.5905 115.491 54.6029C113.628 54.6633 112.165 56.1414 112.222 57.8991C112.279 59.6567 113.835 61.0314 115.698 60.9709C117.561 60.9105 119.024 59.4379 118.967 57.6802C118.965 57.6145 118.957 57.5435 118.955 57.4778L118.708 49.8668C118.701 49.6533 118.864 49.4726 119.084 49.4381L124.489 48.5995C124.755 48.558 125 48.7473 125.008 48.9992L125.124 52.5747C124.611 52.4251 124.066 52.3937 123.536 52.483C123.006 52.5723 122.506 52.7799 122.078 53.0883C121.649 53.3967 121.305 53.797 121.073 54.2559C120.842 54.7147 120.729 55.2188 120.746 55.726C120.803 57.4836 122.358 58.8583 124.222 58.7979C126.085 58.7374 127.548 57.2648 127.491 55.5072L127.174 45.7279Z" fill="black"/>
                <path d="M121.634 56.561C121.663 56.6205 121.703 56.6741 121.754 56.7184C121.804 56.7627 121.863 56.7969 121.926 56.8191C121.99 56.8412 122.058 56.8507 122.125 56.8471C122.192 56.8436 122.257 56.8269 122.317 56.7982C122.376 56.7695 122.429 56.7293 122.472 56.68C122.515 56.6307 122.547 56.5732 122.567 56.5111C122.586 56.449 122.593 56.3835 122.585 56.3184C122.578 56.2534 122.558 56.1901 122.525 56.1323C122.327 55.7548 122.289 55.3194 122.42 54.9217C122.551 54.5239 122.84 54.1963 123.224 54.0107C123.343 53.9537 123.432 53.8529 123.472 53.7304C123.513 53.6079 123.501 53.4738 123.44 53.3576C123.378 53.2414 123.273 53.1527 123.146 53.1108C123.019 53.069 122.881 53.0775 122.763 53.1346C122.143 53.4345 121.676 53.9636 121.464 54.6059C121.253 55.2482 121.313 55.9513 121.634 56.561Z" fill="#6A6A6A"/>
                <path d="M113.032 58.8423C113.061 58.9018 113.102 58.9553 113.152 58.9996C113.202 59.0439 113.261 59.0782 113.325 59.1003C113.389 59.1224 113.456 59.132 113.523 59.1284C113.59 59.1248 113.655 59.1082 113.715 59.0794C113.775 59.0507 113.828 59.0105 113.871 58.9612C113.914 58.9119 113.946 58.8545 113.965 58.7924C113.985 58.7303 113.991 58.6648 113.984 58.5997C113.977 58.5346 113.956 58.4713 113.924 58.4136C113.725 58.0361 113.687 57.6007 113.819 57.2029C113.95 56.8052 114.239 56.4776 114.623 56.292C114.741 56.235 114.83 56.1341 114.871 56.0116C114.911 55.8892 114.899 55.7551 114.838 55.6389C114.777 55.5227 114.671 55.4339 114.544 55.3921C114.417 55.3503 114.28 55.3588 114.161 55.4158C113.541 55.7157 113.074 56.2448 112.863 56.8871C112.651 57.5295 112.712 58.2326 113.032 58.8423Z" fill="#6A6A6A"/>
                <path d="M97.6223 45.6158C97.615 45.3928 97.4043 45.2311 97.1733 45.2681L89.6325 46.4395C89.4415 46.471 89.2993 46.6315 89.3053 46.8167L89.4912 52.5441C89.2252 52.4685 88.9381 52.4272 88.6436 52.4368C87.2115 52.4832 86.0872 53.6192 86.1311 54.9701C86.1749 56.3209 87.3703 57.3775 88.8024 57.331C90.2345 57.2845 91.3589 56.1528 91.3151 54.8019C91.3134 54.7514 91.3072 54.6968 91.3056 54.6463L91.1158 48.7969C91.1105 48.6327 91.2355 48.4939 91.4043 48.4673L95.5591 47.8228C95.7635 47.7909 95.9513 47.9365 95.9576 48.13L96.0468 50.878C95.6522 50.763 95.2338 50.7389 94.8265 50.8075C94.4192 50.8762 94.0349 51.0357 93.7056 51.2727C93.3763 51.5097 93.1116 51.8174 92.9335 52.1701C92.7555 52.5227 92.6693 52.9101 92.6821 53.3C92.7259 54.6508 93.9213 55.7073 95.3534 55.6609C96.7855 55.6144 97.9099 54.4826 97.8661 53.1318L97.6223 45.6158Z" fill="black"/>
                <path d="M93.3666 53.9411C93.3889 53.9869 93.4203 54.028 93.459 54.062C93.4976 54.0961 93.5428 54.1224 93.5918 54.1394C93.6407 54.1564 93.6925 54.1638 93.744 54.161C93.7955 54.1583 93.8457 54.1455 93.8916 54.1234C93.9375 54.1013 93.9782 54.0704 94.0112 54.0325C94.0442 53.9946 94.069 53.9505 94.0839 53.9028C94.0989 53.855 94.1037 53.8047 94.0982 53.7547C94.0927 53.7046 94.077 53.656 94.0519 53.6116C93.8994 53.3215 93.8704 52.9869 93.9711 52.6812C94.0719 52.3755 94.2942 52.1237 94.5893 51.9811C94.6802 51.9372 94.7487 51.8597 94.7797 51.7656C94.8108 51.6715 94.8018 51.5684 94.7547 51.4791C94.7077 51.3898 94.6265 51.3216 94.5289 51.2894C94.4314 51.2573 94.3255 51.2638 94.2346 51.3077C93.7581 51.5382 93.3992 51.9448 93.2365 52.4385C93.0738 52.9321 93.1206 53.4725 93.3666 53.9411Z" fill="#6A6A6A"/>
                <path d="M86.7494 55.695C86.7717 55.7408 86.8031 55.7819 86.8418 55.8159C86.8805 55.85 86.9256 55.8763 86.9746 55.8933C87.0235 55.9103 87.0753 55.9177 87.1268 55.9149C87.1783 55.9122 87.2285 55.8994 87.2744 55.8773C87.3203 55.8552 87.361 55.8243 87.394 55.7864C87.4271 55.7485 87.4518 55.7044 87.4667 55.6567C87.4817 55.6089 87.4865 55.5586 87.481 55.5086C87.4755 55.4586 87.4598 55.4099 87.4347 55.3655C87.2822 55.0754 87.2532 54.7408 87.354 54.4351C87.4547 54.1294 87.677 53.8776 87.9721 53.735C88.063 53.6911 88.1315 53.6136 88.1625 53.5195C88.1936 53.4254 88.1846 53.3223 88.1375 53.233C88.0905 53.1437 88.0093 53.0755 87.9117 53.0433C87.8142 53.0112 87.7083 53.0178 87.6174 53.0616C87.1409 53.2921 86.782 53.6987 86.6193 54.1924C86.4566 54.686 86.5034 55.2264 86.7494 55.695Z" fill="#6A6A6A"/>
                <path d="M72.7008 114.063C72.1688 114 71.6817 113.733 71.3417 113.319C71.0016 112.906 70.8347 112.376 70.8761 111.842L75.4644 63.7884C75.564 62.6874 77.1933 61.9273 79.0753 62.1585C80.9574 62.3896 82.3498 63.5201 82.1813 64.6122L75.0089 112.348C74.9193 112.876 74.6292 113.349 74.1992 113.669C73.7692 113.988 73.2324 114.13 72.7008 114.063ZM80.6654 115.479C80.1441 115.358 79.6898 115.04 79.3974 114.592C79.105 114.143 78.9972 113.6 79.0965 113.074L88.8277 65.7931C89.0456 64.7096 90.7412 64.1271 92.5821 64.5601C94.4233 64.9911 95.6833 66.2627 95.3976 67.3317L83.137 114.02C82.9934 114.536 82.6557 114.976 82.1949 115.247C81.7341 115.519 81.1859 115.602 80.6654 115.479ZM88.4217 117.739C87.9166 117.563 87.4992 117.199 87.2566 116.722C87.014 116.245 86.965 115.693 87.1199 115.181L101.872 69.218C102.203 68.1628 103.952 67.7668 105.735 68.3942C107.519 69.0198 108.637 70.4205 108.238 71.4514L91.0358 116.554C90.8375 117.051 90.4546 117.452 89.9673 117.673C89.48 117.894 88.9262 117.918 88.4217 117.739Z" fill="#E5D48C"/>
                <path d="M72.7008 114.063C72.1688 114 71.6817 113.733 71.3417 113.319C71.0016 112.906 70.8347 112.376 70.8761 111.842L75.4644 63.7884C75.564 62.6874 77.1933 61.9273 79.0753 62.1585C80.9574 62.3896 82.3498 63.5201 82.1813 64.6122L75.0089 112.348C74.9193 112.876 74.6292 113.349 74.1992 113.669C73.7692 113.988 73.2324 114.13 72.7008 114.063ZM80.6654 115.479C80.1441 115.358 79.6898 115.04 79.3974 114.592C79.105 114.143 78.9972 113.6 79.0965 113.074L88.8277 65.7931C89.0456 64.7096 90.7412 64.1271 92.5821 64.5601C94.4233 64.9911 95.6833 66.2627 95.3976 67.3317L83.137 114.02C82.9933 114.536 82.6557 114.976 82.1949 115.247C81.7341 115.519 81.1859 115.602 80.6654 115.479ZM88.4217 117.739C87.9166 117.563 87.4992 117.199 87.2566 116.722C87.014 116.245 86.965 115.693 87.1199 115.181L101.872 69.218C102.203 68.1628 103.952 67.7668 105.735 68.3942C107.519 69.0198 108.637 70.4205 108.238 71.4514L91.0358 116.554C90.8375 117.051 90.4546 117.452 89.9673 117.673C89.48 117.894 88.9262 117.918 88.4217 117.739Z" fill="var(--primary-6)"/>
                <path d="M76.7063 114.66C76.179 114.567 75.7078 114.275 75.3913 113.843C75.0748 113.411 74.9376 112.874 75.0082 112.343L82.1806 64.6081C82.3397 63.5139 84.0033 62.8419 85.8674 63.1755C87.7319 63.5072 89.0595 64.7105 88.8303 65.7917L79.0992 113.072C78.9817 113.594 78.6673 114.051 78.2215 114.347C77.7756 114.642 77.2328 114.754 76.7063 114.66ZM84.5757 116.502C84.062 116.353 83.6257 116.011 83.3581 115.548C83.0905 115.085 83.0124 114.536 83.1401 114.017L95.4006 67.3284C95.6769 66.2573 97.4001 65.7673 99.2143 66.297C101.029 66.8248 102.219 68.1641 101.876 69.215L87.1248 115.178C86.9521 115.685 86.5907 116.105 86.1158 116.351C85.641 116.598 85.0893 116.652 84.5757 116.502Z" fill="white"/>
                <path d="M75.9205 113.912C75.413 113.74 74.9915 113.379 74.7443 112.904C74.497 112.429 74.4431 111.876 74.5939 111.362L89.0075 65.2921C89.3323 64.2354 91.0835 63.8282 92.8772 64.443C94.6709 65.0578 95.7999 66.4516 95.4094 67.4854L78.5332 112.71C78.3364 113.209 77.9549 113.612 77.4681 113.836C76.9814 114.06 76.427 114.087 75.9205 113.912ZM83.4211 116.942C82.936 116.716 82.5571 116.311 82.3636 115.812C82.1701 115.313 82.1769 114.759 82.3827 114.265L101.669 70.0134C102.106 68.9982 103.885 68.7785 105.597 69.5823C107.309 70.3844 108.279 71.8887 107.779 72.8757L86.1406 116.026C85.8936 116.5 85.4724 116.861 84.9654 117.032C84.4584 117.203 83.9049 117.17 83.4211 116.942ZM90.5432 120.756C90.0855 120.479 89.7523 120.036 89.6134 119.52C89.4745 119.003 89.5406 118.453 89.7979 117.984L113.724 76.0583C114.267 75.0944 116.059 75.068 117.675 76.0503C119.291 77.0308 120.096 78.6322 119.492 79.5584L93.3459 120.136C93.0492 120.581 92.5917 120.894 92.0693 121.01C91.5469 121.126 91.0001 121.035 90.5432 120.756Z" fill="var(--primary-6)"/>
                <path d="M79.7141 115.322C79.2172 115.123 78.8166 114.74 78.5961 114.252C78.3756 113.764 78.3522 113.21 78.5309 112.705L95.4071 67.4805C95.7888 66.4428 97.5554 66.1289 99.3104 66.8403C101.066 67.5499 102.117 69.0014 101.669 70.0119L82.3831 114.264C82.1605 114.75 81.7585 115.132 81.2612 115.329C80.7639 115.526 80.2096 115.524 79.7141 115.322ZM87.0334 118.75C86.5615 118.498 86.2051 118.074 86.039 117.566C85.8728 117.057 85.9096 116.504 86.1418 116.022L107.78 72.8725C108.272 71.8815 110.059 71.758 111.725 72.6509C113.391 73.5421 114.279 75.0984 113.727 76.0559L89.8009 117.982C89.5273 118.441 89.0869 118.778 88.5714 118.921C88.0558 119.064 87.5049 119.003 87.0334 118.75Z" fill="white"/>
                <path d="M92.3662 122.748L90.7966 121.489C89.967 120.819 89.4361 119.849 89.32 118.789C89.2039 117.73 89.512 116.667 90.1769 115.834L117.866 81.3193C118.536 80.4897 119.506 79.9588 120.566 79.8427C121.626 79.7266 122.688 80.0346 123.522 80.6996L125.091 81.9589C125.921 82.6283 126.452 83.5989 126.568 84.6586C126.684 85.7183 126.376 86.7808 125.711 87.614L98.0213 122.128C97.3516 122.958 96.381 123.488 95.3215 123.604C94.262 123.72 93.1996 123.413 92.3662 122.748Z" fill="var(--primary-0)"/>
                <path d="M97.5796 121.575L97.2637 121.013C97.098 120.713 97.1709 120.136 97.4665 119.406C97.7621 118.677 98.2563 117.856 98.8412 117.122L123.137 86.6862C123.723 85.9539 124.351 85.3699 124.883 85.0621C125.415 84.7542 125.809 84.7475 125.978 85.0433L126.294 85.6054C126.459 85.9052 126.386 86.4827 126.091 87.2118C125.795 87.9408 125.301 88.7621 124.716 89.4961L100.42 119.932C99.834 120.664 99.2065 121.248 98.6744 121.556C98.1423 121.863 97.7487 121.87 97.5796 121.575Z" fill="var(--primary-0)"/>
                <path d="M119.051 89.9753C120.014 90.5307 121.244 90.2008 121.8 89.2384C122.355 88.276 122.025 87.0456 121.063 86.4901C120.1 85.9347 118.87 86.2646 118.315 87.227C117.759 88.1894 118.089 89.4198 119.051 89.9753Z" fill="var(--primary-3)"/>
                <path d="M115.27 94.6823C116.233 95.2378 117.463 94.9079 118.018 93.9455C118.574 92.9831 118.244 91.7526 117.282 91.1971C116.319 90.6417 115.089 90.9716 114.533 91.934C113.978 92.8964 114.308 94.1268 115.27 94.6823Z" fill="var(--primary-3)"/>
                <path d="M111.497 99.3893C112.459 99.9448 113.69 99.6149 114.245 98.6525C114.801 97.6901 114.471 96.4596 113.508 95.9042C112.546 95.3487 111.315 95.6786 110.76 96.641C110.204 97.6034 110.534 98.8339 111.497 99.3893Z" fill="var(--primary-3)"/>
                <path d="M107.715 104.096C108.678 104.652 109.908 104.322 110.464 103.36C111.019 102.397 110.689 101.167 109.727 100.611C108.765 100.056 107.534 100.386 106.979 101.348C106.423 102.31 106.753 103.541 107.715 104.096Z" fill="var(--primary-3)"/>
                <path d="M103.942 108.799C104.904 109.355 106.135 109.025 106.69 108.063C107.246 107.1 106.916 105.87 105.954 105.314C104.991 104.759 103.761 105.089 103.205 106.051C102.65 107.014 102.98 108.244 103.942 108.799Z" fill="var(--primary-3)"/>
                <path d="M100.169 113.51C101.131 114.066 102.361 113.736 102.917 112.774C103.472 111.811 103.142 110.581 102.18 110.025C101.218 109.47 99.9872 109.8 99.4318 110.762C98.8763 111.725 99.2062 112.955 100.169 113.51Z" fill="var(--primary-3)"/>
                <path d="M97.1183 118.231C98.205 118.463 99.2742 117.771 99.5065 116.684C99.7389 115.597 99.0463 114.528 97.9597 114.296C96.8731 114.063 95.8038 114.756 95.5715 115.843C95.3392 116.929 96.0317 117.998 97.1183 118.231Z" fill="var(--primary-3)"/>
                <path d="M66.3166 113.251L48.3004 111.497C47.2398 111.391 46.2644 110.869 45.5871 110.046C44.9099 109.223 44.5859 108.165 44.6858 107.104L48.9714 63.0631C49.0774 62.0023 49.5991 61.0266 50.4224 60.3493C51.2456 59.672 52.3036 59.3481 53.365 59.4485L71.3812 61.2018C72.4418 61.3083 73.4172 61.8301 74.0945 62.6533C74.7717 63.4765 75.0957 64.5342 74.9958 65.5954L70.7102 109.636C70.6042 110.697 70.0826 111.673 69.2593 112.35C68.436 113.027 67.378 113.351 66.3166 113.251Z" fill="var(--primary-0)"/>
                <path d="M67.137 113.426L49.1207 111.673C48.0601 111.567 47.0847 111.045 46.4075 110.222C45.7302 109.399 45.4062 108.341 45.5061 107.28L49.7917 63.2389C49.8977 62.1781 50.4194 61.2024 51.2427 60.5251C52.066 59.8477 53.1239 59.5239 54.1853 59.6243L72.2015 61.3776C73.2622 61.4841 74.2376 62.0059 74.9148 62.8291C75.592 63.6523 75.916 64.7099 75.8161 65.7712L71.5305 109.812C71.4245 110.873 70.9029 111.848 70.0796 112.526C69.2563 113.203 68.1983 113.527 67.137 113.426Z" fill="var(--primary-0)"/>
                <path d="M68.6427 65.0713L72.9862 65.494C73.2066 65.5149 73.4262 65.4478 73.5972 65.3073C73.7682 65.1667 73.8766 64.9643 73.8987 64.7441L73.9319 64.4046C73.9528 64.1843 73.8857 63.9647 73.7451 63.7937C73.6046 63.6227 73.4021 63.5143 73.1819 63.4922L68.838 63.0714C68.6177 63.0505 68.3981 63.1176 68.2271 63.2581C68.0561 63.3987 67.9477 63.6011 67.9256 63.8213L67.8924 64.1608C67.8715 64.3809 67.9387 64.6004 68.0794 64.7711C68.22 64.9418 68.4226 65.0498 68.6427 65.0713ZM68.2532 69.0754L72.5967 69.4981C72.8171 69.519 73.0367 69.4519 73.2077 69.3113C73.3787 69.1708 73.4871 68.9683 73.5092 68.7481L73.5424 68.4087C73.5633 68.1884 73.4962 67.9688 73.3556 67.7978C73.2151 67.6268 73.0126 67.5184 72.7924 67.4963L68.4489 67.0736C68.2284 67.0531 68.0086 67.1206 67.8376 67.2615C67.6666 67.4023 67.5583 67.605 67.5361 67.8254L67.5029 68.1648C67.4825 68.3849 67.5499 68.6041 67.6905 68.7747C67.8311 68.9453 68.0333 69.0533 68.2532 69.0754ZM67.8637 73.0795L72.2072 73.5022C72.4276 73.5231 72.6472 73.4559 72.8182 73.3154C72.9892 73.1749 73.0976 72.9724 73.1197 72.7522L73.1529 72.4128C73.1738 72.1925 73.1067 71.9728 72.9661 71.8019C72.8256 71.6309 72.6231 71.5225 72.4029 71.5003L68.0594 71.0776C67.8391 71.0567 67.6195 71.1239 67.4485 71.2644C67.2775 71.4049 67.1691 71.6074 67.147 71.8276L67.1138 72.167C67.0929 72.3873 67.16 72.607 67.3005 72.778C67.4411 72.9489 67.6435 73.0573 67.8637 73.0795ZM67.4742 77.0836L71.8177 77.5063C72.0381 77.5272 72.2577 77.46 72.4287 77.3195C72.5997 77.179 72.7081 76.9765 72.7302 76.7563L72.7634 76.4169C72.7843 76.1966 72.7172 75.9769 72.5766 75.8059C72.4361 75.635 72.2336 75.5266 72.0134 75.5044L67.6699 75.0817C67.4496 75.0608 67.23 75.128 67.059 75.2685C66.888 75.409 66.7796 75.6115 66.7575 75.8317L66.7243 76.1711C66.7034 76.3914 66.7705 76.6111 66.911 76.782C67.0516 76.953 67.254 77.0614 67.4742 77.0836ZM67.0847 81.0876L71.4282 81.5103C71.6486 81.5312 71.8682 81.4641 72.0392 81.3236C72.2102 81.1831 72.3186 80.9806 72.3407 80.7604L72.3739 80.4209C72.3948 80.2006 72.3277 79.981 72.1871 79.81C72.0466 79.639 71.8441 79.5306 71.6239 79.5085L67.2804 79.0858C67.0601 79.0649 66.8405 79.132 66.6695 79.2726C66.4985 79.4131 66.3901 79.6156 66.368 79.8358L66.3348 80.1752C66.3139 80.3955 66.381 80.6151 66.5215 80.7861C66.6621 80.9571 66.8645 81.0655 67.0847 81.0876ZM66.6952 85.0917L71.0387 85.5144C71.2591 85.5353 71.4787 85.4682 71.6497 85.3277C71.8206 85.1871 71.9291 84.9846 71.9512 84.7645L71.9844 84.425C72.0053 84.2047 71.9382 83.9851 71.7976 83.8141C71.6571 83.6431 71.4546 83.5347 71.2344 83.5126L66.8909 83.0899C66.6706 83.069 66.451 83.1361 66.28 83.2766C66.109 83.4172 66.0006 83.6196 65.9785 83.8398L65.9453 84.1793C65.9244 84.3996 65.9915 84.6192 66.132 84.7902C66.2726 84.9612 66.475 85.0696 66.6952 85.0917ZM66.3061 89.0939L70.6496 89.5166C70.87 89.5375 71.0896 89.4704 71.2606 89.3299C71.4316 89.1893 71.54 88.9868 71.5621 88.7666L71.5953 88.4272C71.6162 88.2069 71.5491 87.9873 71.4085 87.8163C71.268 87.6453 71.0655 87.5369 70.8453 87.5148L66.5018 87.0921C66.2815 87.0712 66.0619 87.1383 65.8909 87.2788C65.7199 87.4193 65.6115 87.6218 65.5894 87.842L65.5562 88.1815C65.5093 88.64 65.8487 89.0512 66.3061 89.0939ZM65.9166 93.098L70.2601 93.5207C70.4805 93.5416 70.7001 93.4744 70.8711 93.3339C71.0421 93.1934 71.1505 92.9909 71.1726 92.7707L71.2058 92.4313C71.2267 92.211 71.1596 91.9913 71.019 91.8204C70.8785 91.6494 70.676 91.541 70.4558 91.5188L66.1123 91.0961C65.892 91.0752 65.6724 91.1424 65.5014 91.2829C65.3304 91.4234 65.222 91.6259 65.1999 91.8461L65.1667 92.1855C65.1558 92.2947 65.1666 92.405 65.1984 92.51C65.2303 92.615 65.2825 92.7127 65.3522 92.7975C65.4219 92.8822 65.5076 92.9524 65.6045 93.004C65.7013 93.0556 65.8074 93.0875 65.9166 93.098ZM65.5253 97.1017L69.8688 97.5244C70.0891 97.5453 70.3087 97.4781 70.4797 97.3376C70.6507 97.1971 70.7591 96.9946 70.7812 96.7744L70.8144 96.435C70.8353 96.2147 70.7682 95.995 70.6277 95.824C70.4871 95.6531 70.2847 95.5447 70.0645 95.5225L65.721 95.0998C65.5006 95.0789 65.281 95.1461 65.11 95.2866C64.9391 95.4271 64.8307 95.6296 64.8085 95.8498L64.7753 96.1892C64.7544 96.4095 64.8215 96.6292 64.9621 96.8001C65.1026 96.9711 65.3051 97.0795 65.5253 97.1017ZM65.1358 101.106L69.4793 101.528C69.6996 101.549 69.9192 101.482 70.0902 101.342C70.2612 101.201 70.3696 100.999 70.3917 100.778L70.4249 100.439C70.4458 100.219 70.3787 99.9991 70.2382 99.8281C70.0976 99.6571 69.8952 99.5487 69.675 99.5266L65.3315 99.1039C65.1111 99.083 64.8915 99.1501 64.7205 99.2907C64.5496 99.4312 64.4411 99.6337 64.419 99.8539L64.3858 100.193C64.3649 100.414 64.432 100.633 64.5726 100.804C64.7131 100.975 64.9156 101.084 65.1358 101.106ZM64.7463 105.11L69.0898 105.533C69.3101 105.553 69.5297 105.486 69.7007 105.346C69.8717 105.205 69.9801 105.003 70.0022 104.783L70.0354 104.443C70.0563 104.223 69.9892 104.003 69.8487 103.832C69.7081 103.661 69.5057 103.553 69.2855 103.531L64.942 103.108C64.7216 103.087 64.502 103.154 64.331 103.295C64.1601 103.435 64.0516 103.638 64.0295 103.858L63.9963 104.197C63.9754 104.418 64.0425 104.637 64.1831 104.808C64.3236 104.979 64.5261 105.088 64.7463 105.11ZM64.3568 109.114L68.7003 109.537C68.9206 109.557 69.1402 109.49 69.3112 109.35C69.4822 109.209 69.5906 109.007 69.6127 108.787L69.6459 108.447C69.6668 108.227 69.5997 108.007 69.4592 107.836C69.3186 107.665 69.1162 107.557 68.896 107.535L64.5525 107.112C64.3321 107.091 64.1125 107.158 63.9415 107.299C63.7706 107.439 63.6621 107.642 63.64 107.862L63.6068 108.201C63.5859 108.422 63.653 108.641 63.7936 108.812C63.9341 108.983 64.1366 109.092 64.3568 109.114Z" fill="var(--primary-2)"/>
                <rect x="52.6328" y="60.1094" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 52.6328 60.1094)" fill="white"/>
                <rect x="52.1641" y="65.1406" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 52.1641 65.1406)" fill="white"/>
                <rect x="51.6875" y="70.1719" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 51.6875 70.1719)" fill="white"/>
                <rect x="51.2188" y="75.2031" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 51.2188 75.2031)" fill="white"/>
                <rect x="50.75" y="80.2344" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 50.75 80.2344)" fill="white"/>
                <rect x="50.2734" y="85.2656" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 50.2734 85.2656)" fill="white"/>
                <rect x="49.8047" y="90.293" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 49.8047 90.293)" fill="white"/>
                <rect x="49.3281" y="95.3242" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 49.3281 95.3242)" fill="white"/>
                <rect x="48.8594" y="100.355" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 48.8594 100.355)" fill="white"/>
                <rect x="48.3906" y="105.387" width="12.6323" height="4.21075" rx="1.6354" transform="rotate(5.36115 48.3906 105.387)" fill="white"/>
                <rect x="56.5859" y="63.0195" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 56.5859 63.0195)" fill="#181818"/>
                <rect x="56.1172" y="68.0508" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 56.1172 68.0508)" fill="#181818"/>
                <rect x="55.6406" y="73.082" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 55.6406 73.082)" fill="#181818"/>
                <rect x="55.1719" y="78.1133" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 55.1719 78.1133)" fill="#181818"/>
                <rect x="54.7031" y="83.1445" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 54.7031 83.1445)" fill="#181818"/>
                <rect x="54.2266" y="88.1758" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 54.2266 88.1758)" fill="#181818"/>
                <rect x="53.7578" y="93.2031" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 53.7578 93.2031)" fill="#181818"/>
                <rect x="53.2812" y="98.2344" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 53.2812 98.2344)" fill="#181818"/>
                <rect x="52.8125" y="103.266" width="8.42151" height="3.3686" rx="1.6354" transform="rotate(5.36115 52.8125 103.266)" fill="#181818"/>
            </svg>
        </div>
    </div>
</body>
</html>
<!-- Centered items -->
<div class="flex justify-center items-center text-gray-500 pt-4 sm:justify-center sm:pt-0">
    <a class="text-center" href="http://siged.local:8000/admin" target="_self">
        <h4 class="px-4 text-lg text-center tracking-wider border-r border-gray-400">
            Link 1
        </h4>
    </a>
    <a class="text-center" href="#!" target="_self">
        <h4 class="px-4 text-lg text-center tracking-wider border-gray-400">
            Link 2
        </h4>
    </a>
</div>
grid items-center grid-cols-3 gap-3

flex items-center grid-cols-3 gap-3

<div class="grid items-center grid-cols-3 gap-3">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment