.retangular-area {
    width: 100%;
    max-width: 600px;
    border: 2px solid blue;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.aba-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.aba {
    background-color: blue;
    color: white;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    flex: 1;
    border-top: none; /* Remover a borda acima da aba */
}

.aba:hover {
    background-color: darkblue;
}

.retangular-area-mobile {
    width: 100%;
    max-width: 600px;
    background-color: blue;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.mobile-table {
    width: 100%;
    background-color: blue;
    border-collapse: collapse;
}

.table-cell {
    background-color: blue;
    color: white;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
}

.custom-image {
    width: 100%;
    max-width: 100%;
}
