.page-cobertura-bg {
    background-color: #01c1d6;
}

.process-section {
    background-color: #fff;
    width: 100%;
    height: auto;
    max-width: 1140px;
    padding: 50px 5px 50px 5px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
}

.process-title {
    text-transform: uppercase;
    font-weight: normal;
}
  
.process-subtitle {
    margin: 40px 0;
    font-size: 24px;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.step {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
  flex-direction: column;
  align-items: center;
  flex-basis: calc(25% - 20px);
  max-width: calc(25% - 20px);
  box-sizing: border-box;
}

.step-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: normal;
    text-align: center;
}

.first-title {
    width: 200px;
}

.second-title {
    width: 200px;
}

.third-title, .fourth-title {
    width: 290px;
}

.step-icon {
    margin-bottom: 10px;
    height: 50px;
    margin-top: 20px;
}

.step-description {
    text-align: center;
    padding: 0 10px;
    text-align: center;
    color: #4B4E53;
    width: 275px;
    height: auto;
    font-size: 16px;
    line-height: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.container-btn-sign {
  display: flex;
  justify-content: center;
  align-items: center;
}

.start-button {
    background-color: #FFB617;
    font-weight: bold;
    font-size: 18px;
    width: 288px;
    height: 64px;
    color: #000000;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .step-title {
        font-size: 18px;
        font-weight: normal;
        text-align: center;
    }

    .process-section{
        height: auto;
        padding: 40px 20px;
        flex: none;
        order: 1;
        flex-grow: 0;
        font-family: 'Lato';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 26px;
        color: #000000;
        flex: none;
        order: 0;
        flex-grow: 0;
    }
    
    
    .first-title {
        width: 170px;
        font-weight: light;
    }
    
    .second-title {
        width: 130px;
    }
    
    .process-title {
        font-size: 16px;
    }
    
    .process-subtitle {
        font-size: 16px;
        font-weight: 600;
    }

    .steps-container {
        flex-direction: column;
        gap: 0;
    }
  
    .step {
        flex-basis: 100%;
        max-width: 100%;
    }
  
    .step-title {
        width: 270px;
    }
    
    .step-description {
        width: 350px;
        font-size: 16px;
        margin-top: 15px;
    }
}

/* Estilo do Modal */
.modal-loading {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Estilo do Loading */
.loading-icon {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Animação */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}