.container-frase {
     position: relative;
     width: 100%;
     height: 400px;
     /*border: 1px solid;*/
  }

.frase {
    position: absolute;
    width: 35%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    transition: top 2s ease-out, left 2s ease-out;
    z-index: 2;
  }

.blue {
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: #0f2a71;
    background-color: #D5DADF;
    padding: 10PX 20px;
  }

.yellow {
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: #0f2a71;
    background-color: #f1c40f;
    padding: 10px 20px;
  }

.top-left {
    top: 12%;
    left: 5%;
  }

.top-right {
    top: 12%;
    right: 5%;
  }

.bottom-right {
    bottom: 12%;
    right: 5%;    
  }

.bottom-left {
    bottom: 12%;
    left: 5%;
  }

.seta-top {
    position: absolute;
    width: 15%;
    height: 0;
    background-color: #0f2a71;
    top: 15%;
    left: calc(50% - 7%);
  }

.seta-right {
    position: absolute;
    width: 15%;
    height: 0;
    background-color: #0f2a71;
    right: 7%;
    top: calc(50% - 0%);
    transform: rotate(90deg);
  }

.seta-bottom {
    position: absolute;
    width: 15%;
    height: 0;
    background-color: #0f2a71;
    bottom: 35%;
    left: calc(50% - 7%);
  }

.seta-left {
    position: absolute;
    width: 15%;
    height: 0;
    background-color: #0f2a71;
    left: 22%;
    top: calc(50% - 0%);
    transform: rotate(90deg);
  }

/* Media Query para Responsividade */ 
@media screen and (max-width: 768px) { 
.container-frase {
    position: relative;
    width: 100%;
    height: 300px;
  }

.frase { 
    width: 130px; 
    height: 70px;
    border-radius: 10px;
  }

.blue, .yellow {
    font-size:.9rem;
    padding: 5px 10px;
  }

.top-left {
    top: 12%;
    left: 0;
  }

.top-right {
    top: 12%;
    right: 0;
  }

.bottom-right {
    bottom: 12%;
    right: 0;
    
  }

.bottom-left {
    bottom: 12%;
    left: 0;
  }
  
.seta-top {
    width: 60px;
    height: 0;
    top: 40px; 
    left: calc(50% - 30px);
  } 

.seta-right {
    width: 60px;
    height: 0;
    right: 15px; 
    top: calc(50% - 0); 
  } 

.seta-bottom {
    width: 60px;
    height: 0;
    bottom: 105px; 
    left: calc(50% - 30px);
  } 

.seta-left {
    width: 60px;
    height: 0;
    left: 80px; 
    top: calc(50% - 0); 
  } 
}

