#insta{
    padding: 20px;
    overflow: hidden;
}

#insta .btn{
  padding: 0 !important;
}

.postsMedias{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin: auto;
}


.postsVideos{
    width: 100%;
    aspect-ratio: 1/1;
    margin: auto;
}


#loarderPosts{
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 10;
    display: flex;
    justify-content: center;      
    align-items: center;
    overflow: hidden;
  }

.cardPost{
    color: black;
    padding: 20px;
    border-radius: 12px; 
    background-color: 
    rgb(255, 255, 255);
    width: 100%;
    margin: 20px auto;
    box-shadow: 2px 3px 7px #00000050;

}

.logoPostInstagram{
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url(/static/imagens/logos/favicon.webp);
    background-size: contain;
    background-position-y: 50%;
    border-radius: 100%;
    border: none;
    margin-right: 5px;
}

.postsBody{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.postsHeader{
  display: flex;
  align-items: center;
  justify-items: start;
}

.postClicked{
   transform: scale(1.2);
}

.postsIconsUl{
    list-style: none;
    padding:0;
    padding-top: 15px;
    margin: 0;
    display: block;
    justify-content: flex-start;
}

.postsIconsLi{
    margin: 0 20px 0 0;
    display: inline-block;
}

.postsFooter a{
    text-decoration: none;
    color: black;
}

.postsIconsLi:last-child{
    margin-right: 0;
    float: right;
}

.postsIconsLi i{
    font-size: 20px;
    transition: transform .2s ease-in;
}

.postsIconsLi i:hover{
    transform: scale(1.5);
}

.descricaoPost{
    height: 76px;
    
    overflow: auto;
}

.descricaoPost::-webkit-scrollbar {
    width: 10px; 
    background-color: #0b356000; 

  }

.descricaoPost::-webkit-scrollbar-track {
    background-color: #0b356000; 
}

.active{
    display: flex !important;
}


.boxes {
    --size: 32px;
    --duration: 800ms;
    height: calc(var(--size) * 2);
    width: calc(var(--size) * 3);
    position: relative;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    margin-top: calc(var(--size) * 1.5 * -1);
    transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
  }
  
  .boxes .box {
    width: var(--size);
    height: var(--size);
    top: 0;
    left: 0;
    position: absolute;
    transform-style: preserve-3d;
  }
  
  .boxes .box:nth-child(1) {
    transform: translate(100%, 0);
    -webkit-animation: box1 var(--duration) linear infinite;
    animation: box1 var(--duration) linear infinite;
  }
  
  .boxes .box:nth-child(2) {
    transform: translate(0, 100%);
    -webkit-animation: box2 var(--duration) linear infinite;
    animation: box2 var(--duration) linear infinite;
  }
  
  .boxes .box:nth-child(3) {
    transform: translate(100%, 100%);
    -webkit-animation: box3 var(--duration) linear infinite;
    animation: box3 var(--duration) linear infinite;
  }
  
  .boxes .box:nth-child(4) {
    transform: translate(200%, 0);
    -webkit-animation: box4 var(--duration) linear infinite;
    animation: box4 var(--duration) linear infinite;
  }
  
  .boxes .box > div {
    --background: #5C8DF6;
    --top: auto;
    --right: auto;
    --bottom: auto;
    --left: auto;
    --translateZ: calc(var(--size) / 2);
    --rotateY: 0deg;
    --rotateX: 0deg;
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--background);
    top: var(--top);
    right: var(--right);
    bottom: var(--bottom);
    left: var(--left);
    transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
  }
  
  .boxes .box > div:nth-child(1) {
    --top: 0;
    --left: 0;
  }
  
  .boxes .box > div:nth-child(2) {
    --background: #145af2;
    --right: 0;
    --rotateY: 90deg;
  }
  
  .boxes .box > div:nth-child(3) {
    --background: #447cf5;
    --rotateX: -90deg;
  }
  
  .boxes .box > div:nth-child(4) {
    --background: #DBE3F4;
    --top: 0;
    --left: 0;
    --translateZ: calc(var(--size) * 3 * -1);
  }
  
  @-webkit-keyframes box1 {
    0%, 50% {
      transform: translate(100%, 0);
    }
  
    100% {
      transform: translate(200%, 0);
    }
  }
  
  @keyframes box1 {
    0%, 50% {
      transform: translate(100%, 0);
    }
  
    100% {
      transform: translate(200%, 0);
    }
  }
  
  @-webkit-keyframes box2 {
    0% {
      transform: translate(0, 100%);
    }
  
    50% {
      transform: translate(0, 0);
    }
  
    100% {
      transform: translate(100%, 0);
    }
  }
  
  @keyframes box2 {
    0% {
      transform: translate(0, 100%);
    }
  
    50% {
      transform: translate(0, 0);
    }
  
    100% {
      transform: translate(100%, 0);
    }
  }
  
  @-webkit-keyframes box3 {
    0%, 50% {
      transform: translate(100%, 100%);
    }
  
    100% {
      transform: translate(0, 100%);
    }
  }
  
  @keyframes box3 {
    0%, 50% {
      transform: translate(100%, 100%);
    }
  
    100% {
      transform: translate(0, 100%);
    }
  }
  
  @-webkit-keyframes box4 {
    0% {
      transform: translate(200%, 0);
    }
  
    50% {
      transform: translate(200%, 100%);
    }
  
    100% {
      transform: translate(100%, 100%);
    }
  }
  
  @keyframes box4 {
    0% {
      transform: translate(200%, 0);
    }
  
    50% {
      transform: translate(200%, 100%);
    }
  
    100% {
      transform: translate(100%, 100%);
    }
  }

  .colunaButton{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .animated-button {
    margin: 30px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: var(--mydarkblue);
    box-shadow: 0 0 0 2px var(--mydarkblue);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button svg, .animated-button i {
    position: absolute;
    width: 24px;
    fill:  var(--mydarkblue);
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .arr-1 {
    right: 16px;
  }
  
  .animated-button .arr-2 {
    left: -25%;
  }
  
  .animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(225deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    border-radius: 100px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #ffffff;
    border-radius: 12px;
  }
  
  .animated-button:hover .arr-1 {
    right: -25%;
  }
  
  .animated-button:hover .arr-2 {
    left: 16px;
  }
  
  .animated-button:hover .text {
    transform: translateX(12px);
  }
  
  .animated-button:hover svg {
    fill: #ffffff;
  }
  
  .animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px  var(--mydarkblue);
  }
  
  .animated-button:hover .circle {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  


