/* Configuração de Ovais */
.scribble-circle {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-weight: 500;
    font-family: var(--test-font);
    font-size: 30px;
    margin: 0 10px;
    font-family: 'PrimaryFont';
}

.scribble-circle::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -14px;
    width: 120%;
    height: 140%;
    border: 3px solid rgb(255 112 0);
    border-radius: 50%;
    transform: rotate(-3deg);
    opacity: 0.7;
    z-index: -17;

}

.scribble-circle::after {content: "";
    content: "";
    position: absolute;
    top: -10px;
    left: -9px;
    width: 110%;
    height: 135%;
    border: 3px solid rgba(239, 106, 1, 0.5);
    border-radius: 50%;
    transform: rotate(3deg);
    opacity: 0.6;
    z-index: -2;
}


.scribble-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-weight: 500;
    font-size: 1.5rem;
    margin: 0 10px;
    font-family: 'PrimaryFont';
}

.scribble-underline::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 95%;
    height: 6px;
    border-radius: 50px;
    background-color: rgba(239, 106, 1, 0.6);
    opacity: 0.7;
    z-index: -1;
    transform: rotate(-2deg);
}

.scribble-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 100%;
    height: 6px;
    border-radius: 50px;
    background-color: rgba(239, 106, 1, 0.4);
    opacity: 0.5;
    z-index: -2;
    transform: rotate(1deg);
}

.scribble-underline span::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: -3px;
    width: 110%;
    height: 6px;
    border-radius: 50px;
    background-color: rgba(239, 106, 1, 0.5);
    transform: rotate(-3deg);
    opacity: 0.5;
    z-index: -3;
}

.scribble-underline span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -2px;
    width: 105%;
    height: 6px;
    border-radius: 50px;
    background-color: rgba(239, 106, 1, 0.3);
    transform: rotate(2deg);
    opacity: 0.4;
    z-index: -4;
}

@media (max-width: 768px) {
  
    .scribble-circle {
      font-size: 25px !important;
    } 
    
    .scribble-underline {
      font-size: 25px !important;
    }
  }