#header-session{
    background: linear-gradient(45deg, rgb(233, 30, 99), rgb(115, 8, 177));
    height: auto;
}

#services-session {
    background: linear-gradient(45deg, rgb(233, 30, 99), rgb(115, 8, 177));
    min-height: 650px;
    height: auto!important;
    padding-bottom: 20px;
}

#user-data-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width:85vw;
    margin: 0 auto;
}

#user-avatar-container {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 0 !important;
    flex-direction: column;

}


#user-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

#user-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color:white!important;
    margin-bottom: 0 !important;

}

#user-email {
    font-size: 14px;
    color: #efefef;
    margin: 0;
    text-align: center;
}

#user-credits-container {
    font-size: 20px;
    color: #ffffff;
    margin-top: -5px;
    display:flex;
    flex-direction: column;
    font-weight: 600;
    align-items: center;
}

#user-credits{
    font-size: 24px;
    margin-left:5px;
    text-align: center;
}

#user-credits-button, .order-button {
    background-color: #089f51;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: background-color 0.3s ease;
    display: inline-block;
    cursor: pointer;
    margin-top: 3px;
    text-align: center;
}

.credits-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
   
}

.credits-package {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.credits-package  h1{
    color:rgb(115, 8, 177)
}

#servicesList{
    padding-top: 40px;
    margin-left: 80px;
    margin-right: 80px;
}

#payment-info{
    color:#000000;
    display:flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

#backButton{
    padding: 20px;
    display: block;
    width: 120px;
    color: orange;
    font-weight: 500;
    cursor: pointer;
    margin-left: 20px;
}

#payment-code{
    display:flex;
    flex-direction: column;
    gap: 10px;
}

#payment-code img{
    width: 240px;
}
#payment-info h2{
    color:#ff6200;
}

.service-table{
    color: #fff;
    width: 70vw;
}

.service-row{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.service-table h1{
    color: orange;
    margin-top: -5px;
    margin-bottom: 0px;
}

.service-table img{
    width: 24vw;
    margin: 10px;
    border-radius: 15px;
}

.service-table-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.service-table-price{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

#service-result-texto h3{
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3), 2px -1px 13px rgba(255,255,255, 0.3);
}

#placas-soma-total{
 color:white;
}

#placas-container, #service-result-container{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: start;
    padding: 10px;
    width: 80vw;
    margin: 0 auto;
    gap:20px;
}

#service-result{
    width: 30vw;
}

#left-column {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#imoveis-layout-container {
    display: flex; 
    flex-direction: row; 
    gap: 2rem;     
    align-items: start; 
    justify-content: space-evenly;
}

.sk-chase {
    left: 47%;
    width: 80px;
    height: 80px;
    position: absolute;
    animation: sk-chase 2.5s infinite linear both;
    top: 40%;
  }
  
  .sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; 
    animation: sk-chase-dot 2.0s infinite ease-in-out both; 
  }
  
  .sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #fff;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
  }
  
  .sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
  .sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
  .sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
  .sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
  .sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
  .sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
  .sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
  .sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
  .sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
  .sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
  .sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
  .sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }
  
  @keyframes sk-chase {
    100% { transform: rotate(360deg); } 
  }
  
  @keyframes sk-chase-dot {
    80%, 100% { transform: rotate(360deg); } 
  }
  
  @keyframes sk-chase-dot-before {
    50% {
      transform: scale(0.4); 
    } 100%, 0% {
      transform: scale(1.0); 
    } 
  }

  @media(max-width: 768px){
    .service-row{
        display: flex;
        flex-direction: column;
        justify-content: start;
    }
    .service-table {
        width: 85vw;
    }

    .service-table img{
        width: 100%;
    }

    #servicesList {
        margin-left: 20px;
        margin-right: 20px;
    }

    #left-column{
        flex-direction: column; 
    }

    #service-result{
        width: initial;
    }

    #imoveis-layout-container {
        flex-direction: column; 
    }

    #user-credits-container {
        font-size: 15px;
    }
  }